dev-autopilot

Orchestrates autonomous execute, review, and fix loops across all phases of a development plan.

16|1|Updated May 5, 2026
One-click install
npx skills add https://github.com/AIBiz-Automatyzacje/workspace-template-mobile --skill dev-autopilot-aibiz-automatyzacje
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: dev-autopilot
Source: https://github.com/AIBiz-Automatyzacje/workspace-template-mobile/tree/main/.claude/skills/dev-autopilot
Command: npx skills add https://github.com/AIBiz-Automatyzacje/workspace-template-mobile --skill dev-autopilot-aibiz-automatyzacje

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually driving a multi-phase implementation plan through coding, code review, and fix cycles is slow and error-prone. This Skill automates the entire pipeline: it executes each phase, runs multi-agent code review, applies fixes, and repeats until the plan is complete, then archives results and compounds lessons learned. ## Core Features & Use Cases - Autonomous phase loop: Runs execute -> review -> fix per phase with a maximum of 2 fix cycles, tracking state via task checkboxes so it can resume after interruption. - Severity-gated decisions: Classifies review findings as P1/P2/P3, stops on unresolved blocking issues, and gracefully moves remaining P2 items into a known-issues file. - Completion pipeline: Performs final validation (typecheck, lint, tests, expo-doctor), archives the task, and documents solved problems into a knowledge base with learned-pattern rules. - Use Case: You have a planned refactor documented in docs/active/auth-refactor with phased task checklists. Invoke the autopilot on that folder and it implements every phase, reviews each with five parallel review agents, fixes findings, and delivers a final report with commits and known issues. ## Quick Start Run the autopilot on my task folder docs/active/auth-refactor and let it execute all remaining phases autonomously.

Frequently Asked Questions about dev-autopilot

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run an autonomous implementation pipeline on a phased plan?▼

Invoke the dev-autopilot skill with the path to your task folder containing a plan file and a tasks file with checkboxes. It executes each incomplete phase, runs multi-agent review, applies fixes, and continues until all phases are done.

How does the autopilot handle code review findings?▼

Review findings are classified by severity: P1 and P2 findings trigger a fix cycle, while P3 items are skipped. After two fix cycles, remaining P1 issues stop the pipeline, while remaining P2 issues are recorded in a known-issues file and work continues.

Can I resume the autopilot after it stops or fails?▼

Yes, the autopilot is resumable. It reads the current state from task checkboxes and existing review reports, skips completed phases, and continues from the first incomplete phase, starting at the fix step if unresolved findings exist.

What happens when the autopilot finishes all phases?▼

It runs a final validation (typecheck, lint, tests, expo-doctor), archives the task to docs/completed, and compounds solved problems into docs/solutions with optional learned-pattern rules. A summary report lists commits, fix cycles, and known issues.

What are the limitations of the autopilot fix loop?▼

The fix loop is capped at two cycles per phase to prevent infinite iteration. If blocking P1 issues remain after that, the pipeline stops and requires manual intervention with the unresolved items listed from the review report.