fix-types
Resolve TypeScript type errors systematically across the project.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Resolve TypeScript type errors systematically across the project.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create and refine glossary entries with consistent taxonomy, cross-linking, and editorial quality.
Perform safe cleanup and refactors that reduce duplication, dead code, and maintenance burden.
Ship repeatable SEO and discoverability improvements for metadata, structured data, and crawl surfaces.
Maintain documentation changes with correct placement, check policy, and PR-ready outcomes.
Encode taste as structure and maintain premium design standards.
Run full quality assurance checks before committing or merging.
| name | fix-types |
| description | Resolve TypeScript type errors systematically across the project. |
| inputs | {"path":{"description":"Optional path to restrict the check (defaults to project root).","required":false}} |
| required_tools | ["run_command"] |
| version | 1.0.0 |
Systematic approach to resolving TypeScript type errors using Bun and standard TS practices.
Initial Audit: Run the type check to get the full error list.
bun run typecheck
Pattern Identification: Analyze the output for common issues:
any usages in complex logic.Resolution Strategy:
typeof or custom guards to narrow unknown.any with specific types or interfaces.@types/* if external packages are involved.Verification: Re-run the check and ensure counts decrease.
bun run typecheck
unknown over any for uncertain external data.