返回 Skill 列表
extension
分类: 开发与工程无需 API Key

epcp-workflow

应用探索→计划→编码→提交的工作流程来完成诸如实现功能、修复错误、重构或添加集成等任务。当用户希望在仓库中进行更改并希望提高可靠性时(先阅读,然后计划再提交/拉取请求)使用此方法。强调在探索阶段使用子代理进行调查,并在存在替代方案时,在计划阶段使用“思考/深入思考/更深入思考/超级思考”。

person作者: jakexiaohubgithub

EPCP Workflow (Explore → Plan → Code → Commit)

This Skill enforces a high-signal workflow to avoid jumping straight into coding.

Core rules

1) Explore (no code changes)

  • Read relevant files first (configs, key modules, docs).
  • If unclear, ask to inspect additional files rather than guessing.
  • Prefer using subagents for parallel investigation when the task is complex.

2) Plan (before coding)

  • Propose a concrete plan with steps + acceptance criteria.
  • Call out risks, edge cases, and what you will not do.
  • If multiple approaches exist, explicitly "think hard" and compare tradeoffs.

3) Code (implement + verify)

  • Implement incrementally.
  • Run tests/lint/build where applicable.
  • Self-check that the result matches the plan and doesn't introduce unnecessary complexity.

4) Commit (clean history)

  • Summarize changes.
  • Stage only relevant files.
  • Write a conventional commit message.
  • If GitHub CLI is available, propose opening a PR.

Anti-patterns to avoid

  • Writing code before reading files.
  • Making architectural leaps without checking existing patterns.
  • Large refactors when a minimal patch solves the issue.
  • Committing without running at least a minimal verification step.

Templates

Verification script

Run before committing: scripts/precommit-check.sh

Quick checklist (use every time)

  • [ ] I read the key files first
  • [ ] I wrote a plan with acceptance criteria
  • [ ] I implemented in small steps
  • [ ] I ran verification (tests/lint/build)
  • [ ] I committed with a clear message (and PR if relevant)