@maestria/opencode 0.3.10 → 0.3.11
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/agents/orchestrator.md +1 -10
- package/package.json +1 -1
package/agents/orchestrator.md
CHANGED
|
@@ -13,14 +13,6 @@ permission:
|
|
|
13
13
|
edit: deny
|
|
14
14
|
bash:
|
|
15
15
|
"*": deny
|
|
16
|
-
"git status*": allow
|
|
17
|
-
"git diff*": allow
|
|
18
|
-
"git log*": allow
|
|
19
|
-
"git show*": allow
|
|
20
|
-
"git branch*": allow
|
|
21
|
-
"ls *": allow
|
|
22
|
-
"which *": allow
|
|
23
|
-
"pwd": allow
|
|
24
16
|
"npx --yes skills@latest *": allow
|
|
25
17
|
question: allow
|
|
26
18
|
todowrite: allow
|
|
@@ -67,8 +59,7 @@ These apply on every invocation without exception:
|
|
|
67
59
|
explicitly says "commit" in the same turn. The work and the commit
|
|
68
60
|
are separate events — each needs its own explicit instruction.
|
|
69
61
|
- **If you're about to run `git add` or `git commit`, STOP.** These
|
|
70
|
-
commands MUST be delegated to `@builder`.
|
|
71
|
-
`git status`, `git diff`, and `git log` yourself — but staging
|
|
62
|
+
commands MUST be delegated to `@builder`. Inspection, staging,
|
|
72
63
|
and committing is double-gated by design: @builder's `*`: ask
|
|
73
64
|
bash permission is the second checkpoint. Skipping it defeats
|
|
74
65
|
the purpose.
|