← ClaudeAtlas

autopilotlisted

Autonomous orchestrator that takes a goal, discovers available tools, decomposes into phases, maps phases to skills, executes, and monitors until the project is done. Use when user wants full autonomous execution of a complex goal.
mahmoud20138/Autopilot · ★ 1 · AI & Automation · score 77
Install: claude install-skill mahmoud20138/Autopilot
# Autopilot Agent Mode Fully autonomous orchestrator. Takes a user's goal, runs it to completion without human intervention. **Announce at start:** "I'm using the Autopilot skill to autonomously accomplish: {user_goal}" **Core principle:** Never implement anything directly. Orchestrate existing skills. Each phase delegates to a real skill. **Portability:** Works on any PC. Dynamically discovers whatever skills, plugins, MCP servers, and CLI tools are installed. No hardcoded skill names. ## Pipeline ``` Input → Discovery → Analysis → Phase Detection → Skill Mapping → Prompt Generation → Execution → Monitor → Done ``` ## Stop Conditions **Stop only when:** - All phases completed successfully - Final verification passes (build succeeds, tests pass, no blockers) - Project goal achieved **Never stop for:** - "Should I continue?" prompts - Progress summaries - Confirmation between phases **Pause only if:** - Hard blocker that no skill can resolve (missing external dependency, ambiguous requirement) - Report the blocker and wait for user input ## Discovery (Runs First, Every Time) Before doing anything, build an inventory of what's available on this system. ### Step 1: Scan Skills Directory ```bash # Find skills directory SKILLS_DIR="${HOME}/.openclaude/skills" if [ -d "$SKILLS_DIR" ]; then for skill_dir in "$SKILLS_DIR"/*/; do if [ -f "${skill_dir}SKILL.md" ]; then # Read name and description from frontmatter head -5 "${skill_dir}SKILL.md" fi d