autopilot

Category: Tools & Productivity | Uploader: johnfkoo951johnfkoo951 | Downloads: 0 | Version: v1.0(Latest)

Fully autonomous execution mode. When triggered by '/autopilot', 'autopilot mode', '자율 실행', or '알아서 해줘', this skill takes a development task and autonomously plans, implements, tests, and delivers without user intervention. Uses the planner agent to decompose work, then dispatches appropriate agents in parallel where possible. --- # Autopilot — Fully Autonomous Execution Mode Autopilot mode handles a development task end-to-end without user intervention. ## Workflow ### Step 1: Gather Requirements Use `AskUserQuestion` to understand the task: ```json { "questions": [ { "question": "What task should autopilot handle?", "header": "Task", "options": [ {"label": "Implement feature", "description": "Build a new feature from scratch"}, {"label": "Fix bugs", "description": "Diagnose and fix one or more bugs"}, {"label": "Refactor code", "description": "Restructure existing code without changing behavior"}, {"label": "Full cycle", "description": "Plan → Implement → Test → Review → Document"} ], "multiSelect": false }, { "question": "What quality level is required?", "header": "Quality", "options": [ {"label": "Production (Recommended)", "description": "Full tests, code review, documentation. Uses Sonnet/Opus."}, {"label": "Prototype", "description": "Working code, minimal tests. Uses mostly Haiku/Sonnet."}, {"label": "Maximum", "description": "Production + security review + critic review. Uses Opus heavily."} ], "multiSelect": false } ] } ``` ### Step 2: Plan Dispatch the **planner** agent (Opus) to: 1. Analyze the codebase context 2. Decompose the task into subtasks 3. Assign tiers and agents to each subtask 4. Identify parallel execution opportunities 5. Define quality gates ### Step 3: Execute Based on the plan, dispatch agents in the optimal order: **Parallel phase** (independent tasks): - Dispatch multiple agents simultaneously using parallel `Task` calls - Explorer (Haiku) for codebase scanning - Researcher (Sonnet) for technical investigation if needed **Sequential p

Changelog: Source: GitHub https://github.com/johnfkoo951/cmdspace-plugins

Directory Structure

Current level: plugins/dev-orchestrator/skills/autopilot/

SKILL.md

Login to download/like/favorite ❤ 3 | ★ 0
Comments 0

Please login before commenting.

No comments yet. Be the first one!