Quick Start
Quick Start
Section titled “Quick Start”Once you’ve installed the plugin, the agents and rules are available in every session.
Start a Session
Section titled “Start a Session”Launch OpenCode as usual. The plugin loads automatically — no additional commands needed.
Delegate to a Specialist
Section titled “Delegate to a Specialist”Ask any of the 7 specialists directly:
@adventurer Explore the codebase and understand how the auth module works.Or delegate to the orchestrator:
@orchestrator I need to add a logging middleware. Plan and implement it.Observe the Global Rules
Section titled “Observe the Global Rules”Every session includes global rules that guide agent behavior:
- Don’t assume — verify against actual code and docs
- Use
opensrcinstead of API calls — for analyzing reference repos - Progressive disclosure — start high-level, get specific as needed
- State checkpointing — summarize progress periodically
- Completion promises — define success criteria before starting
Pipeline Flow
Section titled “Pipeline Flow”A typical multi-step task flows through the agent system like this:
@orchestrator ├─ @adventurer → Explore codebase ├─ @architect → Design approach ├─ @planner → Create implementation plan ├─ @builder → Implement └─ @reviewer → Review changesEach agent hands off to the next, and the orchestrator integrates results.
What’s Next
Section titled “What’s Next”- Explore the Agents — Detailed docs for each specialist
- Global Rules — Full rule reference
- Configuration — Agent frontmatter and permissions