opencode-dispatcher 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 +2 -0
- package/package.json +1 -1
- package/workflow/agents/shipper.md +10 -1
- package/workflow/agents/task-planner.md +1 -5
package/README.md
CHANGED
|
@@ -526,6 +526,8 @@ Use Dispatcher when the structure is worth it. Use the fast path or plain OpenCo
|
|
|
526
526
|
|
|
527
527
|
## Version History
|
|
528
528
|
|
|
529
|
+
* **v0.3.1**
|
|
530
|
+
* **Shipper Inspection & Release-Boundary Fixes**: Tightened shipper bash permission whitelist to eliminate pre-commit inspection prompts and fixed release-boundary routing so the shipper only commits and pushes explicitly intended changes.
|
|
529
531
|
* **v0.3.0**
|
|
530
532
|
* **Model-Config Groups**: Replaced per-agent model selection with two-tier group-based workflow (MED/LOW), excluding orchestrator and task-planner.
|
|
531
533
|
|
package/package.json
CHANGED
|
@@ -24,6 +24,14 @@ permission:
|
|
|
24
24
|
"ls *": allow
|
|
25
25
|
"npm run check": allow
|
|
26
26
|
"npm run check *": allow
|
|
27
|
+
"grep *": allow
|
|
28
|
+
"head *": allow
|
|
29
|
+
"tail *": allow
|
|
30
|
+
"cat *": allow
|
|
31
|
+
"wc *": allow
|
|
32
|
+
"file *": allow
|
|
33
|
+
"git show*": allow
|
|
34
|
+
"node -p *": allow
|
|
27
35
|
"git reset*": deny
|
|
28
36
|
"git rebase*": deny
|
|
29
37
|
"git clean*": deny
|
|
@@ -55,6 +63,7 @@ Hard boundaries:
|
|
|
55
63
|
- Only push when orchestrator/user explicitly requests a push.
|
|
56
64
|
- Do not amend, force-push, reset, rebase, clean, tag, or create PRs unless explicitly requested.
|
|
57
65
|
- Do not prepare changes; only commit or push existing intended changes.
|
|
66
|
+
- Version bump preparation, README.md edits, and changelog updates are out of scope for the shipper agent and must be prepared by other agents (implementer, executor, documentation) before shipper is invoked.
|
|
58
67
|
- If branch/upstream ambiguity exists, report back to orchestrator instead of guessing.
|
|
59
68
|
|
|
60
69
|
Required pre-commit inspection:
|
|
@@ -66,7 +75,7 @@ Required pre-commit inspection:
|
|
|
66
75
|
- If multiple task artifact folders exist, include only the folders that match the current commit scope unless the user explicitly asks to commit everything.
|
|
67
76
|
- Do not use `git commit -a` or `git commit -am`; explicitly stage intended files before committing.
|
|
68
77
|
- Never include secrets, credentials, generated artifacts, or unrelated changes.
|
|
69
|
-
- Run inspection commands
|
|
78
|
+
- Run inspection commands individually; do not combine allowed commands with shell operators like |, &&, ||, or ;.
|
|
70
79
|
- If the intended file set is unclear, stop and report the ambiguity to orchestrator.
|
|
71
80
|
|
|
72
81
|
Commit message rules:
|
|
@@ -29,11 +29,7 @@ Single-unit workflow:
|
|
|
29
29
|
- Make real architectural decisions based on conventions: which patterns to use, where new files go, what to change in existing files.
|
|
30
30
|
- Add decision notes under `.ai/decisions/` only when orchestrator explicitly requests task-related decision documentation.
|
|
31
31
|
- Do not edit implementation files, project docs outside `.ai/`, or source code.
|
|
32
|
-
- Write an `## Execution` section in every task spec. The format is a level-2 heading followed by a bullet list of agent names in execution order. Valid agent names: `test-writer`, `implementer`, `documentation`.
|
|
33
|
-
- Feature/fix with testable acceptance criteria → `test-writer`, then `implementer`.
|
|
34
|
-
- Feature/fix with only inspectable acceptance criteria (no tests to write) → `implementer` only.
|
|
35
|
-
- Documentation task → `documentation` only.
|
|
36
|
-
- Follow-up documentation (implementation was handled by its own spec's Execution section) → `documentation` only.
|
|
32
|
+
- Write an `## Execution` section in every task spec. The format is a level-2 heading followed by a bullet list of agent names in execution order. Valid agent names: `test-writer`, `implementer`, `documentation`. The `## Execution` section must contain only the agent bullet list — no explanatory orchestration notes.
|
|
37
33
|
|
|
38
34
|
Multi-unit decomposition:
|
|
39
35
|
|