devrites 5.2.1 → 5.2.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to DevRites are documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and DevRites adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Releases are generated automatically by [semantic-release](https://semantic-release.gitbook.io/) from Conventional Commits on `main`.
4
4
 
5
+ ## [5.2.3](https://github.com/ViktorsBaikers/DevRites/compare/v5.2.2...v5.2.3) (2026-09-12)
6
+
7
+ ### Fixed
8
+
9
+ * **skills:** chain converge to vet instead of recommending it ([#64](https://github.com/ViktorsBaikers/DevRites/issues/64)) ([9c65e49](https://github.com/ViktorsBaikers/DevRites/commit/9c65e49ebfed3fb297ccef76da314a8728b0d0ba))
10
+
11
+ ## [5.2.2](https://github.com/ViktorsBaikers/DevRites/compare/v5.2.1...v5.2.2) (2026-09-11)
12
+
13
+ ### Fixed
14
+
15
+ * **skills:** make self-chaining save the caller return cursor ([#63](https://github.com/ViktorsBaikers/DevRites/issues/63)) ([4038577](https://github.com/ViktorsBaikers/DevRites/commit/4038577d5d8d1bbd7fe6e05fb9a0375a3bc07f5e))
16
+
5
17
  ## [5.2.1](https://github.com/ViktorsBaikers/DevRites/compare/v5.2.0...v5.2.1) (2026-09-11)
6
18
 
7
19
  ### Fixed
package/README.md CHANGED
@@ -33,7 +33,7 @@ project-conventional push, tag, or PR action, and archive the workspace.
33
33
  Unattended runs may create local WIP checkpoint commits along the way, but they
34
34
  remain local unless Ship's disclosed plan includes an approved remote action.
35
35
 
36
- **Status:** [`v5.2.1`](https://github.com/ViktorsBaikers/DevRites/releases/tag/v5.2.1): see [`CHANGELOG.md`](CHANGELOG.md) for release notes.
36
+ **Status:** [`v5.2.3`](https://github.com/ViktorsBaikers/DevRites/releases/tag/v5.2.3): see [`CHANGELOG.md`](CHANGELOG.md) for release notes.
37
37
 
38
38
  This is the latest published release; `main` may contain unreleased work.
39
39
 
@@ -104,9 +104,14 @@ Pull on demand:
104
104
  leave the plan/vet verdict untouched and set `Next step: /rite-prove`. Append
105
105
  `decisions.md` for any material call.
106
106
  7. **STOP.** Report units assessed, built / partial / absent counts, slices appended, and any
107
- principle violation found; recommend `/rite-vet` when slices were appended (or
108
- `/rite-prove` if the code already
109
- converged).
107
+ principle violation found. A direct invocation that appended slices becomes
108
+ the caller for the mandated next step: save a return cursor
109
+ (`return_phase`/`return_next_action`) naming this Converge pass as the
110
+ caller, invoke `/rite-vet` inline, and consume its results — an agent-owned
111
+ `NEEDS REPLAN` routes to `/rite-plan` repair internally under the
112
+ fingerprint caps; its return lands here, never on the user. Stop only at
113
+ Vet's boundary (READY readback; next step `/rite-build` for the appended
114
+ slices). Nothing appended → recommend `/rite-prove`.
110
115
 
111
116
  ## Completion evidence (fail-closed)
112
117
 
@@ -144,12 +144,15 @@ user-facing stop unless a genuine HITL, safety/access, or exhausted-recovery
144
144
  condition was recorded.
145
145
 
146
146
  When invoked directly with no controlling caller and a planning artifact
147
- changed, become the caller for the mandated next step: record the return
148
- cursor, invoke `/rite-vet` inline, and consume its results `NEEDS REPLAN`
149
- re-enters repair internally under the fingerprint caps; `NEEDS CLARIFICATION`
150
- and human-owned gates still reach the user. Stop only at Vet's boundary (READY
151
- readback; next step `/rite-build`). An unchanged plan keeps its recorded next
152
- step.
147
+ changed, become the caller for the mandated next step: save a return cursor
148
+ (`return_phase`/`return_next_action`) naming this Plan pass as the caller
149
+ a direct Plan has no caller above it, so without the saved cursor Vet reads
150
+ itself as top-level and its verdict becomes a user-facing command. Invoke
151
+ `/rite-vet` inline and consume its results — `NEEDS REPLAN` re-enters repair
152
+ internally under the fingerprint caps and is never emitted as a user-facing
153
+ command; `NEEDS CLARIFICATION` and human-owned gates still reach the user.
154
+ Stop only at Vet's boundary (READY readback; next step `/rite-build`). An
155
+ unchanged plan keeps its recorded next step.
153
156
 
154
157
  > **Mid-flight discipline.** Do not change product behavior without confirmation or
155
158
  > absorb drift silently. See [`anti-patterns`](reference/anti-patterns.md).
@@ -53,8 +53,10 @@ plan declares a root-authored executable workflow file, read
53
53
  asking and resolve reversible technical choices. Ask only human-owned choices.
54
54
  - Preserve a valid technical return cursor. Agent-owned `NEEDS REPLAN` returns
55
55
  internally to its caller, not to the human; on a direct invocation there is
56
- no caller, so Vet becomes it — record the cursor and invoke `/rite-plan`
57
- repair inline under the same fingerprint caps.
56
+ no caller, so Vet becomes it — save a return cursor
57
+ (`return_phase`/`return_next_action`) naming this Vet pass as the caller and
58
+ invoke `/rite-plan` repair inline under the same fingerprint caps. An
59
+ agent-owned verdict with budget remaining is never a user-facing command.
58
60
  - **Recovery recheck is bounded and batched.** A valid cursor plus open
59
61
  fingerprints enters Recovery recheck; it does not start another Full Vet or
60
62
  repeat unaffected axes/reviewers. One dispatch covers every open fingerprint
@@ -104,9 +104,14 @@ Pull on demand:
104
104
  leave the plan/vet verdict untouched and set `Next step: /rite-prove`. Append
105
105
  `decisions.md` for any material call.
106
106
  7. **STOP.** Report units assessed, built / partial / absent counts, slices appended, and any
107
- principle violation found; recommend `/rite-vet` when slices were appended (or
108
- `/rite-prove` if the code already
109
- converged).
107
+ principle violation found. A direct invocation that appended slices becomes
108
+ the caller for the mandated next step: save a return cursor
109
+ (`return_phase`/`return_next_action`) naming this Converge pass as the
110
+ caller, invoke `/rite-vet` inline, and consume its results — an agent-owned
111
+ `NEEDS REPLAN` routes to `/rite-plan` repair internally under the
112
+ fingerprint caps; its return lands here, never on the user. Stop only at
113
+ Vet's boundary (READY readback; next step `/rite-build` for the appended
114
+ slices). Nothing appended → recommend `/rite-prove`.
110
115
 
111
116
  ## Completion evidence (fail-closed)
112
117
 
@@ -144,12 +144,15 @@ user-facing stop unless a genuine HITL, safety/access, or exhausted-recovery
144
144
  condition was recorded.
145
145
 
146
146
  When invoked directly with no controlling caller and a planning artifact
147
- changed, become the caller for the mandated next step: record the return
148
- cursor, invoke `/rite-vet` inline, and consume its results `NEEDS REPLAN`
149
- re-enters repair internally under the fingerprint caps; `NEEDS CLARIFICATION`
150
- and human-owned gates still reach the user. Stop only at Vet's boundary (READY
151
- readback; next step `/rite-build`). An unchanged plan keeps its recorded next
152
- step.
147
+ changed, become the caller for the mandated next step: save a return cursor
148
+ (`return_phase`/`return_next_action`) naming this Plan pass as the caller
149
+ a direct Plan has no caller above it, so without the saved cursor Vet reads
150
+ itself as top-level and its verdict becomes a user-facing command. Invoke
151
+ `/rite-vet` inline and consume its results — `NEEDS REPLAN` re-enters repair
152
+ internally under the fingerprint caps and is never emitted as a user-facing
153
+ command; `NEEDS CLARIFICATION` and human-owned gates still reach the user.
154
+ Stop only at Vet's boundary (READY readback; next step `/rite-build`). An
155
+ unchanged plan keeps its recorded next step.
153
156
 
154
157
  > **Mid-flight discipline.** Do not change product behavior without confirmation or
155
158
  > absorb drift silently. See [`anti-patterns`](reference/anti-patterns.md).
@@ -53,8 +53,10 @@ plan declares a root-authored executable workflow file, read
53
53
  asking and resolve reversible technical choices. Ask only human-owned choices.
54
54
  - Preserve a valid technical return cursor. Agent-owned `NEEDS REPLAN` returns
55
55
  internally to its caller, not to the human; on a direct invocation there is
56
- no caller, so Vet becomes it — record the cursor and invoke `/rite-plan`
57
- repair inline under the same fingerprint caps.
56
+ no caller, so Vet becomes it — save a return cursor
57
+ (`return_phase`/`return_next_action`) naming this Vet pass as the caller and
58
+ invoke `/rite-plan` repair inline under the same fingerprint caps. An
59
+ agent-owned verdict with budget remaining is never a user-facing command.
58
60
  - **Recovery recheck is bounded and batched.** A valid cursor plus open
59
61
  fingerprints enters Recovery recheck; it does not start another Full Vet or
60
62
  repeat unaffected axes/reviewers. One dispatch covers every open fingerprint
@@ -104,9 +104,14 @@ Pull on demand:
104
104
  leave the plan/vet verdict untouched and set `Next step: $rite-prove`. Append
105
105
  `decisions.md` for any material call.
106
106
  7. **STOP.** Report units assessed, built / partial / absent counts, slices appended, and any
107
- principle violation found; recommend `$rite-vet` when slices were appended (or
108
- `$rite-prove` if the code already
109
- converged).
107
+ principle violation found. A direct invocation that appended slices becomes
108
+ the caller for the mandated next step: save a return cursor
109
+ (`return_phase`/`return_next_action`) naming this Converge pass as the
110
+ caller, invoke `$rite-vet` inline, and consume its results — an agent-owned
111
+ `NEEDS REPLAN` routes to `$rite-plan` repair internally under the
112
+ fingerprint caps; its return lands here, never on the user. Stop only at
113
+ Vet's boundary (READY readback; next step `$rite-build` for the appended
114
+ slices). Nothing appended → recommend `$rite-prove`.
110
115
 
111
116
  ## Completion evidence (fail-closed)
112
117
 
@@ -144,12 +144,15 @@ user-facing stop unless a genuine HITL, safety/access, or exhausted-recovery
144
144
  condition was recorded.
145
145
 
146
146
  When invoked directly with no controlling caller and a planning artifact
147
- changed, become the caller for the mandated next step: record the return
148
- cursor, invoke `$rite-vet` inline, and consume its results `NEEDS REPLAN`
149
- re-enters repair internally under the fingerprint caps; `NEEDS CLARIFICATION`
150
- and human-owned gates still reach the user. Stop only at Vet's boundary (READY
151
- readback; next step `$rite-build`). An unchanged plan keeps its recorded next
152
- step.
147
+ changed, become the caller for the mandated next step: save a return cursor
148
+ (`return_phase`/`return_next_action`) naming this Plan pass as the caller
149
+ a direct Plan has no caller above it, so without the saved cursor Vet reads
150
+ itself as top-level and its verdict becomes a user-facing command. Invoke
151
+ `$rite-vet` inline and consume its results — `NEEDS REPLAN` re-enters repair
152
+ internally under the fingerprint caps and is never emitted as a user-facing
153
+ command; `NEEDS CLARIFICATION` and human-owned gates still reach the user.
154
+ Stop only at Vet's boundary (READY readback; next step `$rite-build`). An
155
+ unchanged plan keeps its recorded next step.
153
156
 
154
157
  > **Mid-flight discipline.** Do not change product behavior without confirmation or
155
158
  > absorb drift silently. See [`anti-patterns`](reference/anti-patterns.md).
@@ -53,8 +53,10 @@ plan declares a root-authored executable workflow file, read
53
53
  asking and resolve reversible technical choices. Ask only human-owned choices.
54
54
  - Preserve a valid technical return cursor. Agent-owned `NEEDS REPLAN` returns
55
55
  internally to its caller, not to the human; on a direct invocation there is
56
- no caller, so Vet becomes it — record the cursor and invoke `$rite-plan`
57
- repair inline under the same fingerprint caps.
56
+ no caller, so Vet becomes it — save a return cursor
57
+ (`return_phase`/`return_next_action`) naming this Vet pass as the caller and
58
+ invoke `$rite-plan` repair inline under the same fingerprint caps. An
59
+ agent-owned verdict with budget remaining is never a user-facing command.
58
60
  - **Recovery recheck is bounded and batched.** A valid cursor plus open
59
61
  fingerprints enters Recovery recheck; it does not start another Full Vet or
60
62
  repeat unaffected axes/reviewers. One dispatch covers every open fingerprint
@@ -104,9 +104,14 @@ Pull on demand:
104
104
  leave the plan/vet verdict untouched and set `Next step: /rite-prove`. Append
105
105
  `decisions.md` for any material call.
106
106
  7. **STOP.** Report units assessed, built / partial / absent counts, slices appended, and any
107
- principle violation found; recommend `/rite-vet` when slices were appended (or
108
- `/rite-prove` if the code already
109
- converged).
107
+ principle violation found. A direct invocation that appended slices becomes
108
+ the caller for the mandated next step: save a return cursor
109
+ (`return_phase`/`return_next_action`) naming this Converge pass as the
110
+ caller, invoke `/rite-vet` inline, and consume its results — an agent-owned
111
+ `NEEDS REPLAN` routes to `/rite-plan` repair internally under the
112
+ fingerprint caps; its return lands here, never on the user. Stop only at
113
+ Vet's boundary (READY readback; next step `/rite-build` for the appended
114
+ slices). Nothing appended → recommend `/rite-prove`.
110
115
 
