بنقرة واحدة
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: