@maestria/opencode 0.6.21 → 0.6.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -157
- package/agents/orchestrator.md +7 -1
- package/package.json +1 -1
- package/rules/AGENTS.md +8 -0
package/README.md
CHANGED
|
@@ -1,180 +1,42 @@
|
|
|
1
1
|
# @maestria/opencode
|
|
2
2
|
|
|
3
|
-
An OpenCode plugin that encodes
|
|
3
|
+
An OpenCode plugin that encodes Maestria's AI-engineering methodology as agents, rules, and workflows - a harness that makes model output consistent and reliable (`Agent = Model + Harness`).
|
|
4
4
|
|
|
5
|
-
> This package is part of Maestria. See [VISION.md](
|
|
6
|
-
|
|
7
|
-
## Motivation
|
|
8
|
-
|
|
9
|
-
Raw LLMs are powerful but unreliable for production engineering work. They guess instead of verifying, implement instead of delegating, and produce plausible-sounding results that are subtly wrong. OpenCode's built-in agents give you a foundation, but they don't encode the methodology, discipline, and guardrails that turn a model into a reliable engineering partner.
|
|
10
|
-
|
|
11
|
-
This plugin exists to close that gap. It packages the harness - the rules, agents, and workflows - that makes AI engineering consistent and trustworthy. The principle is simple:
|
|
12
|
-
|
|
13
|
-
**Agent = Model + Harness**
|
|
14
|
-
|
|
15
|
-
The model provides capability. The harness provides reliability. Most agent failures are harness failures, not model failures.
|
|
16
|
-
|
|
17
|
-
The patterns in this plugin were extracted from months of daily AI-assisted engineering work. They represent configurations and workflows that survived repeated use - not theoretical best practices, but scar tissue from real failures. The orchestrator's delegation rules, the maker/checker split, the iteration limits, the `!!!` convention for non-negotiable rules - all of these came from specific failures that happened more than once.
|
|
18
|
-
|
|
19
|
-
This is not just another agent pack. Most agent packs focus on capability - giving agents more tools, more context, more autonomy. This plugin focuses on discipline: giving agents clear boundaries, explicit methodology, and structured handoffs. Capability is the default. Discipline is the differentiator.
|
|
20
|
-
|
|
21
|
-
To that end, the plugin is built on five design principles:
|
|
22
|
-
|
|
23
|
-
## Goals
|
|
24
|
-
|
|
25
|
-
- **Interoperability** - The methodology is harness-agnostic. Works with any LLM provider that OpenCode supports. No vendor lock-in, no model-specific prompt tricks.
|
|
26
|
-
- **Discipline** - Maker/checker split prevents self-approval. Iteration limits prevent infinite loops. Delegation chains prevent scope creep. These are first-class concepts, not afterthoughts.
|
|
27
|
-
- **Transparency** - Every agent is a markdown file with YAML frontmatter. Readable, editable, versionable. No TypeScript abstraction layer between you and the prompts. What you see is what the agent runs.
|
|
28
|
-
- **Evolvability** - Versioned releases encode new patterns as they're proven. The plugin improves by curation - patterns that survive repeated use get promoted; patterns that don't, don't.
|
|
29
|
-
- **Composability** - Agents are designed as pipeline stages. Adventurer discovers context, architect evaluates trade-offs, planner structures the work, builder implements, reviewer validates. The orchestrator chains them together. Each step produces a structured handoff for the next.
|
|
30
|
-
|
|
31
|
-
## Non-Goals
|
|
32
|
-
|
|
33
|
-
- **Does NOT bundle skills** - Skills (methodology packages for specific domains) are installed separately via the skills CLI. The plugin prescribes which skills to load and when, but does not include them.
|
|
34
|
-
- **Does NOT replace OpenCode's built-in agents** - `explore` and `general` remain available for unstructured work. The plugin's 8 subagents are specialists for structured workflows on top of that foundation.
|
|
35
|
-
- **Does NOT auto-extract patterns from sessions** - All rules and agent prompts are manually curated. No automated pattern extraction, no session mining, no implicit learning.
|
|
36
|
-
- **Does NOT require or provide a specific LLM provider** - Model selection is OpenCode configuration. No provider lock-in, no subscription or API key required. MIT-licensed, open source.
|
|
37
|
-
- **Does NOT work outside OpenCode** - This is an OpenCode plugin. Kimi Code and Hermes adaptations are in development as separate packages under the `@maestria` scope, each independently versioned and maintained.
|
|
38
|
-
- **Does NOT include telemetry, usage tracking, or external data collection** - No data leaves your machine. No analytics. No crash reporting. The plugin has zero network calls of its own.
|
|
39
|
-
- **Does NOT enforce rules programmatically** - Rules are guidance, not gates. The `!!!` convention signals non-negotiable rules, but the agent can still violate them. Enforcement happens through permissions and review, not runtime checks.
|
|
40
|
-
|
|
41
|
-
## What It Does
|
|
42
|
-
|
|
43
|
-
This plugin bundles a set of agents and rules that encode effective AI-engineering workflows:
|
|
44
|
-
|
|
45
|
-
- **Agents** - 8 specialized subagents for different phases of work:
|
|
46
|
-
- `@orchestrator` - Manager for complex multi-step tasks; restricted to delegating only to the 7 registered subagents via task permissions
|
|
47
|
-
- `@adventurer` - Codebase reconnaissance and deep code understanding before implementation
|
|
48
|
-
- `@architect` - Architecture decisions with decision matrices
|
|
49
|
-
- `@builder` - Focused implementation agent for atomic tasks
|
|
50
|
-
- `@diagnose` - Systematic 6-step regression tracing
|
|
51
|
-
- `@planner` - Create detailed implementation plans with phased milestones
|
|
52
|
-
- `@reviewer` - Code review with quality gates
|
|
53
|
-
- `@writer` - Documentation following structured patterns
|
|
54
|
-
|
|
55
|
-
- **Rules** - Global directives injected into every session's system prompt
|
|
5
|
+
> This package is part of Maestria. See [VISION.md](https://github.com/agustinusnathaniel/maestria/blob/main/VISION.md) for the project vision, motivation, and scope. The agents and rules are **generated** from the canonical directives in `packages/core/agent-directives/` by the [sync pipeline](https://github.com/agustinusnathaniel/maestria/blob/main/CONTRIBUTING.md#3-the-sync-pipeline-core-concept).
|
|
56
6
|
|
|
57
7
|
## Installation
|
|
58
8
|
|
|
59
|
-
### Option 1: Via CLI (recommended)
|
|
60
|
-
|
|
61
|
-
Install globally (available in all projects):
|
|
62
|
-
|
|
63
9
|
```bash
|
|
10
|
+
# Global install (recommended)
|
|
64
11
|
opencode plugin @maestria/opencode@latest -g
|
|
65
|
-
```
|
|
66
12
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
```bash
|
|
13
|
+
# Project-level install
|
|
70
14
|
opencode plugin @maestria/opencode@latest
|
|
71
15
|
```
|
|
72
16
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
Add to your OpenCode config file:
|
|
76
|
-
|
|
77
|
-
- **Global:** `~/.config/opencode/opencode.jsonc`
|
|
78
|
-
- **Project-level:** `.opencode/opencode.jsonc` (in your project root)
|
|
79
|
-
|
|
80
|
-
```jsonc
|
|
81
|
-
{
|
|
82
|
-
"plugin": ["@maestria/opencode@latest"],
|
|
83
|
-
}
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
To pin a specific version, use `"@maestria/opencode@0.3.3"` instead of `"@maestria/opencode@latest"`. Restart OpenCode after adding the plugin.
|
|
87
|
-
|
|
88
|
-
## How It Works
|
|
89
|
-
|
|
90
|
-
1. **Plugin loads** - OpenCode installs `@maestria/opencode` from npm
|
|
91
|
-
2. **Config hook** - The plugin reads bundled agent markdown files, parses their frontmatter, and registers them programmatically with OpenCode
|
|
92
|
-
3. **Rules injected** - `system.transform` hook appends rules to every session
|
|
93
|
-
4. **Agents available** - All 8 agents are available as subagents via `@` mention
|
|
94
|
-
5. **State preserved** - `session.compacting` hook preserves task status across compaction events
|
|
95
|
-
|
|
96
|
-
### Design Philosophy
|
|
97
|
-
|
|
98
|
-
This plugin is built on the **Harness Engineering** principle: `Agent = Model + Harness`. The harness is what turns a raw LLM into a reliable coding agent - the model is just one component.
|
|
99
|
-
|
|
100
|
-
The 6 harness components map directly to plugin features:
|
|
101
|
-
|
|
102
|
-
| Component | Plugin Mapping |
|
|
103
|
-
| ----------------- | --------------------------------------------- |
|
|
104
|
-
| **Instructions** | `rules/AGENTS.md` injected into every session |
|
|
105
|
-
| **Tools** | Skill prescription system + MCP integration |
|
|
106
|
-
| **Sandboxes** | `permission` frontmatter on every agent |
|
|
107
|
-
| **Orchestration** | `mode: all/subagent` + `task()` delegation |
|
|
108
|
-
| **Guardrails** | `edit: deny`, `bash: ask`, iteration limits |
|
|
109
|
-
| **Observability** | Session compaction hooks, structured handoffs |
|
|
110
|
-
|
|
111
|
-
Most agent failures are configuration failures, not model failures. The plugin's agents are designed with this principle - precise rules, explicit boundaries, and clear delegation chains over raw capability.
|
|
112
|
-
|
|
113
|
-
## Updating
|
|
114
|
-
|
|
115
|
-
OpenCode does not auto-update plugins. Packages are cached locally at `~/.cache/opencode/packages/<name>@<version>/` - the npm registry is not consulted if the package is already cached. To update, re-run the install command with the same scope as the original install:
|
|
116
|
-
|
|
117
|
-
```bash
|
|
118
|
-
# If installed globally
|
|
119
|
-
opencode plugin @maestria/opencode@latest -g --force
|
|
120
|
-
|
|
121
|
-
# If installed at project level
|
|
122
|
-
opencode plugin @maestria/opencode@latest --force
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
Use `--force` to replace an existing config entry. To force a fresh install from npm (bypassing the local cache), clear the cache first:
|
|
17
|
+
OpenCode does not auto-update plugins; re-run the install command with `--force` to update. To uninstall, remove the `@maestria/opencode` entry from the `plugin` array in `~/.config/opencode/opencode.jsonc` (global) or `.opencode/opencode.jsonc` (project), then optionally delete the cached package under `~/.cache/opencode/packages/`. Alternatively, use the [maestria CLI](https://maestria.sznm.dev/cli/) to manage installation across all platforms.
|
|
126
18
|
|
|
127
|
-
|
|
19
|
+
## What It Provides
|
|
128
20
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
21
|
+
- **8 agents** - `@orchestrator` (delegates to the 7 specialists) plus `@adventurer`, `@architect`, `@builder`, `@diagnose`, `@planner`, `@reviewer`, and `@writer`, each a readable, editable markdown file with YAML frontmatter.
|
|
22
|
+
- **Global rules** - a rules file injected into every session (`rules/AGENTS.md`) encoding the universal floors: evidence, safety, delegation, review, and bounded repair.
|
|
23
|
+
- **Zero telemetry** - no data leaves your machine; the plugin makes no network calls of its own.
|
|
132
24
|
|
|
133
|
-
|
|
25
|
+
## Support / Platform Notes
|
|
134
26
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
27
|
+
- OpenCode-specific; Kimi Code, Hermes, Cursor, and other adaptations ship as separate `@maestria` packages.
|
|
28
|
+
- Does not bundle skills; domain skills are installed separately via the skills CLI.
|
|
29
|
+
- Rules are advisory prompt guidance, not a sandbox. The only structural enforcement is OpenCode's `permission` frontmatter (for example, the orchestrator cannot edit).
|
|
30
|
+
- The generated agents are projections of the canonical core directives. To change behavior, edit `packages/core/agent-directives/` and re-run the sync pipeline - never edit the generated files under `agents/` directly.
|
|
138
31
|
|
|
139
|
-
|
|
32
|
+
## Documentation and Changelog
|
|
140
33
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
```
|
|
34
|
+
- [User-facing documentation](https://maestria.sznm.dev/opencode/) on the docs site
|
|
35
|
+
- [Changelog](https://github.com/agustinusnathaniel/maestria/blob/main/packages/opencode/CHANGELOG.md)
|
|
144
36
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
> **Tip:** Run `opencode debug paths` to see the cache directory resolved for your platform.
|
|
148
|
-
|
|
149
|
-
To pin a specific version, use `@<version>` instead of `@latest`:
|
|
150
|
-
|
|
151
|
-
```bash
|
|
152
|
-
opencode plugin @maestria/opencode@0.3.3
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
## Uninstalling
|
|
156
|
-
|
|
157
|
-
There is no CLI command to remove a plugin. To uninstall, edit your OpenCode config file and remove the entry from the `plugin` array:
|
|
158
|
-
|
|
159
|
-
- **Global:** `~/.config/opencode/opencode.jsonc`
|
|
160
|
-
- **Project-level:** `.opencode/opencode.jsonc` (in your project root)
|
|
161
|
-
|
|
162
|
-
```jsonc
|
|
163
|
-
{
|
|
164
|
-
"plugin": [
|
|
165
|
-
// Remove or comment out the line below:
|
|
166
|
-
// "@maestria/opencode@latest",
|
|
167
|
-
],
|
|
168
|
-
}
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
You can also optionally delete the cached package:
|
|
172
|
-
|
|
173
|
-
```bash
|
|
174
|
-
rm -rf ~/.cache/opencode/packages/@maestria/opencode*
|
|
175
|
-
```
|
|
37
|
+
## Development
|
|
176
38
|
|
|
177
|
-
|
|
39
|
+
See the [contributing guide](https://github.com/agustinusnathaniel/maestria/blob/main/CONTRIBUTING.md) for repository conventions.
|
|
178
40
|
|
|
179
41
|
## License
|
|
180
42
|
|
package/agents/orchestrator.md
CHANGED
|
@@ -120,7 +120,13 @@ Modes are case-insensitive and per-turn unless the platform documents another li
|
|
|
120
120
|
|
|
121
121
|
## Commit and Session Flow
|
|
122
122
|
|
|
123
|
-
For
|
|
123
|
+
For implementation work, own the delivery path: `inspect -> plan -> implement -> validate -> review -> repair -> commit -> push -> PR`.
|
|
124
|
+
|
|
125
|
+
When the repository, branch, remote, ownership, and host capabilities support PR delivery, complete it without ceremonial approval. Do not stop at a local diff, commit, pushed branch, or `PR pending`. Merge, release, and production actions remain separate.
|
|
126
|
+
|
|
127
|
+
The parent session owns continuation until the selected implementation outcome reaches its terminal artifact. Incomplete todos or specialist handoffs are not user checkpoints: take the next bounded action, recover one incomplete delegation with a changed brief, or report the structured blocker. Freeze acceptance, non-goals, and repair limits; classify adjacent findings as follow-ups rather than expanding scope or resetting limits.
|
|
128
|
+
|
|
129
|
+
Research-only, planning-only, explicitly read-only, `sonar`, and host-blocked routes terminate at their requested artifact or exact blocker. Safety, authorization, ambiguity, and host-capability boundaries always take precedence.
|
|
124
130
|
|
|
125
131
|
An explicitly authorized checkpoint may preserve unreviewed work but never authorizes shipping. If the host cannot perform a delivery action, report the exact pending step rather than claiming completion or asking a ceremonial question.
|
|
126
132
|
|
package/package.json
CHANGED
package/rules/AGENTS.md
CHANGED
|
@@ -32,6 +32,14 @@ This is the cross-platform behavior contract. It defines outcomes, evidence, saf
|
|
|
32
32
|
- Adjacent findings do not expand the current task automatically. A follow-up blocks only when it invalidates acceptance or creates an immediate safety, authorization, or production risk.
|
|
33
33
|
- Security, authentication, authorization, and permission findings are mandatory stops. Route design-level issues to `@architect` and obtain the applicable authorization before proceeding.
|
|
34
34
|
|
|
35
|
+
## Session Continuation and Delivery
|
|
36
|
+
|
|
37
|
+
- **!!! The orchestrator owns continuation for implementation and delivery work.** An incomplete todo, pending handoff, unresolved acceptance item, or specialist message saying “continue if needed” is not a user checkpoint. Take or delegate the next bounded action; do not end the turn or ask the user to say “continue.” Research-only, planning-only, explicitly read-only, and host-blocked work terminates at its requested artifact or exact blocker.
|
|
38
|
+
- A specialist's read-only or no-edit result ends that delegation, not the parent work unit. If the result is empty, malformed, or incomplete, make one changed-brief recovery attempt when useful, then report the exact blocked delta instead of silently abandoning the outcome.
|
|
39
|
+
- Freeze the outcome, acceptance criteria, non-goals, and review budget at the start of the work unit. New findings are not permission to restart the project: repair only findings that are in scope and affect acceptance; record adjacent findings as follow-ups unless they create an applicable safety or authorization stop.
|
|
40
|
+
- Do not reset a review or repair budget by splitting the same outcome into more delegations, changing specialist names, or relabelling the finding. A new scope requires a new outcome and acceptance criteria.
|
|
41
|
+
- For implementation work, continue through validation and the project's normal delivery artifact. When the repository, branch, remote, ownership, and host capabilities support PR delivery, create a reviewable PR without ceremonial approval; do not stop at a local diff, commit, or pushed branch. Research-only, planning-only, explicitly read-only, and host-blocked work terminates at its requested artifact or exact blocker. Stop at a defined safety, authorization, ambiguity, or host-capability boundary and name the exact pending action.
|
|
42
|
+
|
|
35
43
|
## Delegation and Context
|
|
36
44
|
|
|
37
45
|
Supported specialists are `adventurer`, `architect`, `builder`, `diagnose`, `planner`, `reviewer`, and `writer`.
|