discover-project-commands
Use during planning to discover and document available project commands (make targets, npm scripts, etc.) for success criteria.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use during planning to discover and document available project commands (make targets, npm scripts, etc.) for success criteria.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Generic migration orchestrator that reads CHANGELOG.md to understand and execute version-specific migrations
Determine feature slug interactively by auto-detecting next number and prompting user for description
Share personal documents to the shared namespace with atomic git commit and push
Use when creating implementation plans to generate properly structured plans with phases, success criteria, and project references.
Use when documenting research findings to create properly structured research documents with frontmatter, sections, and file references.
ALWAYS check this skill before using grep, glob, Task tool, or doing any codebase exploration. Guides you to use specialized agents that are more efficient than basic tools.
| name | discover-project-commands |
| description | Use during planning to discover and document available project commands (make targets, npm scripts, etc.) for success criteria. |
Automatically discover and document all available commands in the project for reference during planning and implementation.
Check for Makefile and extract all targets:
make -qp or parse Makefile directlyCheck for package.json and extract scripts:
If Go project, document standard commands:
go test ./...go build ./...go runCheck for and document:
Write to: thoughts/notes/commands.md
Use the template from templates/commands-reference.md and populate with discovered commands.
---
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
Automatically invoked by the plan command if thoughts/notes/commands.md doesn't exist.