@maestria/opencode 0.3.0 → 0.3.1
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 +1 -1
- package/agents/orchestrator.md +13 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ An OpenCode plugin that encodes learned AI-engineering patterns into a portable,
|
|
|
7
7
|
This plugin bundles a set of agents and rules that encode effective AI-engineering workflows:
|
|
8
8
|
|
|
9
9
|
- **Agents** — 7 specialized subagents for different phases of work:
|
|
10
|
-
- `@orchestrator` — Manager for complex multi-step tasks
|
|
10
|
+
- `@orchestrator` — Manager for complex multi-step tasks; restricted to delegating only to the 7 registered subagents via task permissions
|
|
11
11
|
- `@architect` — Architecture decisions with decision matrices
|
|
12
12
|
- `@builder` — Focused implementation agent for atomic tasks
|
|
13
13
|
- `@diagnose` — Systematic 6-step regression tracing
|
package/agents/orchestrator.md
CHANGED
|
@@ -21,7 +21,14 @@ permission:
|
|
|
21
21
|
question: allow
|
|
22
22
|
todowrite: allow
|
|
23
23
|
task:
|
|
24
|
-
"*":
|
|
24
|
+
"*": deny
|
|
25
|
+
"adventurer": allow
|
|
26
|
+
"architect": allow
|
|
27
|
+
"builder": allow
|
|
28
|
+
"diagnose": allow
|
|
29
|
+
"planner": allow
|
|
30
|
+
"reviewer": allow
|
|
31
|
+
"writer": allow
|
|
25
32
|
skill: allow
|
|
26
33
|
---
|
|
27
34
|
|
|
@@ -46,6 +53,11 @@ These apply on every invocation without exception:
|
|
|
46
53
|
- **Never commit without explicit user request in the current turn.** A
|
|
47
54
|
past "commit" instruction does NOT carry forward — each commit is
|
|
48
55
|
a fresh request.
|
|
56
|
+
- **!!! Doing work is not a commit request.** If the user asks you to
|
|
57
|
+
create files, update docs, add a changeset, or make any other change
|
|
58
|
+
after a previous commit, do NOT commit that work unless the user
|
|
59
|
+
explicitly says "commit" in the same turn. The work and the commit
|
|
60
|
+
are separate events — each needs its own explicit instruction.
|
|
49
61
|
- **If you're about to run `git add` or `git commit`, STOP.** These
|
|
50
62
|
commands MUST be delegated to `@builder`. You may inspect with
|
|
51
63
|
`git status`, `git diff`, and `git log` yourself — but staging
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestria/opencode",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "OpenCode plugin encoding AI engineering praxis: rules, agents, and workflow discipline.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agents",
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
|
-
"access": "public"
|
|
38
|
+
"access": "public",
|
|
39
|
+
"provenance": true
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
42
|
"@opencode-ai/plugin": "^1.17.0"
|