Skip to content

Quick Start

Once you’ve installed the plugin, the agents and rules are available in every session.

Launch OpenCode as usual. The plugin loads automatically — no additional commands needed.

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.

Every session includes global rules that guide agent behavior:

  • Don’t assume — verify against actual code and docs
  • Use opensrc instead 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

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 changes

Each agent hands off to the next, and the orchestrator integrates results.