원클릭으로
typecheck
Run type checking and surface errors. Use when asked to typecheck, check types, or verify types compile.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run type checking and surface errors. Use when asked to typecheck, check types, or verify types compile.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a changelog or release notes from recent git history. Use when asked to write a changelog, summarize recent commits, or produce release notes.
Scaffold a new custom SKILL.md file interactively. Use when asked to create a new skill or slash command.
Create or switch to a feature branch, typically tied to a GitHub issue. Use when asked to create a branch or start work on an issue.
Create, view, list, or comment on GitHub issues. Use when asked to file, open, or manage GitHub issues.
Create, review, or manage GitHub pull requests. Use when asked to open, check, or merge a PR.
Run the linter, auto-fix what's fixable, and report the rest. Use when asked to lint or fix lint errors.
| name | typecheck |
| description | Run type checking and surface errors. Use when asked to typecheck, check types, or verify types compile. |
| allowed-tools | Bash |
Run type checking for this project.
Typecheck script detection: !{cat package.json 2>/dev/null | python3 -c "import sys,json; s=json.load(sys.stdin).get('scripts',{}); print('\n'.join(f'{k}: {v}' for k,v in s.items() if any(x in k for x in ['type','tsc','check'])))" 2>/dev/null || echo "(no package.json typecheck script found)"}
Task: $ARGUMENTS
Steps:
typecheck npm script, or npx tsc --noEmit if no script existsmypy . or pyrightDo not auto-fix type errors — report them and wait for instruction.