一键导入
makefile-awareness
Always read Makefile before proposing commands [Makefile, build, test, docker, workflow]
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Always read Makefile before proposing commands [Makefile, build, test, docker, workflow]
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Read files BEFORE asking questions. Inspect to assist, not just to plan [reading, inspection, context, workflow, collaborative editing]
Design First, Code Second - explore options before implementation
Assist with interactive git rebase [git, rebase, history, cleanup, squash, reorder]
Session retrospective following desk/retro.md [feedback, session review, improvement, workflow, validation]
Write semantic git commits following conventional format
Task closing protocol - documentation updates and completion tracking
| name | makefile-awareness |
| description | Always read Makefile before proposing commands [Makefile, build, test, docker, workflow] |
| license | MIT |
| compatibility | opencode |
| metadata | {"related":["desk/DEVELOPMENT.md"]} |
I enforce the "read Makefile first" rule before proposing any build, test, or deployment commands.
Full details: Read desk/DEVELOPMENT.md section "Makefile Awareness" for complete guide.
BEFORE proposing ANY command:
1. Check if Makefile exists
2. Read available targets
3. Use Makefile targets instead of raw commands
User: "How do I build this?"
Me: [reads Makefile]
Me: "Run `make docker-build` - it includes the setup dependency."
User: "How do I build this?"
Me: "Run docker-compose build"
[Makefile has `make docker-build` with dependencies]