greprag 5.62.0 → 5.64.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/dist/codex-chip-hooks.js +2 -1
- package/dist/codex-chip-hooks.js.map +1 -1
- package/dist/commands/arm-reminder.js +5 -0
- package/dist/commands/arm-reminder.js.map +1 -1
- package/dist/commands/codex-chip/prompt.js +1 -1
- package/dist/commands/codex-chip/prompt.js.map +1 -1
- package/dist/commands/fix.js +116 -0
- package/dist/commands/fix.js.map +1 -1
- package/dist/commands/inbox-primer-reminder.js +10 -2
- package/dist/commands/inbox-primer-reminder.js.map +1 -1
- package/dist/commands/load-primer-reminder.d.ts +6 -0
- package/dist/commands/load-primer-reminder.js +22 -2
- package/dist/commands/load-primer-reminder.js.map +1 -1
- package/dist/commands/mechanic-spawn.js +34 -7
- package/dist/commands/mechanic-spawn.js.map +1 -1
- package/dist/commands/opencode-interrupt.d.ts +15 -5
- package/dist/commands/opencode-interrupt.js +22 -20
- package/dist/commands/opencode-interrupt.js.map +1 -1
- package/dist/commands/os-primer-reminder.js +5 -2
- package/dist/commands/os-primer-reminder.js.map +1 -1
- package/dist/commands/parity.d.ts +20 -0
- package/dist/commands/parity.js +265 -0
- package/dist/commands/parity.js.map +1 -0
- package/dist/commands/reminder-registry.d.ts +7 -0
- package/dist/commands/reminder-registry.js +9 -1
- package/dist/commands/reminder-registry.js.map +1 -1
- package/dist/commands/reminder-types.d.ts +13 -1
- package/dist/guard.d.ts +9 -5
- package/dist/guard.js +9 -5
- package/dist/guard.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/opencode-plugin.bundle.js +50 -20
- package/dist/opencode-plugin.js +14 -0
- package/dist/opencode-plugin.js.map +1 -1
- package/package.json +2 -2
- package/skill/greprag/docs/codex-chip.md +5 -0
- package/skill/mechanic/SKILL.md +5 -0
- package/skill/templates/codex-chip-spawn.md +23 -0
|
@@ -128,6 +128,29 @@ The child never silently changes the orchestration shape. If the work grows
|
|
|
128
128
|
from quick to Leader-scale, tell the parent and let the parent create the
|
|
129
129
|
dedicated `LEAD: <Mission>` task.
|
|
130
130
|
|
|
131
|
+
## FIX missions — the one landing exception
|
|
132
|
+
|
|
133
|
+
Landing authority follows the MISSION SHAPE, not the harness
|
|
134
|
+
(adr/codex-landing-doctrine.md). Every chip shape above (`Chip A/B/C`, `LEAD`,
|
|
135
|
+
`ADVISOR`, `MECHANIC`) keeps the parent-owned landing: commit, native reply
|
|
136
|
+
with archive clearance, and the parent reviews, integrates, archives, and
|
|
137
|
+
cleans up.
|
|
138
|
+
|
|
139
|
+
A mission whose first line begins `FIX:` — emitted by `greprag fix spawn`
|
|
140
|
+
(grepragOS law 4) — is the ONE exception: it carries its own Phase 3
|
|
141
|
+
self-landing contract, which supersedes the "Do not merge, push, deploy, or
|
|
142
|
+
delete the worktree" line for that task only. The fix chip confers with live
|
|
143
|
+
peers (`greprag inbox watchers`), merges its branch to main itself, and
|
|
144
|
+
re-verifies on merged main; its native reply to the parent is an FYI, not a
|
|
145
|
+
review gate — a fix chip's repair must never strand on its branch waiting for
|
|
146
|
+
a review no one owns.
|
|
147
|
+
|
|
148
|
+
Even a FIX chip keeps two Codex-native boundaries: cleanup stays native (never
|
|
149
|
+
remove the Codex-managed checkout or delete its branch — reply `Clearance:
|
|
150
|
+
safe to archive` and let Codex archive and prune), and sensitive landings
|
|
151
|
+
(`git push`, releases, `npm publish`, migrations) stay operator-gated — report
|
|
152
|
+
READY-TO-PUSH instead.
|
|
153
|
+
|
|
131
154
|
## Selection rule
|
|
132
155
|
|
|
133
156
|
```text
|