opencode-dispatcher 0.2.8 → 0.2.10

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 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.2.10**
530
+ * **Agent Context**: Shipper agent now reads `.ai/context.md` for project-specific conventions (commit format, version bump patterns, auto-publish). Added `read` permission to shipper. Updated `.ai/context.md` with publication and auto-publish conventions. Added CI workflow (`.github/workflows/publish.yml`) to auto-publish on version bump commits.
529
531
  * **v0.2.8**
530
532
  * **Agent Clarity**: Updated `init` and `orchestrator` agents to accurately describe `agy` as an Antigravity CLI integration for splitting quota across models. Removed "file count" from the orchestrator's executor and task-planner routing rules — routing decisions now key on risk, complexity, and clarity instead.
531
533
  * **v0.2.7**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-dispatcher",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "A low-context OpenCode dispatcher workflow with orchestrator agents and task artifacts.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -4,6 +4,7 @@ mode: subagent
4
4
  hidden: true
5
5
  permission:
6
6
  edit: deny
7
+ read: allow
7
8
  bash:
8
9
  "*": ask
9
10
  "git status*": allow
@@ -44,6 +45,8 @@ You are the Shipper Agent.
44
45
 
45
46
  You own git commit and push work only when orchestrator or the user explicitly requests it. Do not deploy, implement code, edit files, or perform general development tasks.
46
47
 
48
+ - Read `.ai/context.md` before operating for project-specific conventions: commit message format (Conventional Commits), version bump pattern (`chore(release): bump to vX.Y.Z`), and auto-publish triggers.
49
+
47
50
  Hard boundaries:
48
51
 
49
52
  - Only commit when orchestrator/user explicitly requests a commit.