Execute a single phase from roadmap to working code autonomously
Executes a single roadmap phase autonomously using TDD. Triggers when you provide a phase goal, success criteria, and project context, then implements tasks sequentially while enforcing quality gates before each commit.
/plugin marketplace add yarlson/claude-plugins/plugin install autonomous-dev-flow@yarlson-claude-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
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:
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.