coding-process
Entry point for all work. Identifies your task type and routes to the right workflow skill. Start here when beginning any task.
适合你,如果经常需要从零开始处理多种类型的任务,需要一个统一的入口。
npx oh-my-skill add hawkyre/hawk-skills/coding-processcurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- hawkyre/hawk-skills/coding-processnpx oh-my-skill verify hawkyre/hawk-skills/coding-process怎么用
商店整理自技能原文 · 版本 6ffb2d6 · 表述以原文为准Claude 会先判断你的编程任务类型(如小功能、大功能、修Bug、审查代码等),然后自动切换到对应的工作流程去处理。
当你开始任何编程任务时,Claude 会先通过本技能识别任务类型并路由到合适的工作流。
技能原文 SKILL.md
Coding Process
This is the entry point for all work. It identifies the task type and routes to the appropriate workflow.
Process
- Load context:
- Read relevant standards from
.agents/standards/(checkindex.ymlfirst) - Read relevant common-mistakes from
.agents/common-mistakes/(checkindex.ymlfirst) - Check
.plans/for any existing plan files related to the current work
- Identify the task type from the user's description:
| Task Type | Route To | Trigger | |-----------|----------|---------| | Small feature / endpoint / component / config | /plan-small | Self-contained, fits in one PR | | Large feature / multi-system / architectural | /plan-large | Multi-day, multiple PRs, sequencing dependencies | | Delete feature / remove dead code / drop dependency | /remove-code | Removing capability | | Bug fix / error / crash / wrong behavior | /fix-bug | Something is broken | | Code review / audit / PR review | /code-audit | Reviewing code quality | | Aggressive cleanup of changes + tangibly-related code | /code-audit-hardcore | Same scope as code-audit, always-improve posture across related code (setup, wiring, siblings); big refactors route through plan skills | | Large PR review (30+ files) | /review-large-pr | PR too large for single audit | | Refactor / improve without behavior change | /refactor | Improving existing code | | Understand / explore / onboard | /learn-system | Building mental models |
- Route to the appropriate skill and follow its process.
Rules
- Always load standards and common-mistakes before starting any workflow
- If the task type is ambiguous, ask the user to clarify
review-plan(Workflow 8) andimplement-plan(Workflow 9) are invoked directly when needed — they are not routed from here- If a plan file exists in
.plans/, reference it and resume from where the last session left off - Big-output discipline. Heavy command output (project check, full
git diff, repo-wide search, long log, large fetch) goes to/tmp/hawk-<skill>-<step>.log, thenrg -n '<pattern>' /tmp/hawk-<skill>-<step>.log | head -50extracts what you need.Readthe file only withoffset/limit. See README → Big-output discipline.