repo-harness 0.3.0 → 0.4.1

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.
Files changed (125) hide show
  1. package/AGENTS.md +9 -8
  2. package/CLAUDE.md +9 -8
  3. package/README.es.md +40 -5
  4. package/README.fr.md +41 -5
  5. package/README.ja.md +38 -5
  6. package/README.md +65 -45
  7. package/README.zh-CN.md +66 -32
  8. package/SKILL.md +22 -19
  9. package/assets/AGENTS.md +1 -1
  10. package/assets/CLAUDE.md +1 -1
  11. package/assets/hooks/hook-input.sh +17 -1
  12. package/assets/hooks/lib/session-state.sh +19 -2
  13. package/assets/hooks/lib/workflow-state.sh +39 -24
  14. package/assets/hooks/post-edit-guard.sh +13 -13
  15. package/assets/hooks/post-tool-observer.sh +5 -103
  16. package/assets/hooks/prompt-guard.sh +11 -9
  17. package/assets/hooks/session-start-context.sh +56 -34
  18. package/assets/partials/04-project-structure.partial.md +1 -1
  19. package/assets/partials/05-workflow.partial.md +3 -3
  20. package/assets/partials/07-footer.partial.md +2 -2
  21. package/assets/partials/08-orchestration.partial.md +2 -2
  22. package/assets/partials-agents/02-operating-mode.partial.md +2 -2
  23. package/assets/partials-agents/03-orchestration.partial.md +5 -5
  24. package/assets/partials-agents/04-task-protocol.partial.md +7 -7
  25. package/assets/partials-agents/08-deep-docs.partial.md +2 -2
  26. package/assets/reference-configs/agentic-development-flow.md +5 -5
  27. package/assets/reference-configs/development-protocol.md +1 -1
  28. package/assets/reference-configs/document-generation.md +1 -1
  29. package/assets/reference-configs/handoff-protocol.md +5 -9
  30. package/assets/reference-configs/harness-overview.md +5 -3
  31. package/assets/reference-configs/heartbeat-triage.md +57 -0
  32. package/assets/reference-configs/hook-operations.md +6 -4
  33. package/assets/reference-configs/sprint-contracts.md +13 -2
  34. package/assets/skill-commands/repo-harness-architecture/SKILL.md +2 -0
  35. package/assets/skill-commands/repo-harness-plan/SKILL.md +2 -2
  36. package/assets/skill-commands/repo-harness-repair/SKILL.md +1 -1
  37. package/assets/skill-commands/repo-harness-sprint/SKILL.md +2 -2
  38. package/assets/skill-version.json +10 -2
  39. package/assets/templates/contract.template.md +20 -2
  40. package/assets/templates/helpers/architecture-event.ts +355 -2
  41. package/assets/templates/helpers/architecture-queue.sh +647 -0
  42. package/assets/templates/helpers/archive-architecture-request.sh +11 -8
  43. package/assets/templates/helpers/archive-workflow.sh +8 -8
  44. package/assets/templates/helpers/capability-resolver.ts +34 -3
  45. package/assets/templates/helpers/capture-plan.sh +3 -3
  46. package/assets/templates/helpers/check-architecture-sync.sh +287 -0
  47. package/assets/templates/helpers/check-skill-version.ts +24 -5
  48. package/assets/templates/helpers/check-task-sync.sh +5 -2
  49. package/assets/templates/helpers/check-task-workflow.sh +21 -11
  50. package/assets/templates/helpers/codex-handoff-resume.sh +5 -8
  51. package/assets/templates/helpers/context-contract-sync.sh +1 -1
  52. package/assets/templates/helpers/contract-run.ts +402 -0
  53. package/assets/templates/helpers/contract-worktree.sh +20 -0
  54. package/assets/templates/helpers/ensure-task-workflow.sh +55 -61
  55. package/assets/templates/helpers/heartbeat-triage.sh +317 -0
  56. package/assets/templates/helpers/inspect-project-state.ts +17 -3
  57. package/assets/templates/helpers/migrate-workflow-docs.ts +114 -38
  58. package/assets/templates/helpers/new-plan.sh +2 -2
  59. package/assets/templates/helpers/plan-to-todo.sh +32 -14
  60. package/assets/templates/helpers/prepare-codex-handoff.sh +3 -23
  61. package/assets/templates/helpers/refresh-current-status.sh +1 -1
  62. package/assets/templates/helpers/ship-worktrees.sh +1 -1
  63. package/assets/templates/helpers/sprint-backlog.sh +5 -5
  64. package/assets/templates/helpers/switch-plan.sh +1 -1
  65. package/assets/templates/helpers/workflow-contract.ts +1 -1
  66. package/assets/templates/helpers/workstream-sync.sh +1 -1
  67. package/assets/templates/implementation-notes.template.md +1 -1
  68. package/assets/templates/plan.template.md +2 -2
  69. package/assets/templates/sprint.template.md +1 -1
  70. package/assets/workflow-contract.v1.json +81 -18
  71. package/docs/reference-configs/agentic-development-flow.md +5 -5
  72. package/docs/reference-configs/development-protocol.md +1 -1
  73. package/docs/reference-configs/document-generation.md +1 -1
  74. package/docs/reference-configs/handoff-protocol.md +5 -9
  75. package/docs/reference-configs/harness-overview.md +5 -3
  76. package/docs/reference-configs/heartbeat-triage.md +57 -0
  77. package/docs/reference-configs/hook-operations.md +6 -4
  78. package/docs/reference-configs/loop-engine-cutover-gate.md +39 -0
  79. package/docs/reference-configs/loop-engine-nl-decision-table.md +137 -0
  80. package/docs/reference-configs/sprint-contracts.md +13 -2
  81. package/package.json +2 -1
  82. package/scripts/architecture-event.ts +355 -2
  83. package/scripts/architecture-queue.sh +647 -0
  84. package/scripts/archive-architecture-request.sh +11 -8
  85. package/scripts/archive-workflow.sh +8 -8
  86. package/scripts/capability-resolver.ts +34 -3
  87. package/scripts/capture-plan.sh +3 -3
  88. package/scripts/check-architecture-sync.sh +287 -0
  89. package/scripts/check-npm-release.sh +1 -0
  90. package/scripts/check-skill-version.ts +24 -5
  91. package/scripts/check-task-sync.sh +5 -2
  92. package/scripts/check-task-workflow.sh +21 -11
  93. package/scripts/codex-handoff-resume.sh +5 -8
  94. package/scripts/context-contract-sync.sh +1 -1
  95. package/scripts/contract-run.ts +402 -0
  96. package/scripts/contract-worktree.sh +20 -0
  97. package/scripts/create-project-dirs.sh +10 -37
  98. package/scripts/ensure-task-workflow.sh +55 -61
  99. package/scripts/heartbeat-triage.sh +317 -0
  100. package/scripts/hook-dispatch-diet-report.ts +234 -0
  101. package/scripts/init-project.sh +10 -49
  102. package/scripts/inspect-project-state.ts +17 -3
  103. package/scripts/lib/project-init-lib.sh +207 -49
  104. package/scripts/loop-engine-cutover-gate.ts +324 -0
  105. package/scripts/migrate-project-template.sh +131 -58
  106. package/scripts/migrate-workflow-docs.ts +114 -38
  107. package/scripts/new-plan.sh +2 -2
  108. package/scripts/plan-to-todo.sh +32 -14
  109. package/scripts/prepare-codex-handoff.sh +3 -23
  110. package/scripts/refresh-current-status.sh +1 -1
  111. package/scripts/route-nl-vs-ts-eval.ts +679 -0
  112. package/scripts/ship-worktrees.sh +1 -1
  113. package/scripts/sprint-backlog.sh +5 -5
  114. package/scripts/switch-plan.sh +1 -1
  115. package/scripts/sync-codex-installed-copies.sh +0 -3
  116. package/scripts/workflow-contract.ts +1 -1
  117. package/scripts/workstream-sync.sh +1 -1
  118. package/src/cli/commands/status.ts +1 -1
  119. package/src/cli/hook/runtime.ts +5 -2
  120. package/src/cli/hook/state-snapshot.ts +388 -0
  121. package/src/cli/hook-entry.ts +8 -0
  122. package/assets/templates/helpers/architecture-drift.sh +0 -482
  123. package/assets/templates/helpers/context-budget.ts +0 -463
  124. package/scripts/architecture-drift.sh +0 -482
  125. package/scripts/context-budget.ts +0 -463
