Skip to content

neocody/opencode-swarm

 
 

Repository files navigation

🐝 OpenCode Swarm

Your AI writes the code. Swarm makes sure it actually works.

OpenCode Swarm is a plugin for OpenCode that turns a single AI coding agent into a team of nine. One agent writes the code. A different agent reviews it. Another writes and runs tests. Another catches security issues. Nothing ships until every check passes. Your project state is saved to disk, so you can close your laptop, come back tomorrow, and pick up exactly where you left off.

npm install -g opencode-swarm

That's it. Open your project with opencode and start building. Swarm activates automatically.


What Actually Happens

You say: "Build me a JWT auth system."

Here's what Swarm does behind the scenes:

  1. Asks you clarifying questions (only the ones it can't figure out itself)
  2. Scans your codebase to understand what already exists
  3. Consults domain experts (security, API design, whatever your project needs) and caches the guidance so it never re-asks
  4. Writes a phased plan with concrete tasks, acceptance criteria, and dependencies
  5. A separate critic agent reviews the plan before any code is written
  6. Implements one task at a time. For each task:
    • A coder agent writes the code
    • 7 automated checks run (syntax, imports, linting, secrets, security, build, quality)
    • A reviewer agent (running on a different AI model) checks for correctness
    • A test engineer agent writes tests, runs them, and checks coverage
    • If anything fails, it goes back to the coder with specific feedback
    • If it passes everything, the task is marked done and the next one starts
  7. After each phase completes, documentation updates automatically, and a retrospective captures what worked and what didn't. Those learnings carry into the next phase.

All of this state lives in a .swarm/ folder in your project:

.swarm/
├── plan.md       # Your project roadmap (tasks, status, what's done, what's next)
├── context.md    # Decisions made, expert guidance, established patterns
├── evidence/     # Review verdicts, test results, diffs for every completed task
└── history/      # Phase retrospectives and metrics

Close your terminal. Come back next week. Swarm reads these files and picks up exactly where it stopped.


Why This Exists

Most AI coding tools let one model write code and then ask that same model if the code is good. That's like asking someone to proofread their own essay. They'll miss the same things they missed while writing it.

Swarm fixes this by splitting the work across specialized agents and requiring that different models handle writing vs. reviewing. The coder writes. A different model reviews. Another model tests. Different training data, different blind spots, different failure modes.

The other thing most tools get wrong: they try to do everything in parallel. That sounds fast, but in practice you get three agents writing conflicting code at the same time with no coordination. Swarm runs one task at a time through a fixed pipeline. Slower per-task, but you don't redo work.


Quick Start

Install

npm install -g opencode-swarm

Verify

Open a project with opencode and run:

/swarm diagnose

This checks that everything is wired up correctly.

Configure Models (Optional)

By default, Swarm v6.14+ uses free OpenCode Zen models (no API key required). You can override any agent's model by creating .opencode/swarm.json in your project. See the LLM Provider Guide for all options.

{
  "agents": {
    "architect": { "model": "anthropic/claude-opus-4-6" },
    "coder":     { "model": "minimax-coding-plan/MiniMax-M2.5" },
    "reviewer":  { "model": "zai-coding-plan/glm-5" }
  },
  "guardrails": {
    "max_tool_calls": 200,
    "max_duration_minutes": 30,
    "profiles": {
      "coder": { "max_tool_calls": 500 }
    }
  },
  "tool_filter": {
    "enabled": true,
    "overrides": {}
  },
  "review_passes": {
    "always_security_review": false,
    "security_globs": ["**/*auth*", "**/*crypto*", "**/*session*"]
  },
  "automation": {
    "mode": "manual",
    "capabilities": {
      "plan_sync": false,
      "phase_preflight": false,
      "config_doctor_on_startup": false,
      "evidence_auto_summaries": false,
      "decision_drift_detection": false
    }
  }
}

You only need to specify the agents you want to override. The rest use the default.

Start Building

Just tell OpenCode what you want to build. Swarm handles the rest.

> Build a REST API with user registration, login, and JWT auth

Use /swarm status at any time to see where things stand.


LLM Provider Guide

Swarm works with any LLM provider supported by OpenCode. Different agents benefit from different models — the architect needs strong reasoning, the coder needs strong code generation, and the reviewer benefits from a model different from the coder (to catch blind spots).

Free Tier (OpenCode Zen Models)

OpenCode Zen provides free models via the opencode/ provider prefix. These are excellent starting points and require no API key:

{
  "agents": {
    "coder":        { "model": "opencode/minimax-m2.5-free" },
    "reviewer":     { "model": "opencode/big-pickle" },
    "test_engineer":{ "model": "opencode/gpt-5-nano" },
    "explorer":     { "model": "opencode/trinity-large-preview-free" },
    "sme":          { "model": "opencode/trinity-large-preview-free" },
    "critic":       { "model": "opencode/trinity-large-preview-free" },
    "docs":         { "model": "opencode/trinity-large-preview-free" },
    "designer":     { "model": "opencode/trinity-large-preview-free" }
  }
}

Save this configuration to .opencode/swarm.json in your project root (or ~/.config/opencode/opencode-swarm.json for global config).

Note: The architect key is intentionally omitted — it inherits whatever model you have selected in the OpenCode UI for maximum reasoning quality.

Paid Providers

For production use, mix providers to maximize quality across writing vs. reviewing:

Agent Recommended Model Why
architect OpenCode UI selection Needs strongest reasoning
coder minimax-coding-plan/MiniMax-M2.5 Fast, accurate code generation
reviewer zai-coding-plan/glm-5 Different training data from coder
test_engineer minimax-coding-plan/MiniMax-M2.5 Same strengths as coder
explorer google/gemini-2.5-flash Fast read-heavy analysis
sme kimi-for-coding/k2p5 Strong domain expertise
critic zai-coding-plan/glm-5 Independent plan review
docs zai-coding-plan/glm-4.7-flash Fast, cost-effective documentation generation
designer kimi-for-coding/k2p5 Strong UI/UX generation capabilities

Provider Formats

Provider Format Example
OpenCode Zen (free) opencode/<model> opencode/trinity-large-preview-free
Anthropic anthropic/<model> anthropic/claude-opus-4-6
Google google/<model> google/gemini-2.5-flash
Z.ai zai-coding-plan/<model> zai-coding-plan/glm-5
MiniMax minimax-coding-plan/<model> minimax-coding-plan/MiniMax-M2.5
Kimi kimi-for-coding/<model> kimi-for-coding/k2p5

Useful Commands

Command What It Does
/swarm status Where am I? Current phase, task progress
/swarm plan Show the full project plan
/swarm diagnose Health check, is everything configured right?
/swarm evidence 2.1 Show review/test results for a specific task
/swarm history What's been completed so far
/swarm reset --confirm Start over (clears all swarm state)

The Agents

Swarm has nine agents. You don't interact with them directly. The architect orchestrates everything.

Agent Role When It Runs
architect Plans the project, delegates tasks, enforces quality gates Always (it's the coordinator)
explorer Scans your codebase to understand what exists Before planning, after each phase
sme Domain expert (security, APIs, databases, whatever is needed) During planning, guidance is cached
critic Reviews the plan before any code is written After planning, before execution
coder Writes code, one task at a time During execution
reviewer Reviews code for correctness and security issues After every task
test_engineer Writes and runs tests, including adversarial edge cases After every task
designer Generates UI scaffolds and design tokens (opt-in) Before UI tasks
docs Updates documentation to match what was actually built After each phase

How It Compares

OpenCode Swarm oh-my-opencode get-shit-done
Multiple specialized agents ✅ 9 agents ❌ Prompt config ❌ Single-agent macros
Plan reviewed before coding starts
Every task reviewed + tested
Different model for review vs. coding
Saves state to disk, resumable
Security scanning built in
Learns from its own mistakes ✅ (retrospectives)

Full Execution Pipeline (Technical Detail)

The Pipeline

Every task goes through this sequence. No exceptions, no overrides.

MODE: EXECUTE (per task)
│
├── 5a. @coder implements (ONE task only)
├── 5b. diff + imports (contract + dependency analysis)
├── 5c. syntax_check (parse validation)
├── 5d. placeholder_scan (catches TODOs, stubs, incomplete code)
├── 5e. lint fix → lint check
├── 5f. build_check (does it compile?)
├── 5g. pre_check_batch (4 parallel: lint, secretscan, SAST, quality budget)
├── 5h. @reviewer (correctness pass)
├── 5i. @reviewer (security pass, if security-sensitive files changed)
├── 5j. @test_engineer (verification tests + coverage ≥70%)
├── 5k. @test_engineer (adversarial tests)
├── 5l. ⛔ Pre-commit checklist (all 4 items required, no override)
└── 5m. Task marked complete, evidence written

If any step fails, the coder gets structured feedback and retries. After 5 failures on the same task, it escalates to you.

Architect Workflow Modes

The architect moves through these modes automatically:

Mode What Happens
RESUME Checks if .swarm/plan.md exists, picks up where it left off
CLARIFY Asks you questions (only what it can't infer)
DISCOVER Explorer scans the codebase
CONSULT SME agents provide domain guidance
PLAN Architect writes the phased plan
CRITIC-GATE Critic reviews the plan (max 2 revision cycles)
EXECUTE Tasks are implemented one at a time through the QA pipeline
PHASE-WRAP Phase completes, docs update, retrospective written
Persistent Memory (What's in .swarm/)

plan.md: Your Project Roadmap

# Project: Auth System
Current Phase: 2

## Phase 1: Foundation [COMPLETE]
- [x] Task 1.1: Create user model [SMALL]
- [x] Task 1.2: Add password hashing [SMALL]
- [x] Task 1.3: Database migrations [MEDIUM]

## Phase 2: Core Auth [IN PROGRESS]
- [x] Task 2.1: Login endpoint [MEDIUM]
- [ ] Task 2.2: JWT generation [MEDIUM] (depends: 2.1) ← CURRENT
  - Acceptance: Returns valid JWT with user claims, 15-minute expiry
  - Attempt 1: REJECTED — missing expiration claim
- [ ] Task 2.3: Token validation middleware [MEDIUM]

context.md: What's Been Decided

## Technical Decisions
- bcrypt cost factor: 12
- JWT TTL: 15 minutes; refresh TTL: 7 days

## SME Guidance (cached, never re-asked)
### security (Phase 1)
- Never log tokens or passwords
- Rate-limit login: 5 attempts / 15 min per IP

### api (Phase 1)
- Return 401 for invalid credentials (not 404)

Evidence Bundles

Every completed task writes structured evidence to .swarm/evidence/:

Type What It Captures
review Verdict, risk level, specific issues
test Pass/fail counts, coverage %, failure messages
diff Files changed, additions/deletions
retrospective Phase metrics, lessons learned (injected into next phase)
Guardrails and Circuit Breakers

Every agent runs inside a circuit breaker that kills runaway behavior before it burns your credits.

Signal Default Limit What Happens
Tool calls 200 Agent is stopped
Duration 30 min Agent is stopped
Same tool repeated 10x Agent is warned, then stopped
Consecutive errors 5 Agent is stopped

Limits reset per task. A coder working on Task 2.3 is not penalized for tool calls made during Task 2.2.

Per-agent overrides:

{
  "guardrails": {
    "profiles": {
      "coder": { "max_tool_calls": 500, "max_duration_minutes": 60 },
      "explorer": { "max_tool_calls": 50 }
    }
  }
}
Quality Gates (Technical Detail)

Built-in Tools

Tool What It Does
syntax_check Tree-sitter validation across 11 languages
placeholder_scan Catches TODOs, FIXMEs, stubs, placeholder text
sast_scan Offline security analysis, 63+ rules, 9 languages
sbom_generate CycloneDX dependency tracking, 8 ecosystems
build_check Runs your project's native build/typecheck
quality_budget Enforces complexity, duplication, and test ratio limits
pre_check_batch Runs lint, secretscan, SAST, and quality budget in parallel (~15s vs ~60s sequential)
phase_complete Enforces phase completion, verifies required agents, requires a valid retrospective evidence bundle, logs events, and resets state

All tools run locally. No Docker, no network calls, no external APIs.

Optional enhancement: Semgrep (if on PATH).

Gate Configuration

{
  "gates": {
    "syntax_check": { "enabled": true },
    "placeholder_scan": { "enabled": true },
    "sast_scan": { "enabled": true },
    "quality_budget": {
      "enabled": true,
      "max_complexity_delta": 5,
      "min_test_to_code_ratio": 0.3
    }
  }
}
Full Configuration Reference

Config file location: ~/.config/opencode/opencode-swarm.json (global) or .opencode/swarm.json (project). Project config merges over global.

{
  "agents": {
    "architect": { "model": "anthropic/claude-opus-4-6" },
    "coder": { "model": "minimax-coding-plan/MiniMax-M2.5" },
    "explorer": { "model": "minimax-coding-plan/MiniMax-M2.1" },
    "sme": { "model": "kimi-for-coding/k2p5" },
    "critic": { "model": "zai-coding-plan/glm-5" },
    "reviewer": { "model": "zai-coding-plan/glm-5" },
    "test_engineer": { "model": "minimax-coding-plan/MiniMax-M2.5" },
    "docs": { "model": "zai-coding-plan/glm-4.7-flash" },
    "designer": { "model": "kimi-for-coding/k2p5" }
  },
  "guardrails": {
    "max_tool_calls": 200,
    "max_duration_minutes": 30,
    "profiles": {
      "coder": { "max_tool_calls": 500 }
    }
  },
  "review_passes": {
    "always_security_review": false,
    "security_globs": ["**/*auth*", "**/*crypto*", "**/*session*"]
  },
  "automation": {
    "mode": "manual",
    "capabilities": {
      "plan_sync": true,
      "phase_preflight": false,
      "config_doctor_on_startup": false,
      "config_doctor_autofix": false,
      "evidence_auto_summaries": true,
      "decision_drift_detection": true
    }
  },
  "knowledge": {
    "enabled": true,
    "swarm_max_entries": 100,
    "hive_max_entries": 1000,
    "auto_promote_days": 30,
    "max_inject_count": 5,
    "dedup_threshold": 0.6,
    "scope_filter": ["global"],
    "hive_enabled": true,
    "rejected_max_entries": 200,
    "validation_enabled": true,
    "evergreen_confidence": 0.8,
    "evergreen_utility": 0.5,
    "low_utility_threshold": 0.2,
    "min_retrievals_for_utility": 3,
    "schema_version": "v6.17"
  }
}

Automation

Mode Detection (v6.13)

Swarm now explicitly distinguishes five architect modes:

  • DISCOVER — After the explorer finishes scanning the codebase.
  • PLAN — When the architect writes or updates the plan.
  • EXECUTE — During task implementation (the normal pipeline).
  • PHASE-WRAP — After all tasks in a phase are completed, before docs are updated.
  • UNKNOWN — Fallback when the current state does not match any known mode.

Each mode determines which injection blocks are added to the LLM prompt (e.g., plan cursor is injected in PLAN, tool output truncation in EXECUTE, etc.).

Default mode: manual. No background automation — all actions require explicit slash commands.

Modes:

  • manual — No background automation. All actions via slash commands (default).
  • hybrid — Background automation for safe operations, manual for sensitive ones.
  • auto — Full background automation.

Capability defaults:

  • plan_sync: true — Background plan synchronization using fs.watch with debounced writes (300ms) and 2-second polling fallback
  • phase_preflight: false — Phase preflight checks before agent execution (opt-in)
  • config_doctor_on_startup: false — Validate configuration on startup
  • config_doctor_autofix: false — Auto-fix for config doctor (opt-in, security-sensitive)
  • evidence_auto_summaries: true — Automatic summaries for evidence bundles
  • decision_drift_detection: true — Detect drift between planned and actual decisions

Plan Cursor (v6.13)

The plan_cursor config compresses the plan that is injected into the LLM context.

{
  "plan_cursor": {
    "enabled": true,
    "max_tokens": 1500,
    "lookahead_tasks": 2
  }
}
  • enabled – When true (default) Swarm injects a compact plan cursor instead of the full plan.md.
  • max_tokens – Upper bound on the number of tokens emitted for the cursor (default 1500). The cursor contains the current phase summary, the full current task, and up to lookahead_tasks upcoming tasks. Earlier phases are reduced to one‑line summaries.
  • lookahead_tasks – Number of future tasks to include in full detail (default 2). Set to 0 to show only the current task.

Disabling ("enabled": false) falls back to the pre‑v6.13 behavior of injecting the entire plan text.

Tool Output Truncation (v6.13)

Control the size of tool outputs that are sent back to the LLM.

{
  "tool_output": {
    "truncation_enabled": true,
    "max_lines": 150,
    "per_tool": {
      "diff": 200,
      "symbols": 100
    }
  }
}
  • truncation_enabled – Global switch (default true).
  • max_lines – Default line limit for any tool output.
  • per_tool – Overrides max_lines for specific tools. The diff and symbols tools are truncated by default because their outputs can be very large.

When truncation is active, a footer is appended:

---
[output truncated to {maxLines} lines – use `tool_output.per_tool.<tool>` to adjust]

Disabling Agents

{
  "sme": { "disabled": true },
  "designer": { "disabled": true },
  "test_engineer": { "disabled": true }
}
All Slash Commands
Command Description
/swarm status Current phase, task progress, agent count
/swarm plan [N] Full plan or filtered by phase
/swarm agents Registered agents with models and permissions
/swarm history Completed phases with status
/swarm config Current resolved configuration
/swarm diagnose Health check for .swarm/ files and config
/swarm export Export plan and context as portable JSON
/swarm evidence [task] Evidence bundles for a task or all tasks
/swarm archive [--dry-run] Archive old evidence with retention policy
/swarm benchmark Performance benchmarks
/swarm retrieve [id] Retrieve auto-summarized tool outputs
/swarm reset --confirm Clear swarm state files
/swarm preflight Run phase preflight checks
/swarm config doctor [--fix] Config validation with optional auto-fix
/swarm sync-plan Force plan.md regeneration from plan.json
/swarm specify [description] Generate or import a feature specification
/swarm clarify [topic] Clarify and refine an existing feature specification
/swarm analyze Analyze spec.md vs plan.md for requirement coverage gaps

Role-Scoped Tool Filtering

Swarm limits which tools each agent can access based on their role. This prevents agents from using tools that aren't appropriate for their responsibilities, reducing errors and keeping agents focused.

Default Tool Allocations

Agent Tools Count Rationale
architect All 17 tools 17 Orchestrator needs full visibility
reviewer diff, imports, lint, pkg_audit, pre_check_batch, secretscan, symbols, complexity_hotspots, retrieve_summary, extract_code_blocks, test_runner 11 Security-focused QA
coder diff, imports, lint, symbols, extract_code_blocks, retrieve_summary 6 Write-focused, minimal read tools
test_engineer test_runner, diff, symbols, extract_code_blocks, retrieve_summary, imports, complexity_hotspots, pkg_audit 8 Testing and verification
explorer complexity_hotspots, detect_domains, extract_code_blocks, gitingest, imports, retrieve_summary, schema_drift, symbols, todo_extract 9 Discovery and analysis
sme complexity_hotspots, detect_domains, extract_code_blocks, imports, retrieve_summary, schema_drift, symbols 7 Domain expertise research
critic complexity_hotspots, detect_domains, imports, retrieve_summary, symbols 5 Plan review, minimal toolset
docs detect_domains, extract_code_blocks, gitingest, imports, retrieve_summary, schema_drift, symbols, todo_extract 8 Documentation synthesis
designer extract_code_blocks, retrieve_summary, symbols 3 UI-focused, minimal toolset

Configuration

Tool filtering is enabled by default. Customize it in your config:

{
  "tool_filter": {
    "enabled": true,
    "overrides": {
      "coder": ["diff", "imports", "lint", "symbols", "test_runner"],
      "reviewer": ["diff", "secretscan", "sast_scan", "symbols"]
    }
  }
}
Option Type Default Description
enabled boolean true Enable tool filtering globally
overrides Record<string, string[]> {} Per-agent tool whitelist. Empty array denies all tools.

Troubleshooting: Agent Missing a Tool

If an agent reports it doesn't have access to a tool it needs:

  1. Check if the tool is in the agent's default allocation (see table above)
  2. Add a custom override in your config:
{
  "tool_filter": {
    "overrides": {
      "coder": ["diff", "imports", "lint", "symbols", "extract_code_blocks", "retrieve_summary", "test_runner"]
    }
  }
}
  1. To completely disable filtering for all agents:
{
  "tool_filter": {
    "enabled": false
  }
}

Available Tools Reference

The following tools can be assigned to agents via overrides:

Tool Purpose
checkpoint Save/restore git checkpoints
complexity_hotspots Identify high-risk code areas
detect_domains Detect SME domains from text
diff Analyze git diffs and changes
evidence_check Verify task evidence
extract_code_blocks Extract code from markdown
gitingest Ingest external repositories
imports Analyze import relationships
lint Run project linters
pkg_audit Security audit of dependencies
pre_check_batch Parallel pre-checks (lint, secrets, SAST, quality)
retrieve_summary Retrieve summarized tool outputs
schema_drift Detect OpenAPI/schema drift
secretscan Scan for secrets in code
symbols Extract exported symbols
test_runner Run project tests
todo_extract Extract TODO/FIXME comments
phase_complete Enforces phase completion, verifies required agents, logs events, resets state

Recent Changes

v6.13.2 — Pipeline Enforcement

This release adds enforcement-layer tooling and self-healing guardrails:

  • phase_complete tool: Verifies all required agents were dispatched before a phase closes; emits events to .swarm/events.jsonl; configurable enforce/warn policy
  • Summarization loop fix: exempt_tools config prevents retrieve_summary and task outputs from being re-summarized (fixes Issue #8)
  • Same-model adversarial detection: Warns when coder and reviewer share the same model; warn/gate/ignore policy
  • Architect test guardrail (HF-1b): Prevents architect from running full bun test suite — must target specific files one at a time
  • Docs: docs/swarm-briefing.md (LLM pipeline briefing), Task Field Reference in docs/planning.md

v6.13.1 — Consolidation & Defaults Fix

  • consolidateSystemMessages: Merges multiple system messages into one at index 0
  • Test isolation helpers: createIsolatedTestEnv and assertSafeForWrite
  • Coder self-verify guardrail (HF-1): Coder and test_engineer agents blocked from running build/test/lint
  • /swarm template fix: {{arguments}}$ARGUMENTS
  • DEFAULT_MODELS update: claude-sonnet-4-5claude-sonnet-4-20250514, gemini-2.0-flashgemini-2.5-flash

v6.13.0 — Context Efficiency

This release focuses on reducing context usage and improving mode-conditional behavior:

  • Role-Scoped Tool Filtering: Agent tools filtered via AGENT_TOOL_MAP
  • Plan Cursor: Compressed plan summary under 1,500 tokens
  • Mode Detection: DISCOVER/PLAN/EXECUTE/PHASE-WRAP/UNKNOWN modes
  • Tool Output Truncation: diff/symbols outputs truncated with footer
  • ZodError Fixes: Optional current_phase, 'completed' status support

v6.12.0 — Anti-Process-Violation Hardening

This release adds runtime detection hooks to catch and warn about architect workflow violations:

  • Self-coding detection: Warns when the architect writes code directly instead of delegating
  • Partial gate tracking: Detects when QA gates are skipped
  • Self-fix detection: Warns when an agent fixes its own gate failure (should delegate to fresh agent)
  • Batch detection: Catches "implement X and add Y" batching in task requests
  • Zero-delegation detection: Warns when tasks complete without any coder delegation

These hooks are advisory (warnings only) and help maintain workflow discipline during long sessions.


Testing

6,000+ tests. Unit, integration, adversarial, and smoke. Zero additional test dependencies.

bun test

Design Principles

  1. Plan before code. The critic approves the plan before a single line is written.
  2. One task at a time. The coder gets one task and full context. Nothing else.
  3. Review everything immediately. Correctness, security, tests, adversarial tests. Every task.
  4. Different models catch different bugs. The coder's blind spot is the reviewer's strength.
  5. Save everything to disk. Any session, any model, any day, pick up where you left off.
  6. Document failures. Rejections and retries are recorded. After 5 failures, it escalates to you.

Supported Languages

OpenCode Swarm v6.16+ ships with language profiles for 11 languages across three quality tiers. All tools use graceful degradation — if a binary is not on PATH, the tool skips with a soft warning rather than a hard failure.

Language Tier Syntax Build Test Lint Audit SAST
TypeScript / JavaScript 1 ✅ Biome / ESLint ✅ npm audit ✅ Semgrep
Python 1 ✅ pytest ✅ ruff ✅ pip-audit ✅ Semgrep
Rust 1 ✅ cargo test ✅ clippy ✅ cargo audit ✅ Semgrep
Go 1 ✅ go test ✅ golangci-lint ✅ govulncheck ✅ Semgrep
Java 2 ✅ Gradle / Maven ✅ JUnit ✅ Checkstyle ✅ Semgrep
Kotlin 2 ✅ Gradle ✅ JUnit ✅ ktlint 🔶 Semgrep beta
C# / .NET 2 ✅ dotnet build ✅ dotnet test ✅ dotnet format ✅ dotnet list ✅ Semgrep
C / C++ 2 ✅ cmake / make ✅ ctest ✅ cppcheck 🔶 Semgrep exp.
Swift 2 ✅ swift build ✅ swift test ✅ swiftlint 🔶 Semgrep exp.
Dart / Flutter 3 ✅ dart pub ✅ dart test ✅ dart analyze ✅ dart pub outdated
Ruby 3 ✅ RSpec / minitest ✅ RuboCop ✅ bundle-audit 🔶 Semgrep exp.

Tier definitions:

  • Tier 1 — Full pipeline: all tools integrated and tested end-to-end.
  • Tier 2 — Strong coverage: most tools integrated; some optional (audit, SAST).
  • Tier 3 — Basic coverage: core tools integrated; advanced tooling limited.

All binaries are optional. Missing tools produce a soft warning and skip — the pipeline never hard-fails on a missing linter or auditor.


Roadmap

See CHANGELOG.md for shipped features.

Upcoming: v6.14 focuses on further context optimization and agent coordination improvements.


Documentation


License

MIT


Stop hoping your agents figure it out. Start shipping code that actually works.

About

Architect-centric agentic swarm plugin for OpenCode. Hub-and-spoke orchestration with SME consultation, code generation, and QA review.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • TypeScript 99.7%
  • JavaScript 0.3%