Forgent type-checker

static-analysis-based skill consuming file_tree, source_code to produce type_errors

install
source · Clone the upstream repo
git clone https://github.com/mirandaguillaume/forgent
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/mirandaguillaume/forgent "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.github/skills/type-checker" ~/.claude/skills/mirandaguillaume-forgent-type-checker && rm -rf "$T"
manifest: .github/skills/type-checker/SKILL.md
source content

Type Checker

Guardrails

  • timeout: 5min
  • max_file_size: 500KB

Context

Consumes: file_tree, source_code Produces: type_errors Memory: short-term

Strategy

Approach: static-analysis Tools: bash, read_file

Steps

  1. run TypeScript compiler in noEmit mode
  2. collect type errors with file locations

Security

  • Filesystem: read-only
  • Network: none