111
116
  ## Completion evidence (fail-closed)
112
117
 
@@ -144,12 +144,15 @@ user-facing stop unless a genuine HITL, safety/access, or exhausted-recovery
144
144
  condition was recorded.
145
145
 
146
146
  When invoked directly with no controlling caller and a planning artifact
147
- changed, become the caller for the mandated next step: record the return
148
- cursor, invoke `/rite-vet` inline, and consume its results `NEEDS REPLAN`
149
- re-enters repair internally under the fingerprint caps; `NEEDS CLARIFICATION`
150
- and human-owned gates still reach the user. Stop only at Vet's boundary (READY
151
- readback; next step `/rite-build`). An unchanged plan keeps its recorded next
152
- step.
147
+ changed, become the caller for the mandated next step: save a return cursor
148
+ (`return_phase`/`return_next_action`) naming this Plan pass as the caller
149
+ a direct Plan has no caller above it, so without the saved cursor Vet reads
150
+ itself as top-level and its verdict becomes a user-facing command. Invoke
151
+ `/rite-vet` inline and consume its results — `NEEDS REPLAN` re-enters repair
152
+ internally under the fingerprint caps and is never emitted as a user-facing
153
+ command; `NEEDS CLARIFICATION` and human-owned gates still reach the user.
154
+ Stop only at Vet's boundary (READY readback; next step `/rite-build`). An
155
+ unchanged plan keeps its recorded next step.
153
156
 
