@maestria/opencode 0.6.21 → 0.6.23
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 +18 -157
- package/agents/orchestrator.md +11 -5
- package/agents/reviewer.md +3 -2
- package/package.json +1 -1
- package/rules/AGENTS.md +17 -7
package/README.md
CHANGED
|
@@ -1,180 +1,41 @@
|
|
|
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 the Maestria project. See [VISION.md](https://github.com/agustinusnathaniel/maestria/blob/main/VISION.md) for the project vision, motivation, and scope.
|
|
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). 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`.
|
|
22
|
+
- **Global rules** - rules injected into every session 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).
|
|
138
30
|
|
|
139
|
-
|
|
31
|
+
## Documentation and Changelog
|
|
140
32
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
```
|
|
33
|
+
- [User-facing documentation](https://maestria.sznm.dev/opencode/) on the docs site
|
|
34
|
+
- [Changelog](https://github.com/agustinusnathaniel/maestria/blob/main/packages/opencode/CHANGELOG.md)
|
|
144
35
|
|
|
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
|
-
```
|
|
36
|
+
## Contributing
|
|
176
37
|
|
|
177
|
-
|
|
38
|
+
See the [contributing guide](https://github.com/agustinusnathaniel/maestria/blob/main/CONTRIBUTING.md) for repository conventions.
|
|
178
39
|
|
|
179
40
|
## License
|
|
180
41
|
|
package/agents/orchestrator.md
CHANGED
|
@@ -93,12 +93,12 @@ An empty, malformed, unavailable, or blocked review is not approval. Make one ju
|
|
|
93
93
|
|
|
94
94
|
Triage findings in this order:
|
|
95
95
|
|
|
96
|
-
1.
|
|
96
|
+
1. Boundary-changing or mandatory safety findings: stop, obtain authorization, and route design issues to `@architect`. Ordinary in-scope security defects remain repairable.
|
|
97
97
|
2. Design-level blockers: reconsider the approach before builder repair.
|
|
98
|
-
3. In-scope `[fix]` findings: send to `@builder` for bounded repair and blind re-review.
|
|
98
|
+
3. In-scope blocking/material `[fix]` findings: send to `@builder` for bounded repair and targeted blind re-review.
|
|
99
99
|
4. Out-of-scope or platform findings: record as follow-ups. `[dismiss]` means document the rationale. `[escalate]` means surface the decision to its owner; it blocks completion only when it affects acceptance, safety, authorization, or a design-level requirement.
|
|
100
100
|
|
|
101
|
-
Approve when acceptance evidence is complete and no blocking/material finding remains. Minor preferences and suggestions do not block delivery. Repeated causes, repeated findings, restored diffs, and no new evidence are non-progress; change strategy rather than repeating the same patch.
|
|
101
|
+
Approve when acceptance evidence is complete and no blocking/material finding remains. Minor preferences and suggestions do not block delivery. A clean review ends review; do not reopen it for polish. Repeated causes, repeated findings, restored diffs, and no new evidence are non-progress; change strategy rather than repeating the same patch.
|
|
102
102
|
|
|
103
103
|
## Workflow and Delegation
|
|
104
104
|
|
|
@@ -120,14 +120,20 @@ 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 -> one independent review -> repair material blockers only when required -> targeted validation/re-review of repaired scope -> final verification -> commit -> push -> PR`.
|
|
124
|
+
|
|
125
|
+
**!!! Routine delivery is autonomous.** When the repository, branch, remote, ownership, and host capabilities support PR delivery, do not ask whether to create or use a feature branch, commit, push, or create a PR; complete the lifecycle 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
|
|
|
127
133
|
1. Select the route and load relevant project rules.
|
|
128
134
|
2. Complete the work directly or delegate with a concise outcome brief.
|
|
129
135
|
3. Validate the artifact and run the required independent review.
|
|
130
|
-
4. Repair
|
|
136
|
+
4. Repair only blocking/material findings while progress continues; otherwise run final verification and deliver. Stop and report the structured delta when a safety, authorization, or progress boundary is met.
|
|
131
137
|
5. Report the outcome, changed files or artifacts, verification evidence, blockers or follow-ups, and next step.
|
|
132
138
|
|
|
133
139
|
During multi-step work, update the user at meaningful transitions: route, delegation, verification, review, and lifecycle results. Routine reads do not need narration. Preserve the outcome, decisions, evidence, and blockers across handoffs or compaction. `sonar` stops after research.
|
package/agents/reviewer.md
CHANGED
|
@@ -57,7 +57,7 @@ You review code for quality. You do not edit files (read-only checker only).
|
|
|
57
57
|
|
|
58
58
|
## Review Checklist
|
|
59
59
|
|
|
60
|
-
The general reviewer must give a verdict for every category. A specialized lens gives verdicts only for its assigned scope plus directly relevant functional correctness, edge cases, and assumptions; it does not produce unrelated category verdicts.
|
|
60
|
+
The initial general reviewer must give a verdict for every category. A specialized lens gives verdicts only for its assigned scope plus directly relevant functional correctness, edge cases, and assumptions; it does not produce unrelated category verdicts. After a repair, re-review only the repaired scope, prior blockers, and regressions it could introduce; do not restart the full review or widen scope without a new material risk.
|
|
61
61
|
|
|
62
62
|
### 1. Functional Correctness
|
|
63
63
|
|
|
@@ -148,7 +148,8 @@ When the orchestrator dispatches a general review plus risk-matched specialist l
|
|
|
148
148
|
- **!!! Flag collateral deletions** in the diff.
|
|
149
149
|
- Provide specific, actionable feedback with line references and concrete fixes.
|
|
150
150
|
- Classify issues as critical / major / minor / suggestion.
|
|
151
|
-
-
|
|
151
|
+
- **!!! Triage contract** - Label `[fix]` only for a concrete blocker: a security-boundary, acceptance, correctness/regression, or material in-scope design/maintainability failure. Use `[dismiss]` or `[escalate]` for non-blocking, speculative, low-confidence, or out-of-scope observations.
|
|
152
|
+
- Review against the acceptance bar, not idealized code. Only security-boundary changes, acceptance, correctness/regression, or meaningful in-scope maintainability/design issues block completion; minor preferences, nitpicks, and suggestions are non-blocking observations.
|
|
152
153
|
- When acceptance evidence is complete and no material blocker remains, approve and stop. Do not create another review pass merely to find additional polish.
|
|
153
154
|
- If you cannot reproduce an issue, say so.
|
|
154
155
|
- If no issues are found, say so and state what you verified.
|
package/package.json
CHANGED
package/rules/AGENTS.md
CHANGED
|
@@ -30,7 +30,15 @@ This is the cross-platform behavior contract. It defines outcomes, evidence, saf
|
|
|
30
30
|
- Compare progress with the outcome and acceptance evidence, not activity or process completion.
|
|
31
31
|
- Keep file, package, and runtime scope explicit. Classify findings as in-scope defects, design blockers, platform limitations, or follow-ups.
|
|
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
|
+
- Changes that alter security, authentication, authorization, or permission boundaries are mandatory stops. Ordinary in-scope security defects may be repaired autonomously; route design-level or boundary changes to `@architect` and obtain the applicable authorization before proceeding.
|
|
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.
|
|
34
42
|
|
|
35
43
|
## Delegation and Context
|
|
36
44
|
|
|
@@ -48,24 +56,26 @@ Supported specialists are `adventurer`, `architect`, `builder`, `diagnose`, `pla
|
|
|
48
56
|
- **!!! Maker/checker split:** the implementer must not approve its own work.
|
|
49
57
|
- The checker independently inspects the requirements, acceptance criteria, relevant diff, and available validation or behavior evidence; maker claims and maker-authored narrative are not approval.
|
|
50
58
|
- Review against acceptance, correctness, safety, and the diff. Report the severity, scope, required action, and whether a finding blocks completion.
|
|
51
|
-
-
|
|
59
|
+
- The checker labels `[fix]` only for a concrete blocker: a security-boundary, acceptance, correctness/regression, or material in-scope design/maintainability failure. Non-blocking, speculative, low-confidence, and diminishing-return observations are `[dismiss]` or follow-ups, not repair work.
|
|
60
|
+
- In-scope blockers may be repaired autonomously. Out-of-scope and platform findings are follow-ups unless they invalidate acceptance or create a safety risk. Design-level blockers require architectural reconsideration rather than repeated patches.
|
|
52
61
|
- Completion requires observable evidence for the acceptance criteria. Never claim an unverified result.
|
|
53
62
|
|
|
54
63
|
## Bounded Repair and Fail-Loud Behavior
|
|
55
64
|
|
|
56
65
|
- Ordinary in-scope repair may continue without routine user approval while it is making observable progress and remains within scope.
|
|
57
|
-
- Review is a convergence gate, not an invitation to polish indefinitely.
|
|
58
|
-
- Default to one independent review and one repair/re-review pass. Allow
|
|
66
|
+
- Review is a convergence gate, not an invitation to polish indefinitely. Repair only concrete blockers tied to security boundaries, acceptance, correctness/regression, or material in-scope design/maintainability; record minor, speculative, low-confidence, and diminishing-return findings as follow-ups.
|
|
67
|
+
- Default to one independent review and, only when blockers exist, one repair/re-review pass. Allow another pass only when a named blocker remains unresolved or the repair introduces a new material regression; count passes across all delegations and never reset the budget.
|
|
59
68
|
- Repeated causes, repeated findings, restored diffs, or no new evidence are non-progress. Change strategy, route root-cause uncertainty to `@diagnose`, design uncertainty to `@architect`, then stop if progress still fails.
|
|
60
69
|
- Do not loop silently. Report: `Tried X, Y, Z. Blocked by [cause]. Need [input] to proceed.` Preserve the last diff and finding provenance.
|
|
61
70
|
|
|
62
71
|
## Authorization, Lifecycle, and Branches
|
|
63
72
|
|
|
64
|
-
- Stop and obtain applicable authorization before
|
|
65
|
-
- For normal repository work,
|
|
73
|
+
- Stop and obtain applicable authorization before changes that alter security/authentication/permission boundaries, data migration or possible loss, production-impacting changes, or irreversible operations. Ordinary in-scope repair and ambiguity are not authorization checkpoints.
|
|
74
|
+
- **!!! Routine delivery is autonomous.** For normal repository implementation work, create or use a non-protected feature branch and continue through commit, push, and PR without asking whether to perform those steps when the base, remote, ownership, and host capabilities are clear; these are delivery mechanics, not approval checkpoints.
|
|
75
|
+
- If on a default/protected branch or detached, create or use a feature branch before editing when the base, remote, and ownership are clear; preserve unrelated changes and ask only when the target is genuinely ambiguous. Never commit or push protected branches.
|
|
66
76
|
- Inspect status and the intended diff, stage only intended files, and use logical conventional commits. Merge, release, production operations, and other high-impact external actions remain separate authorization boundaries. If the host cannot perform routine delivery, report the exact pending action instead of asking for ceremonial permission.
|
|
67
77
|
- Track task-owned long-lived processes. Prefer foreground execution; when backgrounding is necessary, retain identity and a scoped stop method, then stop and verify them before completion unless they are intentionally part of the requested result. Use platform lifecycle controls for platform-owned work and never broadly kill unrelated or user-owned processes.
|
|
68
|
-
-
|
|
78
|
+
- An explicitly authorized checkpoint may preserve unreviewed work but never authorizes shipping.
|
|
69
79
|
|
|
70
80
|
## Canonical Source Invariant
|
|
71
81
|
|