greprag 5.60.8 → 5.60.9

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": "greprag",
3
- "version": "5.60.8",
3
+ "version": "5.60.9",
4
4
  "description": "GrepRAG — agent memory for Claude Code, Codex, and OpenCode.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -55,6 +55,11 @@ dispatch `Chip A` and `Chip B` directly.
55
55
  `chip.leader`, `chip.advisor`, and `chip.mechanic`. Inspect the active policy
56
56
  with `greprag codex models show`; override a single child only with explicit
57
57
  `--model` / `--effort` flags when needed.
58
+ - Select the role slot from the first-line title before dispatch:
59
+ `Chip A/B/C` -> `chip.worker`, `LEAD` -> `chip.leader`, `ADVISOR` ->
60
+ `chip.advisor`, and `MECHANIC` -> `chip.mechanic`. ABOUT TO call
61
+ `codex_app__create_thread`? STOP - pass that slot as top-level `model` and
62
+ `thinking`; never rely on Codex Desktop defaults for a visible chip.
58
63
  - Preserve the visible native task identity, isolated worktree, concise final
59
64
  report, parent review/integration, and parent-owned archive + cleanup. Normal
60
65
  completion is the native parent-child task result; `greprag send` remains
@@ -77,13 +82,22 @@ Load `greprag load chip-leader` for the mission worksheet before dispatch.
77
82
  ## Codex Desktop dispatch route
78
83
 
79
84
  Create the child directly with `codex_app__create_thread` using the current
80
- project with this target schema:
85
+ project and the selected role model policy. `greprag codex models show` prints
86
+ slots as `model / effort`; the Codex app tool field for effort is `thinking`.
87
+ For example, an `ADVISOR: <Purview>` child uses `chip.advisor`, so
88
+ `chip.advisor: gpt-5.6-sol / high` becomes top-level `"model":
89
+ "gpt-5.6-sol"` and `"thinking": "high"`.
81
90
 
82
91
  ```json
83
92
  {
84
- "type": "project",
85
- "projectId": "<current-project-id>",
86
- "environment": { "type": "worktree" }
93
+ "target": {
94
+ "type": "project",
95
+ "projectId": "<current-project-id>",
96
+ "environment": { "type": "worktree" }
97
+ },
98
+ "prompt": "<required child opening prompt>",
99
+ "model": "<selected chip role model>",
100
+ "thinking": "<selected chip role effort>"
87
101
  }
88
102
  ```
89
103