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.
Core Primitives
This document defines the tightened product scope for Pluxx after reviewing:- the cross-host extension-system research in research/extension-systems
- real open-source plugins and skill packs such as obra/superpowers
- Pluxx should dominate the common plugin-authoring path
- Pluxx should not try to model every host-specific feature just because the platform exposes it
The Product Rule
Pluxx should treat these as the canonical authoring model:skillsinstructionsmcpuserConfigcommandsagentshookspermissionsbrandassets/scriptstaxonomy
Compiler Buckets
The list above is the detailed authoring model. The eight compiler buckets below are the important top-level primitives. For cross-host compilation, Pluxx should reason about that model through eight larger buckets:| Compiler bucket | Includes | Why it exists |
|---|---|---|
instructions | instructions | Global host guidance is a distinct surface on every core host. |
skills | skills plus taxonomy-derived workflow metadata | Skills remain the semantic center of the system. |
commands | commands | Explicit entrypoints exist on some hosts and need their own compilation path. |
agents | agents | Specialist execution surfaces differ too much to collapse into skills. |
hooks | hooks | Event vocabularies differ per host, but deterministic automation is still core. |
permissions | permissions | allow / ask / deny intent needs a portable home even when hosts enforce it differently. |
runtime | mcp, runtime auth, local runtimes, passthrough dirs, helper scripts | This is the execution and integration layer. |
distribution | userConfig, brand, packaging metadata, install/publish metadata, supporting assets | This is the install surface users actually touch. |
taxonomy stays internal. It is the compiler’s semantic source of truth for how workflows should be grouped and routed, but it is not a host-facing primitive on its own.
Conceptually, Pluxx should compile from a shape closer to this:
Canonical Primitives
1. Skills
This is the semantic center of Pluxx.- Skills are the most portable extension surface across Claude Code, Codex, Cursor, and OpenCode.
- Skills should remain the primary source of workflow meaning.
- Commands and agents should layer on top of the same semantic model, not replace it.
2. Instructions
This is the shared host-guidance layer.- Compiles into
CLAUDE.md,AGENTS.md, Cursor rules, or OpenCode rule/instruction equivalents. - Must stay concise, route-oriented, and host-usable.
- Should be generated from the same semantic model as skills, not from raw tool-doc dumps.
3. MCP
This is the runtime integration layer.- Transport
- auth shape
- import auth vs runtime auth
- remote vs local stdio
- target-specific MCP config compilation
4. userConfig
This is the secret and install-time config layer.- API keys
- tokens
- install-time prompts
- per-host env/config shims
5. Commands
This is the host-native explicit entrypoint layer.- Claude Code: yes
- Cursor: yes
- OpenCode: yes
- Codex: no equivalent plugin-command parity today; use
@plugin+ skills
6. Agents
This is the delegated execution layer.- subagents
- worker/reviewer/planner surfaces
- background and isolation hints where available
7. Hooks
This is the automation and policy-enforcement layer.- session hooks
- tool interception
- stop/compact hooks
- MCP/session lifecycle hooks where supported
8. Permissions
This is the canonical access-control layer.- allow
- ask
- deny
9. Brand / interface metadata
This is the presentation layer.- display name
- icon
- color
- short description
- screenshots
- default prompts where supported
10. Assets / scripts
This is the support-file layer.- hook scripts
- helper scripts
- icons
- supporting assets
11. Taxonomy
This is the internal semantic source of truth.- skill grouping
- names
- command derivation
- instruction routing
Cross-Cutting Requirements
These are not primitives themselves, but Pluxx should treat them as mandatory product behavior:- build-time target cap validation
- target-specific linting
- sync-safe persistence
- install/publish generation
- auth split between import auth and runtime auth
What Is Not Core Right Now
These are real platform features, but they are not part of the common path Pluxx needs to win first:outputStyleslspServersbin/executablesmonitorschannelsappsabstraction- plugin data-dir abstraction
- statuslines
- themes / keybindings
- sandbox or other user/admin runtime policy
Priority Order
After the current core-authoring work, the next extension-system priorities should be:userConfigpermissions- build-time target cap validation
- publish / marketplace generation
- deeper MCP protocol support beyond
tools/list - portable agent / subagent delegation
Why This Scope Is Tight
The best open-source examples are not winning because they use every exotic host primitive. They are winning because they combine:- good skills
- clear instructions
- practical MCP wiring
- useful hooks
- decent install UX