Installation
This page gets you from zero to your first Systematic workflow in under five minutes, on OpenCode, Pi, or Claude Code. Most setups are one line of config and a restart away.
Prerequisites
Section titled “Prerequisites”You need the harness you are installing into — OpenCode, Pi, or Claude Code — installed and running. The OpenCode and Pi package also needs Node.js 18+ or the Bun runtime. No API keys, no accounts, no extra tooling.
Install the OpenCode plugin
Section titled “Install the OpenCode plugin”The OpenCode plugin is the recommended installation path. It provides the full experience: slash commands, the systematic_skill tool, agent registration, and automatic bootstrap.
-
Add the plugin to your OpenCode config
Open your global OpenCode config (typically
~/.config/opencode/opencode.json) and add Systematic to thepluginarray:{"plugin": ["@fro.bot/systematic@latest"]}If you already have other plugins, add it to the existing array.
-
Restart OpenCode
Close and reopen your OpenCode session. Systematic uses OpenCode’s
confighook to register all bundled skills and agents automatically on startup. No manual wiring, no scaffolding commands. -
Verify it’s working
In any conversation, check that
systematic_skillappears in the available tool list. You can also run the bootstrap skill:/systematic:using-systematicIf the skill loads and displays usage instructions, the installation succeeded.
Harness compatibility at a glance
Section titled “Harness compatibility at a glance”| Harness | Install | Skill loading |
|---|---|---|
| OpenCode | opencode.json plugins array | systematic_skill tool + skills-as-commands |
| Pi | setup --harness pi | systematic_skill tool |
| Claude Code | plugin marketplace | native Skill tool |
See HARNESSES.md for the full capability matrix and per-harness boundaries.
Or install skill content with npx skills
Section titled “Or install skill content with npx skills”Use npx skills to install the skill Markdown files directly. This path works in any AI harness (OpenCode, Claude Code, Cursor, Copilot) but installs the content only. It does not include slash-command registration, the systematic_skill tool, or automatic bootstrap.
Whole collection
Current projectInstall all Systematic skills into the current working directory.
npx skills add marcusrbrown/systematicGlobal install
All projectsMake skills available across all projects.
npx skills add marcusrbrown/systematic -gSpecific AI Harness
OpenCode / Claude CodeTarget a specific AI coding assistant.
npx skills add marcusrbrown/systematic -a opencodenpx skills add marcusrbrown/systematic -a claude-codeSpecific skill
Single workflowInstall just one skill instead of the entire collection.
npx skills add marcusrbrown/systematic --skill [name]List skills
DiscoverySee what skills are available in the collection before installing.
npx skills add marcusrbrown/systematic --listInstall into a Pi coding-agent project
Section titled “Install into a Pi coding-agent project”Systematic also ships a Pi coding-agent extension from the same package — same systematic_skill tool, same bootstrap injection, plus a systematic_delegate persona-delegation tool.
npx @fro.bot/systematic setup --harness piThis atomically writes the plugin entry into .pi/settings.json. It is idempotent — running it again is safe and will not duplicate the entry. Pi trust-gates the extension at first use, so expect a trust prompt the first time it loads.
Optional: export personas for pi-subagents
Section titled “Optional: export personas for pi-subagents”If you use pi-subagents for parallel or multi-model delegation, Systematic can export a curated subset of its personas as flat agent files that pi-subagents reads. This is an opt-in complement — systematic_delegate (sequential, bounded, depth-1) stays the default.
npx @fro.bot/systematic pi-subagents preview # see what would be exportednpx @fro.bot/systematic pi-subagents export # write to <cwd>/.pi/agents/Exact CLI form: systematic pi-subagents <preview|export|refresh|cleanup> --scope project|global. Default scope is project (writes to <cwd>/.pi/agents/). Pass --scope global to target $PI_CODING_AGENT_DIR/agents/ instead, falling back to ~/.pi/agent/agents/ if that variable is unset. Existing files not owned by Systematic (i.e. not tracked in its manifest) are never overwritten; manifest-owned generated files are replaced when you explicitly run refresh, as documented in the pi-subagents pairing guide below.
Your Systematic config is the durable source of truth for exported personas — the generated files and manifest are a disposable projection that refresh intentionally overwrites when it drifts from current config; run preview first to see what would change. See the pi-subagents pairing guide for the full ownership model, config precedence, refresh/cleanup commands, and delegation boundary notes.
See HARNESSES.md for an honest list of where Pi parity with OpenCode currently ends (config support, permission gating).
Install into a Claude Code project
Section titled “Install into a Claude Code project”Systematic is also built and published as a Claude Code plugin (from a dedicated claude-code-plugin branch) and installed through Claude Code’s plugin marketplace.
claude plugin marketplace add marcusrbrown/systematicclaude plugin install systematic@systematicIn Claude Desktop’s GUI, the equivalent path is + → Plugins → Add plugin. Once installed, skills are available through Claude Code’s native Skill tool rather than the systematic_skill tool.
See HARNESSES.md for the full capability matrix and per-harness boundaries.
Automatic asset discovery
Section titled “Automatic asset discovery”Systematic requires zero manual file copying. When the OpenCode plugin loads, it automatically:
- Discovers all bundled skills and makes them available via the
systematic_skilltool. - Registers bundled agents so you can @mention them immediately.
- Exposes bundled skills as slash-invokable workflows (for example,
/ce:plan).
Pi and Claude Code surface the same skills and agents through their own discovery — Pi via the systematic_skill tool, Claude Code via its native Skill tool. See HARNESSES.md for how discovery differs per harness.
Recommended: enable background subagents
Section titled “Recommended: enable background subagents”Set OPENCODE_EXPERIMENTAL_BACKGROUND_SUBAGENTS=true before starting OpenCode. This allows Systematic workflows to dispatch subagents in the background. The orchestrator continues working while subagents run, and results are pushed into the parent session automatically upon completion.
export OPENCODE_EXPERIMENTAL_BACKGROUND_SUBAGENTS=trueAdd this to your shell profile (.zshrc, .bashrc, or equivalent) to persist the setting.
This flag is experimental but stable in recent OpenCode versions. It is optional but recommended for parallel and long-running workflow steps. Without it, Systematic falls back to foreground dispatch, which is serial but correct.
Your first workflow
Section titled “Your first workflow”Systematic is built around a four-step loop. Here is what it looks like in practice, using a concrete task: adding a dark mode toggle. The commands below use OpenCode’s slash-command form; Pi and Claude Code run the same workflows through their native skill invocation (see HARNESSES.md for the per-harness equivalents).
-
Brainstorm — explore the problem before writing code
/ce:brainstorm "add dark mode toggle"The brainstorm skill asks clarifying questions, surfaces edge cases, and produces a requirements document. You end up with a clear scope before a single line of code is written.
-
Plan — break the work into a structured implementation plan
/ce:planTakes the requirements document from the brainstorm and produces a sequenced implementation plan. For high-stakes work, run
/systematic:deepen-planafterward to stress-test the plan’s assumptions. -
Work — execute the plan
/ce:workThe agent follows the plan, tracks progress, and surfaces blockers instead of silently guessing. You stay in the loop without micromanaging every step.
-
Review — check the work before opening a PR
/ce:reviewTiered persona agents check for correctness, security, performance, and style, in parallel. You get a structured report, not a wall of unranked comments.
After shipping, use /ce:compound to capture what you learned. That knowledge becomes part of the system and speeds up the next similar task.
Next steps
Section titled “Next steps”- The Systematic Philosophy — understand why the loop is structured this way and what “compounding” actually means in practice.
- Configuration — disable bundled content you don’t want, add project-specific skills, or configure agent overlays.
- Skills Reference — browse all bundled skills and when to reach for each one.
- Agents Reference — explore the specialized subagents available for review, research, and architecture work.