← スキル一覧に戻る

discover-project-commands
by eveld
Research, planning, and implementation workflows for Claude Code
⭐ 3🍴 1📅 2026年1月6日
SKILL.md
name: discover-project-commands description: Use during planning to discover and document available project commands (make targets, npm scripts, etc.) for success criteria.
Discover Project Commands
Automatically discover and document all available commands in the project for reference during planning and implementation.
What to Discover
Make Targets
Check for Makefile and extract all targets:
- Use
make -qpor parse Makefile directly - Document target names and descriptions (from comments)
NPM Scripts
Check for package.json and extract scripts:
- Read package.json
- Document script names and what they do
Go Commands
If Go project, document standard commands:
go test ./...go build ./...go run- Custom test/build commands
Other Build Tools
Check for and document:
- Gradle tasks
- Maven goals
- Cargo commands
- Python setup.py commands
Output Format
Write to: thoughts/notes/commands.md
Use the template from templates/commands-reference.md and populate with discovered commands.
Discovery Process
- Check for Makefile: Parse targets and descriptions
- Check for package.json: Extract npm scripts
- Detect language: Look for go.mod, requirements.txt, Cargo.toml, etc.
- Document commands: Use template to create reference doc
- Include metadata: Add timestamp and project name
Example Output Structure
---
last_updated: 2025-12-23T10:00:00Z
last_updated_by: Claude
project: my-project
---
# Project Commands Reference
Last discovered: 2025-12-23
## Make Targets
- `make test` - Run all tests
- `make build` - Build the project
- `make lint` - Run linters
## NPM Scripts
- `npm test` - Run Jest tests
- `npm run build` - Build for production
## Common Verification Commands
- `make test` - Recommended for success criteria
- `make lint` - Recommended for code quality checks
When to Use
Automatically invoked by the plan command if thoughts/notes/commands.md doesn't exist.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です
