Documentation Index
Fetch the complete documentation index at: https://docs.pluxx.dev/llms.txt
Use this file to discover all available pages before exploring further.
Autopilot
pluxx autopilot is the coordinated import flow for people who want Pluxx to scaffold the project, run the right semantic passes, and verify the result without manually chaining every command.
It is a real command, not a planning spec.
What autopilot does
Autopilot combines:- deterministic MCP import
- optional semantic refinement through a host coding agent
- final verification
Command shape
claudecursorcodexopencode
Deterministic steps vs agent steps
Autopilot always starts with deterministic work:- MCP introspection
- scaffold generation
- quality analysis
- the selected mode
- MCP quality signals
- whether you supplied docs, website, or local context
- whether you explicitly requested a review pass
- taxonomy refinement
- instruction rewriting
- review
- import
- lint
- eval
- build
- install
- test
Modes
quick
Quick mode is the lightest path.
- taxonomy runs only when MCP metadata warnings are present
- instructions are skipped
- review is skipped
standard
Standard mode is the default.
- taxonomy runs when MCP metadata signals cleanup work or when you provide docs/website/context
- instructions run when warnings are present or when richer context is provided
- review runs only if you add
--review
thorough
Thorough mode is the heaviest path.
- taxonomy always runs
- instructions always run
- review runs by default
Context inputs
Autopilot can enrich the agent context with:--docs <url>--website <url>--context <files...>
Auth examples
Bearer auth:--oauth-wrapper.
Useful flags
--mode quick|standard|thorough--reviewto force a review pass in standard mode--no-verifyto skip the final verification step--verbose-runnerto stream runner logs instead of showing the condensed summary--jsonfor machine-readable output--dry-runto preview the planned scaffold and runner commands--model <name>to override the runner’s local default model--attach <url>for OpenCode only
--model, Pluxx uses the selected runner’s local default model and reports that model in the autopilot output when it can detect it.
What dry run shows
--dry-run --json shows:
- the planned scaffold
- which agent passes will run or be skipped
- the exact runner commands
- which files would be created or updated
- write files
- invoke the runner
- run verification
What a real run leaves behind
A real autopilot run writes the normal source project plus the agent pack under.pluxx/agent/:
When to use autopilot vs manual commands
Use autopilot when:- you want one coordinated import flow
- you already know which runner you want to use
- you want Pluxx to decide which semantic passes are worth running
- you want to inspect the deterministic scaffold first
- you want tighter control over each agent pass
- you want to stop after import, validation, or one specific refinement step
Example: workflow-grouped import with verification
- imports the MCP
- applies the selected semantic passes
- verifies the resulting scaffold
- leaves a normal Pluxx source project you can keep editing and syncing later