@fro.bot/systematic 3.10.2 → 3.11.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fro.bot/systematic",
3
- "version": "3.10.2",
3
+ "version": "3.11.0",
4
4
  "description": "Compound-engineering loops for OpenCode, Pi, and Claude Code",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",
@@ -108,7 +108,7 @@
108
108
  "rimraf": "6.1.3",
109
109
  "semantic-release": "25.0.9",
110
110
  "semantic-release-export-data": "1.2.0",
111
- "typebox": "1.3.13",
111
+ "typebox": "1.3.14",
112
112
  "typescript": "7.0.2"
113
113
  },
114
114
  "dependencies": {
@@ -22,16 +22,26 @@ task({
22
22
 
23
23
  // Background dispatch (run independent work concurrently; reconcile on completion):
24
24
  task({
25
- subagent_type: "explorer",
25
+ subagent_type: "repo-research-analyst",
26
26
  description: "Map fixture patterns",
27
27
  prompt: "…",
28
28
  background: true,
29
29
  })
30
30
 
31
31
  // Resume a prior specialist session:
32
- task({ subagent_type: "fixer", task_id: "<prior-session-id>", description: "Resume fixer task", prompt: "…" })
32
+ task({ subagent_type: "systematic-implementer", task_id: "<prior-session-id>", description: "Resume the implementation task", prompt: "…" })
33
33
  ```
34
34
 
35
+ `subagent_type` takes a bare agent stem — OpenCode registers bundled agents under
36
+ their filename stem, not a namespaced identifier. Prose that *refers* to an agent
37
+ uses the canonical `systematic:<category>:<name>` form instead, which the
38
+ content-integrity gate validates against real agent files.
39
+
40
+ Both forms are enforced. Examples in bundled content must name agents this
41
+ package actually ships, so they work for every reader. A host may provide
42
+ additional agents through the user's own configuration; those are available at
43
+ runtime but must not appear in bundled examples.
44
+
35
45
  ### Blocking user interaction
36
46
 
37
47
  ```typescript