home / skills / yeachan-heo / oh-my-claudecode / ultrapilot
/skills/ultrapilot
This skill accelerates complex, multi-module tasks by orchestrating parallel subtasks with exclusive file ownership to unlock up to 5x speed.
npx playbooks add skill yeachan-heo/oh-my-claudecode --skill ultrapilotReview the files below or copy the command above to add this skill to your agents.
---
name: ultrapilot
description: "[DEPRECATED] Use /autopilot or /team instead"
deprecated: true
deprecationMessage: "/ultrapilot has been removed in #1131. Use /autopilot or /team instead."
---
# Ultrapilot (Deprecated)
This mode has been deprecated and removed in issue #1131 (pipeline unification).
Use one of these alternatives instead:
- `/autopilot` - Full autonomous execution from idea to working code
- `/team` - N coordinated agents on shared task list
This skill runs a parallel autopilot that spawns multiple workers and partitions file ownership to speed up large code tasks. It decomposes a request into independent subtasks, assigns exclusive file sets to workers, executes them concurrently, then integrates and validates the combined result. The coordinator handles shared files and conflict resolution with configurable policies.
Ultrapilot first analyzes whether a task is parallelizable and performs AI-powered decomposition into subtasks with clear file boundaries. It writes an ownership map so each worker can only change its assigned files, spawns up to the configured number of parallel workers, collects their outputs, applies sequential integration for shared files, and runs full-system validation. State, progress, and ownership maps are persisted so runs can be cancelled and resumed.
What if the task is not parallelizable?
Ultrapilot detects non-parallelizable tasks and can automatically fall back to sequential autopilot to avoid unsafe parallel edits.
How are conflicts handled when two workers touch the same file?
Default policy is coordinator-handles: the coordinator will attempt automatic merges and surface complex conflicts for human review. An abort-on-conflict option cancels the run instead.