一键导入
autonomous-phase-execution
Execute a single phase from roadmap to working code autonomously
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute a single phase from roadmap to working code autonomously
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interactive roadmap creation through structured questioning, optimized for ephemeral execution
Generate comprehensive handoff documentation optimized for AI agent takeover by analyzing project structure, design docs, and codebase
| name | autonomous-phase-execution |
| description | Execute a single phase from roadmap to working code autonomously |
| when_to_use | when executing one phase of a multi-phase roadmap |
| version | 3.0.0 |
Execute one roadmap phase: think → plan → implement → handoff.
Receives from main executor:
Evaluate 2-3 architecture approaches internally:
Use decision framework:
Break phase into TDD task pairs:
For each task in sequence:
Write test
Verify RED
Write implementation
Verify GREEN
Run quality gates
Commit
Stage test and impl files
Commit with descriptive message:
feat: [component/feature name]
- What: [what was built]
- How: [pattern/approach used]
- Integration: [dependencies]
- Testing: [what tests cover]
After all tasks:
Create handoff document at docs/handoffs/phase-[N]-handoff.yml:
built: [Component1, Component2]
api:
- Component1.method(args)->return
- Component2.method(args)->return
patterns: [MVC, Repository]
Include:
built: List of components/modules created (names only)api: Key public interfaces (function signatures)patterns: Architectural patterns usedKeep handoff minimal: 50-100 tokens.
Before any commit, ALL must pass:
If any gate fails:
Python:
pytest tests/ -vruff check . && mypy .Go:
go test ./... -race -covergolangci-lint run ./...go build ./...Rust:
cargo testcargo clippy --all-targetscargo buildTypeScript:
npm testeslint . && tsc --noEmittscJava:
mvn test or gradle testmvn checkstyle:checkmvn compileWhen choosing architecture/technology:
Avoid:
Prefer:
If quality gate fails after 3 fix attempts:
If success criteria not met:
After completion, report: