devrites 3.2.13 → 3.2.14

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,12 @@
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
+ ## [3.2.14](https://github.com/ViktorsBaikers/DevRites/compare/v3.2.13...v3.2.14) (2026-07-26)
6
+
7
+ ### Fixed
8
+
9
+ * **agents:** track unarmed retained retries ([44cf3cd](https://github.com/ViktorsBaikers/DevRites/commit/44cf3cd2d111060c76c53095ae76615ddba29c53))
10
+
5
11
  ## [3.2.13](https://github.com/ViktorsBaikers/DevRites/compare/v3.2.12...v3.2.13) (2026-07-26)
6
12
 
7
13
  ### Fixed
package/README.md CHANGED
@@ -25,7 +25,7 @@ final commit, push, and tag, and it requires a typed `GO` confirmation.
25
25
  Unattended runs may create local WIP checkpoint commits along the way, but only
26
26
  Ship collapses and pushes them.
27
27
 
28
- **Status:** [`v3.2.13`](https://github.com/ViktorsBaikers/DevRites/releases/tag/v3.2.13): see [`CHANGELOG.md`](CHANGELOG.md) for release notes.
28
+ **Status:** [`v3.2.14`](https://github.com/ViktorsBaikers/DevRites/releases/tag/v3.2.14): see [`CHANGELOG.md`](CHANGELOG.md) for release notes.
29
29
 
30
30
  ## Quick start
31
31
 
@@ -906,17 +906,17 @@ func refreshPendingWrightBoundary(
906
906
  if in.AgentID != "" || in.AgentType != "" || currentReconcileWindowID() == "" {
907
907
  return nil
908
908
  }
909
- _, wrightRequired := armed["devrites-slice-wright"]
910
- _, conditional := armed[agentDispatchSkillGuard]
911
- if !wrightRequired && !conditional {
912
- return nil
913
- }
914
909
  for _, attempt := range attempts {
915
910
  if attempt.Role == "devrites-slice-wright" {
916
911
  return nil
917
912
  }
918
913
  }
919
- durable, err := durableCodexV2DispatchAttempts(root, in.SessionID, in.TurnID, armed)
914
+ boundaryArmed := make(map[string]struct{}, len(armed)+1)
915
+ for role := range armed {
916
+ boundaryArmed[role] = struct{}{}
917
+ }
918
+ boundaryArmed["devrites-slice-wright"] = struct{}{}
919
+ durable, err := durableCodexV2DispatchAttempts(root, in.SessionID, in.TurnID, boundaryArmed)
920
920
  if err != nil {
921
921
  return err
922
922
  }
@@ -1971,7 +1971,7 @@ func TestCodexAgentDispatchCapturesWrightBoundaryBeforeSpawn(t *testing.T) {
1971
1971
  }
1972
1972
  }
1973
1973
 
1974
- func TestCodexAgentDispatchRefreshesWrightBoundaryUntilDurableSpawn(t *testing.T) {
1974
+ func TestCodexAgentDispatchRefreshesUnarmedWrightBoundaryUntilDurableSpawn(t *testing.T) {
1975
1975
  root := newWorkspace(t)
1976
1976
  codeHome := t.TempDir()
1977
1977
  writeActive(t, root, "auth-tokens")
@@ -1999,13 +1999,12 @@ func TestCodexAgentDispatchRefreshesWrightBoundaryUntilDurableSpawn(t *testing.T
1999
1999
  sessionID, turnID := "session-wright-durable", "turn-wright-durable"
2000
2000
  role := "devrites-slice-wright"
2001
2001
  writeCodexAgentContract(t, root, role)
2002
- writeCodexSkillContract(t, root, "rite-build", role)
2003
2002
  env := []string{"CODEX_HOME=" + codeHome}
2004
2003
  runDevritesIO(t, root, hookPayload(t, map[string]any{
2005
2004
  "hook_event_name": "UserPromptSubmit",
2006
2005
  "session_id": sessionID,
2007
2006
  "turn_id": turnID,
2008
- "prompt": "$rite-build",
2007
+ "prompt": "Retry the retained reconciliation check.",
2009
2008
  }), env, "hook", "agent-dispatch", "--harness=codex")
2010
2009
 
2011
2010
  wrightState := filepath.Join(workspace, ".reconcile-wright-devrites")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devrites",
3
- "version": "3.2.13",
3
+ "version": "3.2.14",
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",