package/AGENTS.md CHANGED
@@ -5,12 +5,12 @@ This repository self-hosts the `repo-harness` contract; the former `repo-harness
5
5
  ## Canonical Workflow Files
6
6
 
7
7
  - `tasks/current.md` for the tracked current-status snapshot derived from workflow artifacts
8
- - `tasks/todo.md` for deferred medium/long-term goals, not active execution checklists
9
- - `tasks/sprints/` for program-level sprint PRDs and ordered backlogs, operated by `scripts/sprint-backlog.sh` (Sprint = program layer; task contracts stay the execution slices)
8
+ - `tasks/todos.md` for deferred medium/long-term goals, not active execution checklists
9
+ - `plans/prds/` for program-level sprint PRDs and ordered backlogs, operated by `scripts/sprint-backlog.sh` (Sprint = program layer; task contracts stay the execution slices)
10
10
  - `.ai/context/capabilities.json` for the capability registry and longest-prefix context boundaries
11
11
  - `tasks/workstreams/` for capability long-running workstreams that project durable progress into local contracts
12
12
  - `tasks/lessons.md` for correction-derived rules
13
- - `tasks/research.md` for deep repo knowledge
13
+ - `docs/researches/` for deep repo knowledge
14
14
  - `tasks/notes/` for task-local implementation decisions, deviations, tradeoffs, and open questions
15
15
  - `plans/` for timestamped plans, with `plans/archive/` for history
16
16
  - `.ai/harness/workflow-contract.json` for the installed workflow contract manifest
@@ -24,13 +24,13 @@ This repository self-hosts the `repo-harness` contract; the former `repo-harness
24
24
  - Sync `tasks/` whenever substantive repo changes are made.
25
25
  - Use `tasks/notes/<plan-stem>.notes.md` only for non-obvious slice decisions, deviations, tradeoffs, and open questions; `<plan-stem>` is the active plan filename without `plan-` and `.md` (for example `20260531-0045-governance-workflow`). Do not use notes as durable memory or a task log, and archive/promote them deliberately when the slice closes.
26
26
  - Treat hook execution as central-first: trusted repos run `~/.repo-harness/hooks/` (bash shim) or the packaged CLI copy; this self-host repo pins `"hook_source": "repo"` in `.ai/harness/policy.json` so `.ai/hooks/` stays the live development runtime, with `assets/hooks/` as the product source mirrored on install. User-level `~/.claude/settings.json` and `~/.codex/hooks.json` are the host adapters.
27
- - Keep the umbrella hierarchy explicit: architecture owns stable truth, capability contracts own local agent context, `tasks/workstreams/<domain>/<capability>/` owns durable progress, and `tasks/todo.md` owns only deferred medium/long-term goals with tradeoff and revisit trigger.
27
+ - Keep the umbrella hierarchy explicit: architecture owns stable truth, capability contracts own local agent context, `tasks/workstreams/<domain>/<capability>/` owns durable progress, and `tasks/todos.md` owns only deferred medium/long-term goals with tradeoff and revisit trigger.
28
28
  - Treat `.ai/context/capabilities.json` as the source of truth for capability prefixes; `agent-context-blocks.txt` and nested agent files are compatibility inputs only.
29
- - Keep architecture drift handling split: `architecture-drift.sh` writes architecture requests/events, `workstream-sync.sh` maintains durable capability workstreams, and `context-contract-sync.sh` only updates controlled local `CLAUDE.md`/`AGENTS.md` architecture blocks.
29
+ - Keep architecture drift handling split: `architecture-queue.sh` writes architecture requests/events, `workstream-sync.sh` maintains durable capability workstreams, and `context-contract-sync.sh` only updates controlled local `CLAUDE.md`/`AGENTS.md` architecture blocks.
30
30
  - Keep `assets/workflow-contract.v1.json` and `.ai/harness/workflow-contract.json` in sync.
31
31
  - Keep `CLAUDE.md` and `AGENTS.md` short; put detailed guidance in `docs/reference-configs/`.
32
32
  - Treat Codex auto-compact as a fallback only; use `.ai/harness/handoff/current.md` and `.ai/harness/handoff/resume.md` for long-task rollover.
33
- - Treat `_ref/` as an occasional ignored external reference checkout cache, not a commit surface or daily workflow. Agents may read or refresh it for comparison; when it influences a decision, cite the source repo plus commit/tag and path in `tasks/notes/` or `tasks/research.md`.
33
+ - Treat `_ref/` as an occasional ignored external reference checkout cache, not a commit surface or daily workflow. Agents may read or refresh it for comparison; when it influences a decision, cite the source repo plus commit/tag and path in `tasks/notes/` or `docs/researches/`.
34
34
  - Treat `deploy/` as the trackable deployment and operations surface for runbooks, submission materials, release checklists, helper scripts, ordered SQL files under `deploy/sql/`, and env examples.
35
35
  - Treat `_ops/` as ignored local operations state for secrets, real env files, provider state, artifacts, logs, and scratch files; do not commit or agent-edit `_ops/*`.
36
36
  - Treat contract-level task execution as worktree-first: `scripts/plan-to-todo.sh --plan <approved-plan>` starts `scripts/contract-worktree.sh start --plan <approved-plan>` when policy enables it, and completed blocks finish through Waza `/check` plus `scripts/contract-worktree.sh finish`.
@@ -50,6 +50,7 @@ This repository self-hosts the `repo-harness` contract; the former `repo-harness
50
50
  ```bash
51
51
  bun test
52
52
  bash scripts/check-deploy-sql-order.sh
53
+ bash scripts/check-architecture-sync.sh
53
54
  bash scripts/check-task-sync.sh
54
55
  bash scripts/check-task-workflow.sh --strict
55
56
  bun scripts/inspect-project-state.ts --repo . --format text
@@ -79,7 +80,7 @@ bash scripts/migrate-project-template.sh --repo . --dry-run
79
80
  - Latest snapshot: `(none yet)`
80
81
  - Semantic diagram source: `docs/architecture/modules/runtime-harness/hook-adapters.md`
81
82
  - Latest human diagram: `(none yet)`
82
- - Pending architecture request: `docs/architecture/requests/20260529-094446-ai-hooks-ai-hooks-session-start-context-sh.md`
83
+ - Pending architecture request: `(none)`
83
84
 
84
85
  ## Active Workstreams
85
86
 
@@ -89,5 +90,5 @@ bash scripts/migrate-project-template.sh --repo . --dry-run
89
90
 
90
91
  - Durable progress lives under `tasks/workstreams/runtime-harness/hook-adapters`.
91
92
  - `tasks/current.md` is the tracked derived status snapshot; it is not a live lock or task source.
92
- - `tasks/todo.md` is the deferred-goal ledger; current execution slices stay in the active plan's `## Task Breakdown`.
93
+ - `tasks/todos.md` is the deferred-goal ledger; current execution slices stay in the active plan's `## Task Breakdown`.
93
94
  <!-- END ARCHITECTURE CONTRACT -->
package/CLAUDE.md CHANGED
@@ -5,12 +5,12 @@ This repository self-hosts the `repo-harness` contract; the former `repo-harness
5
5
  ## Canonical Workflow Files
6
6
 
7
7
  - `tasks/current.md` for the tracked current-status snapshot derived from workflow artifacts
8
- - `tasks/todo.md` for deferred medium/long-term goals, not active execution checklists
9
- - `tasks/sprints/` for program-level sprint PRDs and ordered backlogs, operated by `scripts/sprint-backlog.sh` (Sprint = program layer; task contracts stay the execution slices)
8
+ - `tasks/todos.md` for deferred medium/long-term goals, not active execution checklists
9
+ - `plans/prds/` for program-level sprint PRDs and ordered backlogs, operated by `scripts/sprint-backlog.sh` (Sprint = program layer; task contracts stay the execution slices)
10
10
  - `.ai/context/capabilities.json` for the capability registry and longest-prefix context boundaries
11
11
  - `tasks/workstreams/` for capability long-running workstreams that project durable progress into local contracts
12
12
  - `tasks/lessons.md` for correction-derived rules
13
- - `tasks/research.md` for deep repo knowledge
13
+ - `docs/researches/` for deep repo knowledge
14
14
  - `tasks/notes/` for task-local implementation decisions, deviations, tradeoffs, and open questions
15
15
  - `plans/` for timestamped plans, with `plans/archive/` for history
16
16
  - `.ai/harness/workflow-contract.json` for the installed workflow contract manifest
@@ -24,13 +24,13 @@ This repository self-hosts the `repo-harness` contract; the former `repo-harness
24
24
  - Sync `tasks/` whenever substantive repo changes are made.
25
25
  - Use `tasks/notes/<plan-stem>.notes.md` only for non-obvious slice decisions, deviations, tradeoffs, and open questions; `<plan-stem>` is the active plan filename without `plan-` and `.md` (for example `20260531-0045-governance-workflow`). Do not use notes as durable memory or a task log, and archive/promote them deliberately when the slice closes.
26
26
  - Treat hook execution as central-first: trusted repos run `~/.repo-harness/hooks/` (bash shim) or the packaged CLI copy; this self-host repo pins `"hook_source": "repo"` in `.ai/harness/policy.json` so `.ai/hooks/` stays the live development runtime, with `assets/hooks/` as the product source mirrored on install. User-level `~/.claude/settings.json` and `~/.codex/hooks.json` are the host adapters.
27
- - Keep the umbrella hierarchy explicit: architecture owns stable truth, capability contracts own local agent context, `tasks/workstreams/<domain>/<capability>/` owns durable progress, and `tasks/todo.md` owns only deferred medium/long-term goals with tradeoff and revisit trigger.
27
+ - Keep the umbrella hierarchy explicit: architecture owns stable truth, capability contracts own local agent context, `tasks/workstreams/<domain>/<capability>/` owns durable progress, and `tasks/todos.md` owns only deferred medium/long-term goals with tradeoff and revisit trigger.
28
28
  - Treat `.ai/context/capabilities.json` as the source of truth for capability prefixes; `agent-context-blocks.txt` and nested agent files are compatibility inputs only.
29
- - Keep architecture drift handling split: `architecture-drift.sh` writes architecture requests/events, `workstream-sync.sh` maintains durable capability workstreams, and `context-contract-sync.sh` only updates controlled local `CLAUDE.md`/`AGENTS.md` architecture blocks.
29
+ - Keep architecture drift handling split: `architecture-queue.sh` writes architecture requests/events, `workstream-sync.sh` maintains durable capability workstreams, and `context-contract-sync.sh` only updates controlled local `CLAUDE.md`/`AGENTS.md` architecture blocks.
30
30
  - Keep `assets/workflow-contract.v1.json` and `.ai/harness/workflow-contract.json` in sync.
31
31
  - Keep `CLAUDE.md` and `AGENTS.md` short; put detailed guidance in `docs/reference-configs/`.
32
32
  - Treat Codex auto-compact as a fallback only; use `.ai/harness/handoff/current.md` and `.ai/harness/handoff/resume.md` for long-task rollover.
33
- - Treat `_ref/` as an occasional ignored external reference checkout cache, not a commit surface or daily workflow. Agents may read or refresh it for comparison; when it influences a decision, cite the source repo plus commit/tag and path in `tasks/notes/` or `tasks/research.md`.
33
+ - Treat `_ref/` as an occasional ignored external reference checkout cache, not a commit surface or daily workflow. Agents may read or refresh it for comparison; when it influences a decision, cite the source repo plus commit/tag and path in `tasks/notes/` or `docs/researches/`.
34
34
  - Treat `deploy/` as the trackable deployment and operations surface for runbooks, submission materials, release checklists, helper scripts, ordered SQL files under `deploy/sql/`, and env examples.
35
35
  - Treat `_ops/` as ignored local operations state for secrets, real env files, provider state, artifacts, logs, and scratch files; do not commit or agent-edit `_ops/*`.
36
36
  - Treat contract-level task execution as worktree-first: `scripts/plan-to-todo.sh --plan <approved-plan>` starts `scripts/contract-worktree.sh start --plan <approved-plan>` when policy enables it, and completed blocks finish through Waza `/check` plus `scripts/contract-worktree.sh finish`.
@@ -50,6 +50,7 @@ This repository self-hosts the `repo-harness` contract; the former `repo-harness
50
50
  ```bash
51
51
  bun test
52
52
  bash scripts/check-deploy-sql-order.sh
53
+ bash scripts/check-architecture-sync.sh
53
54
  bash scripts/check-task-sync.sh
54
55
  bash scripts/check-task-workflow.sh --strict
55
56
  bun scripts/inspect-project-state.ts --repo . --format text
@@ -79,7 +80,7 @@ bash scripts/migrate-project-template.sh --repo . --dry-run
79
80
  - Latest snapshot: `(none yet)`
80
81
  - Semantic diagram source: `docs/architecture/modules/runtime-harness/hook-adapters.md`
81
82
  - Latest human diagram: `(none yet)`
82
- - Pending architecture request: `docs/architecture/requests/20260529-094446-ai-hooks-ai-hooks-session-start-context-sh.md`
83
+ - Pending architecture request: `(none)`
83
84
 
84
85
  ## Active Workstreams
85
86
 
@@ -89,5 +90,5 @@ bash scripts/migrate-project-template.sh --repo . --dry-run
89
90
 
90
91
  - Durable progress lives under `tasks/workstreams/runtime-harness/hook-adapters`.
91
92
  - `tasks/current.md` is the tracked derived status snapshot; it is not a live lock or task source.
92
- - `tasks/todo.md` is the deferred-goal ledger; current execution slices stay in the active plan's `## Task Breakdown`.
93
+ - `tasks/todos.md` is the deferred-goal ledger; current execution slices stay in the active plan's `## Task Breakdown`.
93
94
  <!-- END ARCHITECTURE CONTRACT -->
package/README.es.md CHANGED
@@ -175,6 +175,26 @@ flowchart TD
175
175
  Cleanup --> Done["Tarea completada y auditable"]
176
176
  ```
177
177
 
178
+ ## Bucles largos de producto
179
+
180
+ Para trabajo Greenfield y Brownfield, adelanta la discovery y el juicio de
181
+ engineering plan en Claude-Fable antes de pedirle a Codex que haga loops de
182
+ ejecución:
183
+
184
+ 1. En Claude-Fable, usa gstack `office-hours` para product discovery o
185
+ `plan-eng-review` para review del plan de ingeniería. La salida debe ser los
186
+ development documents que fijan la intención de producto, la arquitectura, los
187
+ riesgos y el evidence contract.
188
+ 2. Convierte esos documentos en un PRD Sprint bajo `plans/prds/`, con un
189
+ backlog ordenado y sub-plans detallados para cada execution slice.
190
+ 3. Crea un Codex Goal que apunte a ese archivo de sprint. repo-harness puede
191
+ entonces proyectar cada sprint item por el flow normal plan -> contract ->
192
+ worktree -> verification.
193
+
194
+ Ese handoff mantiene precisos los loops largos: Claude-Fable se ocupa del juicio
195
+ amplio al inicio, el PRD Sprint es la durable source of truth, y Codex Goal mode
196
+ retoma contra un sprint concreto en vez de reinterpretar el chat original.
197
+
178
198
  ## Primeros 5 minutos
179
199
 
180
200
  Esta es la ruta más rápida para evaluar si un repositorio real es apto para
@@ -186,8 +206,8 @@ adoptar este workflow.
186
206
  npx -y repo-harness init
187
207
  ```
188
208
 
189
- La npm package release line es ahora `0.3.x`; el workflow compatibility model line
190
- generado se rastrea por separado como `5.x`. `repo-harness init` es el bootstrap
209
+ La npm package release line y el generated workflow stamp usan ahora la misma
210
+ línea `0.4.x`. `repo-harness init` es el bootstrap
191
211
  global y `repo-harness update` es el refresco repo-local. `repo-harness init`
192
212
  configura el CLI, los hook adapters de nivel usuario, Waza, Mermaid, el brain
193
213
  root y CodeGraph MCP; el viejo camino Claude plugin `scripts/setup-plugins.sh`
@@ -325,12 +345,12 @@ Guards habituales:
325
345
 
326
346
  ## Release actual
327
347
 
328
- - npm package: `repo-harness@0.3.0`
329
- - Generated workflow compatibility: `5.2.3`
348
+ - npm package: `repo-harness@0.4.1`
349
+ - Generated workflow stamp: `repo-harness@0.4.1+template@0.4.1`
330
350
  - GitHub repository: `Ancienttwo/repo-harness`
331
351
  - Release history: [`docs/CHANGELOG.md`](docs/CHANGELOG.md)
332
352
 
333
- ## Current Model (5.2.3)
353
+ ## Current Model
334
354
 
335
355
  - El question flow usa **12 grouped decision points**, infiriendo primero los harness defaults.
336
356
  - El plan menu está por capas: los **Core Plans (A-F)** primero, los **Custom Presets (G-K)** solo cuando hace falta.
@@ -349,6 +369,21 @@ Guards habituales:
349
369
  - `bash scripts/check-agent-tooling.sh --host both --check-updates`
350
370
  - no configura automáticamente gstack, gbrain, CodeGraph MCP, daemon ni provider
351
371
 
372
+ ## Agradecimientos
373
+
374
+ Gracias a [Hylarucoder](https://x.com/hylarucoder) por su contribución
375
+ metodológica. El método P1/P2/P3 due-diligence de `repo-harness`, y la práctica
376
+ Geju que disciplina el planning, el trace y el decision rationale, vienen de su
377
+ contribución e influencia.
378
+
379
+ Gracias a [TW93](https://x.com/HiTw93), autor de Waza. Los skills centrales
380
+ `think`, `hunt`, `check` y `health` dan forma al ritmo diario de planning, bug
381
+ hunt y verification de `repo-harness`.
382
+
383
+ Gracias a [Garry Tan](https://x.com/garrytan), autor de gstack y gbrain. Ambos
384
+ influyeron en el workflow de product discovery, plan/design review, release
385
+ documentation, knowledge sync y handoff retrieval.
386
+
352
387
  ## Action Command Skills
353
388
 
354
389
  Los command facades públicos están en `assets/skill-commands/`; preservan la
package/README.fr.md CHANGED
@@ -179,6 +179,27 @@ flowchart TD
179
179
  Cleanup --> Done["Tâche terminée et auditable"]
180
180
  ```
181
181
 
182
+ ## Longues boucles produit
183
+
184
+ Pour le travail Greenfield comme Brownfield, avancez la discovery et le jugement
185
+ d'engineering plan dans Claude-Fable avant de demander à Codex de boucler sur
186
+ l'exécution :
187
+
188
+ 1. Dans Claude-Fable, utilisez gstack `office-hours` pour la product discovery ou
189
+ `plan-eng-review` pour la review du plan d'ingénierie. La sortie doit être les
190
+ development documents qui verrouillent l'intention produit, l'architecture,
191
+ les risques et l'evidence contract.
192
+ 2. Transformez ces documents en PRD Sprint sous `plans/prds/`, avec un backlog
193
+ ordonné et des sub-plans détaillés pour chaque execution slice.
194
+ 3. Créez un Codex Goal qui pointe vers ce fichier de sprint. repo-harness peut
195
+ ensuite projeter chaque sprint item dans le flow normal plan -> contract ->
196
+ worktree -> verification.
197
+
198
+ Ce handoff rend les longues boucles plus précises : Claude-Fable porte le
199
+ jugement large en amont, le PRD Sprint devient la durable source of truth, et
200
+ Codex Goal mode reprend sur un sprint concret au lieu de réinterpréter le chat
201
+ initial.
202
+
182
203
  ## Les 5 premières minutes
183
204
 
184
205
  C'est le chemin le plus rapide pour évaluer si un dépôt réel se prête à l'adoption
@@ -190,8 +211,8 @@ de ce workflow.
190
211
  npx -y repo-harness init
191
212
  ```
192
213
 
193
- La release line du package npm est désormais `0.3.x` ; la generated workflow
194
- compatibility model line est suivie séparément en `5.x`. `repo-harness init`
214
+ La release line du package npm et le generated workflow stamp utilisent
215
+ désormais la même ligne `0.4.x`. `repo-harness init`
195
216
  sert au bootstrap global et `repo-harness update` sert au rafraîchissement
196
217
  repo-local. `repo-harness init` configure le CLI, les hook adapters de niveau
197
218
  utilisateur, Waza, Mermaid, le brain root et CodeGraph MCP ; l'ancien chemin
@@ -329,12 +350,12 @@ Guards courants :
329
350
 
330
351
  ## Release actuelle
331
352
 
332
- - npm package : `repo-harness@0.3.0`
333
- - Generated workflow compatibility : `5.2.3`
353
+ - npm package : `repo-harness@0.4.1`
354
+ - Generated workflow stamp : `repo-harness@0.4.1+template@0.4.1`
334
355
  - GitHub repository : `Ancienttwo/repo-harness`
335
356
  - Release history : [`docs/CHANGELOG.md`](docs/CHANGELOG.md)
336
357
 
337
- ## Current Model (5.2.3)
358
+ ## Current Model
338
359
 
339
360
  - Le question flow utilise **12 grouped decision points**, en inférant d'abord les harness defaults.
340
361
  - Le plan menu est hiérarchisé : **Core Plans (A-F)** en priorité, **Custom Presets (G-K)** uniquement quand c'est nécessaire.
@@ -353,6 +374,21 @@ Guards courants :
353
374
  - `bash scripts/check-agent-tooling.sh --host both --check-updates`
354
375
  - pas de configuration automatique de gstack, gbrain, CodeGraph MCP, daemon ou provider
355
376
 
377
+ ## Remerciements
378
+
379
+ Merci à [Hylarucoder](https://x.com/hylarucoder) pour sa contribution
380
+ méthodologique. La méthode P1/P2/P3 due-diligence de `repo-harness`, ainsi que
381
+ la pratique Geju qui structure le planning, le trace et le decision rationale,
382
+ viennent de sa contribution et de son influence.
383
+
384
+ Merci à [TW93](https://x.com/HiTw93), auteur de Waza. Les skills centraux
385
+ `think`, `hunt`, `check` et `health` structurent le rythme quotidien de planning,
386
+ bug hunt et verification de `repo-harness`.
387
+
388
+ Merci à [Garry Tan](https://x.com/garrytan), auteur de gstack et gbrain. Ils ont
389
+ influencé le workflow de product discovery, plan/design review, release
390
+ documentation, knowledge sync et handoff retrieval.
391
+
356
392
  ## Action Command Skills
357
393
 
358
394
  Les command facades publics se trouvent dans `assets/skill-commands/` ; ils
package/README.ja.md CHANGED
@@ -149,6 +149,25 @@ flowchart TD
149
149
  Cleanup --> Done["レビュー可能な完了タスク"]
150
150
  ```
151
151
 
152
+ ## 長期プロダクト Loop
153
+
154
+ Greenfield と Brownfield の作業では、Codex に実行 loop を任せる前に、
155
+ discovery と engineering-plan judgment を Claude-Fable 側で前倒しします。
156
+
157
+ 1. Claude-Fable で、product discovery には gstack `office-hours` を使い、
158
+ engineering plan review には `plan-eng-review` を使います。出力は、product
159
+ intent、architecture、risks、evidence contract を固定する development
160
+ documents にします。
161
+ 2. それらの documents を `plans/prds/` 配下の PRD Sprint に変換し、
162
+ 各 execution slice に ordered backlog と detailed sub-plans を持たせます。
163
+ 3. Codex Goal を作成し、その sprint file を指します。repo-harness はその後、
164
+ 各 sprint item を通常の plan -> contract -> worktree -> verification flow
165
+ へ投射できます。
166
+
167
+ この handoff により、長期 loop は精密になります。Claude-Fable が広い前置判断を担い、
168
+ PRD Sprint が durable source of truth となり、Codex Goal mode は元の chat を再解釈する
169
+ のではなく、具体的な sprint に対して resume します。
170
+
152
171
  ## 最初の 5 分
153
172
 
154
173
  実際のリポジトリがこの workflow を導入するのに適しているかを評価する、最速の経路です。
@@ -159,8 +178,8 @@ flowchart TD
159
178
  npx -y repo-harness init
160
179
  ```
161
180
 
162
- npm package release line は現在 `0.3.x` です。生成される workflow compatibility model line
163
- 別途 `5.x` として追跡されます。`repo-harness init` は global bootstrap、`repo-harness update` は
181
+ npm package generated workflow stamp は現在同じ `0.4.x` release line を使います。
182
+ `repo-harness init` は global bootstrap、`repo-harness update` は
164
183
  repo-local refresh です。`repo-harness init` は CLI、user-level hook adapters、Waza、Mermaid、
165
184
  brain root、CodeGraph MCP を設定し、退役した `scripts/setup-plugins.sh` の Claude plugin path は使いません。
166
185
 
@@ -293,12 +312,12 @@ hook がブロックしたときは、まず terminal の構造化された出
293
312
 
294
313
  ## 現在の Release
295
314
 
296
- - npm package:`repo-harness@0.3.0`
297
- - Generated workflow compatibility:`5.2.3`
315
+ - npm package:`repo-harness@0.4.1`
316
+ - Generated workflow stamp:`repo-harness@0.4.1+template@0.4.1`
298
317
  - GitHub repository:`Ancienttwo/repo-harness`
299
318
  - Release history:[`docs/CHANGELOG.md`](docs/CHANGELOG.md)
300
319
 
301
- ## Current Model (5.2.3)
320
+ ## Current Model
302
321
 
303
322
  - Question flow は **12 grouped decision points** を使い、まず harness defaults を推論します。
304
323
  - Plan menu は階層化されています。**Core Plans (A-F)** を優先し、**Custom Presets (G-K)** は必要なときだけ現れます。
@@ -317,6 +336,20 @@ hook がブロックしたときは、まず terminal の構造化された出
317
336
  - `bash scripts/check-agent-tooling.sh --host both --check-updates`
318
337
  - gstack、gbrain、CodeGraph MCP、daemon、provider を自動設定しない
319
338
 
339
+ ## 謝辞
340
+
341
+ [Hylarucoder](https://x.com/hylarucoder) の方法論への貢献に感謝します。
342
+ `repo-harness` の P1/P2/P3 due-diligence メソッドと、planning、trace、
343
+ decision rationale を重視する Geju の実践は、彼の貢献と示唆に基づいています。
344
+
345
+ [TW93](https://x.com/HiTw93) による Waza にも感謝します。`think`、`hunt`、
346
+ `check`、`health` という中核 skill は、`repo-harness` の日々の planning、
347
+ bug hunt、verification のリズムを形作っています。
348
+
349
+ [Garry Tan](https://x.com/garrytan) による gstack と gbrain にも感謝します。
350
+ これらは product discovery、plan/design review、release documentation、
351
+ knowledge sync、handoff retrieval の workflow 設計に影響を与えています。
352
+
320
353
  ## Action Command Skills
321
354
 
322
355
  公開 command facades は `assets/skill-commands/` にあります。host skill discovery との互換性を残しつつ、実行は CLI と hooks が担います。
package/README.md CHANGED
@@ -34,28 +34,21 @@ This repository now dogfoods its own tasks-first contract. It is both:
34
34
  read a 1KB capability contract or query the index instead of spending thousands of
35
35
  tokens rediscovering structure.
36
36
 
37
- ## What's New in 0.3.0
38
-
39
- - **Sprint program layer.** `repo-harness-sprint`, `tasks/sprints/`, sprint
40
- templates, active sprint markers, and `scripts/sprint-backlog.sh` now capture
41
- program-level PRDs and ordered backlogs without turning `tasks/todo.md` into
42
- an active execution checklist.
43
- - **Central-first hook runtime.** User-level Claude/Codex adapters dispatch into
44
- `repo-harness-hook`; central packaged hooks are the default runtime, while
45
- this self-host repo can still pin `"hook_source": "repo"` for live hook
46
- development.
47
- - **Prompt decisions moved to TypeScript.** Prompt-text intent classification is
48
- Unicode-aware in `src/cli/hook/prompt-intents.ts`, the shell hook receives one
49
- verdict JSON line, and prompt-layer plan/spec/contract gates are advisory.
50
- - **Edit-layer enforcement.** Implementation writes are enforced at
51
- `pre-edit-guard.sh`, where the guard can key off path, active plan state, and
52
- repo files instead of natural-language guesses.
53
- - **Cheaper always-on hooks.** `trace-event.sh` and `context-pressure-hook.sh`
54
- are merged into `post-tool-observer.sh`: one dispatch, one stdin parse, one
55
- trace file, and sampled context-budget probes.
56
- - **Legacy surface cleanup.** The retired `repo-harness-skill`,
57
- `project-initializer`, `PROJECT_INITIALIZER_*` fallbacks, duplicate shell
58
- classifier table, orphan version checker, and split observer hooks are gone.
37
+ ## What's New in 0.4.1
38
+
39
+ - **Session-scoped CodeGraph nudges.** Hook stdin `session_id` now drives the
40
+ one-shot CodeGraph route hint, so stale local session files no longer suppress
41
+ or repeat guidance across independent Claude/Codex sessions.
42
+ - **Central-first hook safety.** Generated and migrated repos stay on the
43
+ user-level hook runtime by default; repo-local top-level hook scripts are
44
+ pruned unless `.ai/harness/policy.json` explicitly pins `"hook_source": "repo"`.
45
+ - **Workflow document migration.** Active workflow docs now use
46
+ `tasks/todos.md` for deferred goals and `docs/researches/*.md` for durable
47
+ research, with legacy `tasks/todo.md` and `tasks/research.md` treated as
48
+ migration inputs.
49
+ - **Release-gate stability.** Runtime ignore rules cover transient
50
+ `tasks/.current.md.tmp.*` and `.claude/.plan-state/` state, and the default
51
+ Bun test timeout matches the release gate budget.
59
52
 
60
53
  ## What repo-harness Does
61
54
 
@@ -118,18 +111,23 @@ The diagram below assumes the harness is already installed in the repo. It shows
118
111
  the normal lifecycle from a program sprint backlog down to one contract task:
119
112
  draft or select the task, project it into execution files, check out the
120
113
  contract worktree when policy requires it, implement under hooks, verify, review,
121
- complete the sprint task when applicable, and close out.
114
+ complete the sprint task when applicable, and close out. The 0.4.x loop-system
115
+ surfaces add scheduled heartbeat discovery, state-snapshot/eval evidence for
116
+ routing changes, architecture queue freshness, and optional contract-run
117
+ delegation without changing the file-backed authority model.
122
118
 
123
119
  ```mermaid
124
120
  flowchart TD
125
121
  Program["Program goal or release theme"] --> Sprint{"Sprint layer needed?"}
126
- Sprint -->|yes| SprintDoc["Sprint PRD + backlog<br/>tasks/sprints/*.sprint.md"]
122
+ Sprint -->|yes| SprintDoc["Sprint PRD + backlog<br/>plans/prds/*.prd.md"]
127
123
  SprintDoc --> NextTask["Select next sprint task<br/>sprint-backlog.sh next"]
128
124
  Sprint -->|no| UserTask["User task or planning prompt"]
125
+ Heartbeat["Heartbeat triage<br/>scripts/heartbeat-triage.sh<br/>.ai/harness/triage/"] --> UserTask
129
126
  NextTask --> UserTask
130
127
 
131
128
  UserTask --> Discovery["Due diligence<br/>P1 map, P2 trace, P3 decision"]
132
- Discovery --> PlanDraft["Draft plan<br/>plans/plan-*.md"]
129
+ Discovery --> LoopEvidence["Loop evidence when routing changes<br/>state-snapshot --json<br/>route-nl-vs-ts / cutover gate"]
130
+ LoopEvidence --> PlanDraft["Draft plan<br/>plans/plan-*.md"]
133
131
  PlanDraft --> PlanReview{"Plan ready for execution?"}
134
132
  PlanReview -->|no| Refine["Refine plan, scope, evidence contract"]
135
133
  Refine --> PlanDraft
@@ -142,18 +140,23 @@ flowchart TD
142
140
  Project --> ReviewFile["Review file<br/>tasks/reviews/YYYYMMDD-HHMM-task-slug.review.md"]
143
141
  Project --> Notes["Task notes<br/>tasks/notes/YYYYMMDD-HHMM-task-slug.notes.md"]
144
142
 
145
- Contract --> WorktreePolicy{"Contract worktree required?"}
143
+ Contract --> Delegation["Delegation contract<br/>budget / permission_scope / roles"]
144
+ Delegation --> Delegate{"Use contract-run delegation?"}
145
+ Delegate -->|yes| ContractRun["Worker/verifier child run<br/>scripts/contract-run.ts"]
146
+ Delegate -->|no| WorktreePolicy{"Contract worktree required?"}
146
147
  WorktreePolicy -->|yes| Checkout["Checkout isolated worktree<br/>contract-worktree.sh start --plan<br/>branch codex/task-slug"]
147
148
  WorktreePolicy -->|no| CurrentTree["Use current worktree<br/>small or explicitly allowed slice"]
148
149
  Checkout --> Implement
149
150
  CurrentTree --> Implement
151
+ ContractRun --> Changes
150
152
 
151
153
  Implement["Edit and run commands"] --> PreHooks["Pre-edit guards<br/>PlanStatusGuard, ContractScopeGuard, WorktreeGuard"]
152
154
  PreHooks -->|blocked| ScopeFix["Fix plan, contract, worktree, or scope"]
153
155
  ScopeFix --> Implement
154
156
  PreHooks -->|allowed| Changes["Code, docs, tests, or config changes"]
155
157
  Changes --> PostHooks["Post-edit and post-bash hooks<br/>trace, drift request, handoff, check evidence"]
156
- PostHooks --> Verify["Run verification<br/>tests plus repo workflow checks"]
158
+ PostHooks --> ArchQueue["Architecture queue<br/>architecture-queue.sh record/reindex<br/>check-architecture-sync.sh"]
159
+ ArchQueue --> Verify["Run verification<br/>tests plus repo workflow checks"]
157
160
 
158
161
  Verify --> Checks["Structured evidence<br/>.ai/harness/checks/latest.json<br/>.ai/harness/runs/*.json"]
159
162
  Checks --> CheckReview["Evaluator review<br/>Waza /check -> review file"]
@@ -173,6 +176,26 @@ flowchart TD
173
176
  Cleanup --> Done["Reviewable completed task"]
174
177
  ```
175
178
 
179
+ ## Long-Running Product Loops
180
+
181
+ For Greenfield and Brownfield work, front-load discovery and engineering-plan
182
+ judgment in Claude-Fable before asking Codex to loop on execution:
183
+
184
+ 1. In Claude-Fable, use gstack `office-hours` for product discovery or
185
+ `plan-eng-review` for engineering plan review. The output should be the
186
+ development documents that lock product intent, architecture, risks, and the
187
+ evidence contract.
188
+ 2. Turn those documents into a PRD sprint under `plans/prds/`, with an
189
+ ordered backlog and detailed sub-plans for each execution slice.
190
+ 3. In Codex, create a Goal that points at that sprint file. The harness can then
191
+ project each sprint item through the normal plan -> contract -> worktree ->
192
+ verification flow.
193
+
194
+ That handoff keeps long-running loops precise: Claude-Fable owns the broad
195
+ front-loaded judgment, the PRD sprint is the durable source of truth, and Codex
196
+ Goal mode resumes against a concrete sprint instead of reinterpreting the
197
+ original chat.
198
+
176
199
  ## First 5 Minutes
177
200
 
178
201
  This is the fastest path for an AI tooling owner evaluating whether the workflow is
@@ -201,13 +224,12 @@ npx -y repo-harness update
201
224
  repository to install or refresh workflow files, hook assets, host adapters,
202
225
  skill aliases, and repo-local verification surfaces from the current npm package.
203
226
 
204
- The npm package release line is now `0.3.x`; generated workflow compatibility is
205
- tracked separately as the `5.x` model line. The `0.3.0` package keeps first-run
227
+ The npm package and generated workflow stamp now share the `0.4.x` release line.
228
+ The `0.4.1` package keeps first-run
206
229
  global bootstrap (`repo-harness init`) separate from repo-local refresh
207
- (`repo-harness update`), adds the sprint program layer, moves hook execution to
208
- central-first runtime resolution, moves prompt decisions into TypeScript,
209
- enforces implementation writes at the edit boundary, and merges always-on hook
210
- observers into one cheaper path.
230
+ (`repo-harness update`) while hardening session-scoped hook state, central-first
231
+ hook execution, workflow-document migration, and release-gate stability on top
232
+ of the `0.4.0` loop-engine surfaces.
211
233
  These sit on top of the renamed `repo-harness` CLI, user-level hook
212
234
  adapter bootstrap, AI-native scaffold overlays, the typed prompt-guard decision
213
235
  engine, plan-stem task artifact naming, `REPO_HARNESS_*` runtime aliases, Waza
@@ -358,12 +380,12 @@ Most common guards:
358
380
 
359
381
  ## Current Release
360
382
 
361
- - npm package: `repo-harness@0.3.0`
362
- - Generated workflow compatibility: `5.2.3`
383
+ - npm package: `repo-harness@0.4.1`
384
+ - Generated workflow stamp: `repo-harness@0.4.1+template@0.4.1`
363
385
  - GitHub repository: `Ancienttwo/repo-harness`
364
386
  - Release history: [`docs/CHANGELOG.md`](docs/CHANGELOG.md)
365
387
 
366
- ## Current Model (5.2.3)
388
+ ## Current Model
367
389
 
368
390
  - Question flow uses **12 grouped decision points** with harness defaults inferred first.
369
391
  - Plan menu is tiered:
@@ -402,27 +424,25 @@ Most common guards:
402
424
  - no automatic gstack, gbrain MCP, CodeGraph daemon, or provider setup
403
425
  - Manual distillation stays repo-local:
404
426
  - repeated corrections -> `tasks/lessons.md`
405
- - deep findings and hidden contracts -> `tasks/research.md`
427
+ - deep findings and hidden contracts -> topic-scoped `docs/researches/*.md`
406
428
  - sprint verification evidence -> `tasks/reviews/*.review.md`
407
429
  - durable capability progress -> `tasks/workstreams/`
408
430
  - release history -> `docs/CHANGELOG.md`
409
431
 
410
- ## Acknowledgements and Tooling Dependencies
432
+ ## Acknowledgements and Workflow Influences
411
433
 
412
434
  `repo-harness` is built around a small set of external skills and repos that
413
435
  proved useful while this project was being designed, debugged, and released.
414
436
  They are acknowledged here because they shaped the workflow contract, but they
415
- are not all bundled product dependencies.
437
+ are not ordinary bundled product dependencies.
416
438
 
417
439
  | Tool or repo | Used for | Dependency shape |
418
440
  | --- | --- | --- |
419
- | gstack skills, including `document-release`, `office-hours`, `plan-eng-review`, and `plan-design-review` | Product discovery, plan review, design review, and post-ship documentation hygiene | External operator workflow; advisory by default |
420
- | Waza core skills `think`, `hunt`, `check`, and `health` | Daily planning, bug hunts, verification, health checks, and Codex-first skill sync | Installed through the skills CLI into host skill roots |
441
+ | [Hylarucoder](https://x.com/hylarucoder) / Geju | P1/P2/P3 due-diligence method and Geju practice that shaped the planning, tracing, and decision-rationale discipline in this workflow | Methodology contribution and acknowledgement; not a bundled dependency |
442
+ | Waza by [TW93](https://x.com/HiTw93), including `think`, `hunt`, `check`, and `health` | Daily planning, bug hunts, verification, health checks, and Codex-first skill sync | Installed through the skills CLI into host skill roots |
443
+ | gstack skills and `gbrain` by [Garry Tan](https://x.com/garrytan) | Product discovery, plan review, design review, post-ship documentation hygiene, knowledge sync, handoff retrieval, and long-form repo memory | External operator workflow plus optional external CLI/index; advisory by default |
421
444
  | `mermaid` | Human-readable architecture and system-flow diagrams when Mermaid is not enough | Runtime-referenced skill, not vendored into generated repos |
422
- | `gbrain` | Knowledge sync, handoff retrieval, and long-form repo memory | Optional external CLI and index |
423
445
  | CodeGraph (`@colbymchenry/codegraph`) | Symbol-aware navigation, impact tracing, and readiness checks for this self-host repo | Dev dependency in this repo; generated repos stay global-MCP-first unless policy opts in |
424
- | Bun | Source checkout execution, tests, template assembly, and release checks | Required local runtime for maintainers |
425
- | `commander` | `repo-harness` CLI command parsing | Runtime npm dependency |
426
446
 
427
447
  ## Action Command Skills
428
448
 
@@ -430,7 +450,7 @@ Source-owned command facades live in `assets/skill-commands/`. They keep host
430
450
  skill discovery compatible while the CLI and hooks own execution:
431
451
 
432
452
  - Planning and review: `repo-harness-plan`, `repo-harness-review`, `repo-harness-autoplan`
433
- - Sprint program layer: `repo-harness-sprint` (PRD + ordered backlog in `tasks/sprints/`, executed task-by-task through the contract flow)
453
+ - Sprint program layer: `repo-harness-sprint` (PRD + ordered backlog in `plans/prds/`, executed task-by-task through the contract flow)
434
454
  - Repo workflow actions: `repo-harness-ship`, `repo-harness-init`, `repo-harness-migrate`, `repo-harness-upgrade`, `repo-harness-capability`, `repo-harness-architecture`, `repo-harness-handoff`, `repo-harness-deploy`, `repo-harness-repair`, `repo-harness-check`
435
455
  - Branch project creation command: `repo-harness-scaffold`
436
456