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.
Use Pluxx In Claude, Codex, Cursor, And OpenCode
This is the operator guide for using Pluxx inside a host coding agent. Use this doc when you want the meta workflow:- install or enable Pluxx in your host
- ask Claude, Codex, Cursor, or OpenCode to use Pluxx for you
- scaffold a plugin from an MCP
- refine the scaffold
- review it
- sync it later
Product Split
The meta workflow is:- deterministic project commands
- optional agent-driven refinement
- improving taxonomy
- rewriting instructions
- running a review pass before ship
- MCP import
- scaffold generation
- lint, eval, build, and test
- install and sync
- platform packaging
Should the Pluxx plugin bundle the CLI?
No. The cleaner design is:- Pluxx CLI as the execution engine
- thin host-native Pluxx plugins as the UX layer
- skills, commands, and agents that route users into the right Pluxx workflow
- polished metadata, prompts, and examples
- a better in-host entrypoint for the deterministic CLI underneath
The Main Pluxx Workflows
The recommended Pluxx skill pack is organized around eight jobs:pluxx-import-mcppluxx-migrate-pluginpluxx-validate-scaffoldpluxx-refine-taxonomypluxx-rewrite-instructionspluxx-review-scaffoldpluxx-build-installpluxx-sync-mcp
- import an MCP and scaffold a plugin
- migrate an existing host-native plugin into Pluxx
- validate the scaffold deterministically
- improve the skill taxonomy
- rewrite the shared instructions
- review the scaffold critically
- build native outputs and optionally install them
- refresh the scaffold when the MCP changes
/pluxx:import-mcp/pluxx:migrate-plugin/pluxx:validate-scaffold/pluxx:refine-taxonomy/pluxx:rewrite-instructions/pluxx:review-scaffold/pluxx:build-install/pluxx:sync-mcp
@pluxx and the skill list instead; / is reserved for native Codex commands. Use skills when you want the host agent to choose the right Pluxx workflow automatically.
What To Ask The Host Agent To Do
Think in terms of the job you want the host agent to perform:- “Use Pluxx to scaffold this MCP”
- “Use Pluxx to improve the taxonomy”
- “Use Pluxx to rewrite the instructions”
- “Use Pluxx to review this scaffold”
- “Use Pluxx to sync this plugin from its MCP again”
Core Usage Patterns
1. Import a new MCP
Good prompt:2. Refine the taxonomy
Good prompt:3. Rewrite the instructions
Good prompt:4. Review the scaffold
Good prompt:5. Sync later
Good prompt:The Best Inputs To Give The Host Agent
Pluxx works much better when you hand the host agent the real product context up front. When possible, include:- MCP URL or local stdio command
- auth shape
- website URL
- docs URL
- plugin name
- display name
- desired targets
- whether you want a dry-run first
What The Host Agent Will Usually Do
Under the hood, the host agent should follow something close to this:- run
pluxx init --from-mcp ... - inspect the scaffold
- run
pluxx agent prepare --website ... --docs ... - optionally run taxonomy/instructions/review passes
- run
pluxx doctor - run
pluxx lint - run
pluxx test
- run
pluxx test --install - reload any host app that was already open
- if the installed plugin still looks wrong, run
pluxx doctor --consumer <installed-path> - run
pluxx build - optionally run
pluxx install --target ...
What Good Operator Behavior Looks Like
The host agent should:- start with deterministic import and validation
- only move into taxonomy or instructions passes when the scaffold needs semantic cleanup
- keep edits inside Pluxx-managed sections
- rerun validation after semantic changes
- treat every import as an excuse for a full rewrite
- change auth wiring casually
- edit generated
dist/output directly - skip validation after major taxonomy or instructions changes
Host-Specific Guidance
Claude Code
Use Pluxx in Claude Code when you want:- interactive scaffold iteration
- fast review/refine loops
- native runtime testing of generated Claude plugins
Codex
Use Pluxx in Codex when you want:- CLI-first deterministic generation
- stricter review behavior
- strong local coding-agent workflows around the generated scaffold
- explicit plugin invocation via
@pluxxrather than plugin slash commands
Cursor
Use Pluxx in Cursor when you want:- plugin authoring in a more IDE-native environment
- Cursor-specific validation and runtime testing
- headless taxonomy/instructions passes via the Cursor agent CLI when needed
OpenCode
Use Pluxx in OpenCode when you want:- OpenCode-specific plugin wrapper generation
- attachable headless runs for refinement
- explicit command and hook mapping into OpenCode’s plugin model
How To Ask For The Right Level Of Automation
Deterministic first
Use this when you want control:Full autopilot
Use this when you want convenience:Review before mutation
Use this when you want caution:What “Good” Looks Like
A good Pluxx-assisted run should leave you with:- a valid
pluxx.config.ts - a sensible
INSTRUCTIONS.md - product-shaped
skills/*/SKILL.md - passing
doctor,lint, andtest - built
dist/outputs for the requested targets - optionally an installed local plugin for one host
Recommended Prompts
Import only
Import + product shaping
Review before shipping
Sync existing project
What To Document For Your Team
If your team uses Pluxx inside host agents regularly, capture these four things:- which MCPs you wrap
- what auth shape each one uses during import
- whether runtime auth is platform-managed or plugin-managed
- which prompts/workflows you want people to use by default