/dev-autopilot
Full autonomous execution from idea to working code. Use when user says "autopilot", "autonomous", "build me", "create me", "make me", "full auto" — orchestrates spec → plan → code → QA → validation across the engineering layer agents.
$ npx -y skills add evolution-foundation/evo-nexus --skill dev-autopilot --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/dev-autopilot
Context preview
The summary Claude sees to decide when to auto-load this skill.
Full autonomous execution from idea to working code. Use when user says "autopilot", "autonomous", "build me", "create me", "make me", "full auto" — orchestrates spec → plan → code → QA → validation across the engineering layer agents.
SKILL.md
dev-autopilot.SKILL.mdname: dev-autopilot
description: Full autonomous execution from idea to working code. Use when user says "autopilot", "autonomous", "build me", "create me", "make me", "full auto" — orchestrates spec → plan → code → QA → validation across the engineering layer agents.
Dev Autopilot
Derived from oh-my-claudecode (MIT, Yeachan Heo). Adapted for the EvoNexus Engineering Layer.
Autopilot takes a brief product idea and autonomously handles the full lifecycle: requirements analysis, technical design, planning, parallel implementation, QA cycling, and multi-perspective validation. It produces working, verified code from a 2-3 line description.
Use When
- User wants end-to-end autonomous execution from an idea to working code
- User says "autopilot", "autonomous", "build me", "create me", "make me", "full auto", "handle it all", or "I want a/an..."
- Task requires multiple phases: planning, coding, testing, and validation
- User wants hands-off execution and is willing to let the system run to completion
Do Not Use When
- User wants to explore options or brainstorm → use `dev-plan` instead
- User says "just explain", "draft only", or "what would you suggest" → respond conversationally
- User wants a single focused code change → delegate directly to `@bolt-executor`
- User wants to review or critique an existing plan → use `dev-plan --review`
- Task is a quick fix or small bug → direct executor delegation
Why This Exists
Most non-trivial software tasks require coordinated phases: understanding requirements, designing a solution, implementing in parallel, testing, and validating quality. Autopilot orchestrates all of these phases automatically so the user can describe what they want and receive working code without managing each step.
Execution Policy
- Each phase must complete before the next begins
- Parallel execution is used within phases where possible
- QA cycles repeat up to 5 times; if the same error persists 3 times, stop and report the fundamental issue
- Validation requires approval from all reviewers; rejected items get fixed and re-validated
Phases
Phase 0 — Expansion
Turn the user's idea into a detailed spec.
- **If input is vague** (no file paths, function names, or concrete anchors): suggest `dev-deep-interview` for Socratic clarification before expanding
- **Otherwise**: `@echo-analyst` (Opus) extracts requirements, `@apex-architect` (Opus) creates technical specification
- Output: `workspace/projects/specs/[C]autopilot-spec-{name}.md`
Phase 1 — Planning
Create an implementation plan from the spec.
- `@compass-planner` (Opus): Create plan (direct mode, no interview)
- `@raven-critic` (Opus): Validate plan
- Output: `workspace/projects/plans/[C]autopilot-plan-{name}.md`
Phase 2 — Execution
Implement the plan.
- `@bolt-executor` (Sonnet): Standard tasks
- For complex tasks, escalate to `@apex-architect` for design before re-delegating
- Run independent tasks in parallel where safe
Phase 3 — QA
Cycle until all tests pass.
- Build, lint, test, fix failures
- Repeat up to 5 cycles
- Stop early if the same error repeats 3 times (indicates a fundamental issue)
Phase 4 — Validation
Multi-perspective review in parallel.
- `@apex-architect`: Functional completeness
- `@vault-security`: Vulnerability check (when imported in EPIC 3)
- `@lens-reviewer`: Quality review
- All must approve; fix and re-validate on rejection
Phase 5 — Verification
- `@oath-verifier`: Final evidence-based completion check against acceptance criteria
Examples
**Good:**
- "autopilot a REST API for a bookstore inventory with CRUD operations using TypeScript"
→ Specific domain, clear features, technology constraint. Enough context to expand.
- "build me a CLI tool that tracks daily habits with streak counting"
→ Clear product concept with a specific feature.
**Bad:**
- "fix the bug in the login page" → Single focused fix, not multi-phase. Delegate to `@hawk-debugger` or `@bolt-executor`.
- "what are some good approaches for adding caching?" → Exploration. Respond conversationally or use `dev-plan`.
Stop Conditions
- Same QA error persists across 3 cycles → escalate
- Validation keeps failing after 3 re-validation rounds → escalate
- User says "stop", "cancel", or "abort"
- Vague spec produces unclear expansion → pause and ask for clarification
Final Checklist
- [ ] All 5 phases completed (Expansion, Planning, Execution, QA, Validation, Verification)
- [ ] All validators approved
- [ ] Tests pass (verified with fresh test run output)
- [ ] Build succeeds (verified with fresh build output)
- [ ] User informed of completion with summary of what was built
Best Practices for Input
1. Be specific about the domain — "bookstore" not "store" 2. Mention key features — "with CRUD", "with authentication" 3. Specify constraints — "using TypeScript", "with PostgreSQL" 4. Let it run — avoid interrupting unless truly needed
Read more
name: dev-autopilot description: Full autonomous execution from idea to working code. Use when user says "autopilot", "autonomous", "build me", "create me", "make me", "full auto" — orchestrates spec → plan → code → QA → validation across the engineering layer agents.
Dev Autopilot
Derived from oh-my-claudecode (MIT, Yeachan Heo). Adapted for the EvoNexus Engineering Layer.
Autopilot takes a brief product idea and autonomously handles the full lifecycle: requirements analysis, technical design, planning, parallel implementation, QA cycling, and multi-perspective validation. It produces working, verified code from a 2-3 line description.
Use When
- User wants end-to-end autonomous execution from an idea to working code
- User says "autopilot", "autonomous", "build me", "create me", "make me", "full auto", "handle it all", or "I want a/an..."
- Task requires multiple phases: planning, coding, testing, and validation
- User wants hands-off execution and is willing to let the system run to completion
Do Not Use When
- User wants to explore options or brainstorm → use `dev-plan` instead
- User says "just explain", "draft only", or "what would you suggest" → respond conversationally
- User wants a single focused code change → delegate directly to `@bolt-executor`
- User wants to review or critique an existing plan → use `dev-plan --review`
- Task is a quick fix or small bug → direct executor delegation
Why This Exists
Most non-trivial software tasks require coordinated phases: understanding requirements, designing a solution, implementing in parallel, testing, and validating quality. Autopilot orchestrates all of these phases automatically so the user can describe what they want and receive working code without managing each step.
Execution Policy
- Each phase must complete before the next begins
- Parallel execution is used within phases where possible
- QA cycles repeat up to 5 times; if the same error persists 3 times, stop and report the fundamental issue
- Validation requires approval from all reviewers; rejected items get fixed and re-validated
Phases
Phase 0 — Expansion
Turn the user's idea into a detailed spec.
- **If input is vague** (no file paths, function names, or concrete anchors): suggest `dev-deep-interview` for Socratic clarification before expanding
- **Otherwise**: `@echo-analyst` (Opus) extracts requirements, `@apex-architect` (Opus) creates technical specification
- Output: `workspace/projects/specs/[C]autopilot-spec-{name}.md`
Phase 1 — Planning
Create an implementation plan from the spec.
- `@compass-planner` (Opus): Create plan (direct mode, no interview)
- `@raven-critic` (Opus): Validate plan
- Output: `workspace/projects/plans/[C]autopilot-plan-{name}.md`
Phase 2 — Execution
Implement the plan.
- `@bolt-executor` (Sonnet): Standard tasks
- For complex tasks, escalate to `@apex-architect` for design before re-delegating
- Run independent tasks in parallel where safe
Phase 3 — QA
Cycle until all tests pass.
- Build, lint, test, fix failures
- Repeat up to 5 cycles
- Stop early if the same error repeats 3 times (indicates a fundamental issue)
Phase 4 — Validation
Multi-perspective review in parallel.
- `@apex-architect`: Functional completeness
- `@vault-security`: Vulnerability check (when imported in EPIC 3)
- `@lens-reviewer`: Quality review
- All must approve; fix and re-validate on rejection
Phase 5 — Verification
- `@oath-verifier`: Final evidence-based completion check against acceptance criteria
Examples
**Good:**
- "autopilot a REST API for a bookstore inventory with CRUD operations using TypeScript"
→ Specific domain, clear features, technology constraint. Enough context to expand.
- "build me a CLI tool that tracks daily habits with streak counting"
→ Clear product concept with a specific feature.
**Bad:**
- "fix the bug in the login page" → Single focused fix, not multi-phase. Delegate to `@hawk-debugger` or `@bolt-executor`.
- "what are some good approaches for adding caching?" → Exploration. Respond conversationally or use `dev-plan`.
Stop Conditions
- Same QA error persists across 3 cycles → escalate
- Validation keeps failing after 3 re-validation rounds → escalate
- User says "stop", "cancel", or "abort"
- Vague spec produces unclear expansion → pause and ask for clarification
Final Checklist
- [ ] All 5 phases completed (Expansion, Planning, Execution, QA, Validation, Verification)
- [ ] All validators approved
- [ ] Tests pass (verified with fresh test run output)
- [ ] Build succeeds (verified with fresh build output)
- [ ] User informed of completion with summary of what was built
Best Practices for Input
1. Be specific about the domain — "bookstore" not "store" 2. Mention key features — "with CRUD", "with authentication" 3. Specify constraints — "using TypeScript", "with PostgreSQL" 4. Let it run — avoid interrupting unless truly needed
Other skills on evo-nexus.
- /ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway BYOK). Also analyze/describe existing images using multimodal AI vision. Use when user asks to "generate an image",
Open skill - /create-agent
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the user says 'create an agent', 'new agent', 'add an agent', 'I need a custom agent', or wants to create a specialized agent
Open skill - /create-command
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in .claude/commands/. Use when the user says 'create a command', 'new command', 'add a slash command', 'I want a shortcut for', or wants
Open skill - /create-goal
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a project, defining a measurable goal with metric_type and target_value. Writes to the SQLite goals tables via POST
Open skill - /create-heartbeat
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake triggers, and the decision prompt that governs when the agent acts. Writes to config/heartbeats.yaml with pydantic validation.
Open skill - /create-integration
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description, category, and required env keys. Writes .claude/skills/custom-int-{slug}/SKILL.md via POST /api/integrations/custom. Use
Open skill

