원클릭으로
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 직업 분류 기준
| 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:
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