ワンクリックで
doctor
Check project health — environment, dependencies, tools, and configuration
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Check project health — environment, dependencies, tools, and configuration
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Guided refactoring with before/after validation
Guided first-session onboarding — helps you go from zero to your first plan and issue
Manage GitHub issues backlog — view, pick, or create work items
Create a structured implementation plan in tasks/todo.md with confidence assessment
Summarize current progress, commit working state, and update task tracking
Generate or update a PROJECT_INDEX.md for fast session orientation
| name | doctor |
| description | Check project health — environment, dependencies, tools, and configuration |
| argument-hint | |
| user-invocable | true |
| allowed-tools | Read, Bash(python *), Bash(node *), Bash(npm *), Bash(go *), Bash(cargo *), Bash(make *), Bash(git *), Bash(gh *), Bash(which *), Bash(pip *), Bash(pre-commit *) |
Run a health check on the project environment. Report what's working and what needs attention.
Run each check below and report results using this format:
## Project Health Check
| Check | Status | Details |
|-------|--------|---------|
| Git repo | ✅ | On branch main, 12 commits |
| Language env | ⚠️ | Python 3.12 found, but no .venv active |
| Dependencies | ❌ | Not installed — run `pip install -e '.[dev]'` |
| ... | ... | ... |
git rev-parse --is-inside-work-tree)git status --porcelain)git remote -v)Detect language from config files (pyproject.toml, package.json, go.mod, Cargo.toml):
$VIRTUAL_ENV)node_modules/ present?rustc --version)pip list shows project packagenode_modules/ exists and package-lock.json matchesgo.sum existsCargo.lock existsmake available?pre-commit installed? Hooks active? (pre-commit --version, .git/hooks/pre-commit).claude/settings.json exists?.claude/skills/ directory has skills?CLAUDE.md exists?tasks/todo.md exists?gh CLI installed? (which gh)gh authenticated? (gh auth status)gh label list if authenticated)make test-unit work? (run it, report pass/fail)make test-unit has no tests yet, report as ⚠️ (warning), not ❌ (failure)