154
157
  > **Mid-flight discipline.** Do not change product behavior without confirmation or
155
158
  > absorb drift silently. See [`anti-patterns`](reference/anti-patterns.md).
@@ -53,8 +53,10 @@ plan declares a root-authored executable workflow file, read
53
53
  asking and resolve reversible technical choices. Ask only human-owned choices.
54
54
  - Preserve a valid technical return cursor. Agent-owned `NEEDS REPLAN` returns
55
55
  internally to its caller, not to the human; on a direct invocation there is
56
- no caller, so Vet becomes it — record the cursor and invoke `/rite-plan`
57
- repair inline under the same fingerprint caps.
56
+ no caller, so Vet becomes it — save a return cursor
57
+ (`return_phase`/`return_next_action`) naming this Vet pass as the caller and
58
+ invoke `/rite-plan` repair inline under the same fingerprint caps. An
59
+ agent-owned verdict with budget remaining is never a user-facing command.
58
60
  - **Recovery recheck is bounded and batched.** A valid cursor plus open
59
61
  fingerprints enters Recovery recheck; it does not start another Full Vet or
60
62
  repeat unaffected axes/reviewers. One dispatch covers every open fingerprint
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devrites",
3
- "version": "5.2.1",
3
+ "version": "5.2.3",
4
4
  "description": "DevRites: a disciplined senior-engineer workflow pack for Claude Code and Codex",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://github.com/ViktorsBaikers/DevRites#readme",