auto

Routes Autopus slash-command arguments to the matching detail skill.

111|73|Updated Mar 20, 2026
One-click install
npx skills add https://github.com/autopus-ai/autopus-adk --skill auto-autopus-ai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: auto
Source: https://github.com/autopus-ai/autopus-adk/tree/main/.omp/skills/auto
Command: npx skills add https://github.com/autopus-ai/autopus-adk --skill auto-autopus-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you type /auto followed by a subcommand in oh-my-pi, something must decide which of the 19 Autopus detail skills should handle it. This Skill acts as the command router, parsing the payload after /auto and dispatching it to exactly one matching skill without ambiguity. ## Core Features & Use Cases - Deterministic Routing: Maps the input text to exactly one skill from a fixed list including auto-plan, auto-go, auto-dev, auto-review, auto-test, and 14 others. - Flag Preservation: Passes --model, --variant, and --execution-owner flags through unchanged so downstream skills receive the exact options you supplied. - Strict Error Handling: Rejects unknown subcommands instead of guessing, and reports the exact list of supported commands. - Use Case: You type /auto plan "Add OAuth2 login" --multi in your oh-my-pi session, and the router forwards the full payload to the auto-plan skill for execution. ## Quick Start Type /auto followed by a subcommand such as plan, go, dev, or review along with your task description, and the router will dispatch it to the correct Autopus skill.

Frequently Asked Questions about auto

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

FAQPage Schema
How do I use the /auto command in oh-my-pi?▼

Type /auto followed by a subcommand and your task text, for example /auto plan "Add OAuth2 login". The router matches the subcommand to one of 19 detail skills such as auto-plan, auto-go, or auto-dev and forwards the full payload.

What subcommands does the Autopus router support?▼

The router supports exactly 19 subcommands: setup, status, goal, update, plan, go, fix, review, sync, idea, map, why, verify, secure, test, qa, dev, canary, and doctor. Unknown subcommands are reported as unsupported with the full list shown.

Does the /auto router support model and variant flags?▼

Yes, the router preserves --model <provider/model> and --variant <value> flags exactly as supplied and passes them to the matched detail skill. For the go subcommand it also preserves at most one --execution-owner omp|orca pair, defaulting to omp.

What happens if I type an unknown /auto subcommand?▼

The router does not fuzzy-correct or guess unknown subcommands. It reports the input as unsupported and displays the exact map of the 19 valid subcommands so you can correct the command yourself.

Is the auto router a command parser or an AI model feature?▼

It is an emitted routing contract, not an OMP runtime parser or a model-quality claim. The skill instructs the agent to deterministically match input text to one detail skill and preserve flags verbatim.