@trycore/spec-build-harness 0.10.0 → 0.11.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/.claude-plugin/plugin.json +1 -1
- package/VERSION +1 -1
- package/commands/build/escalate.md +1 -1
- package/commands/build/onboard.md +20 -4
- package/dist/cli.js +11 -1
- package/dist/commands/migrate.js +107 -2
- package/dist/lib/normalize.js +925 -78
- package/dist/lib/state-bundle.js +112 -8
- package/docs/runtime/guia-modo-dual-y-migracion.md +9 -2
- package/docs/runtime/protocolo-cliente-runtime.md +29 -19
- package/hooks/build/event-emitter.sh +9 -52
- package/hooks/build/lib/runtime-client.sh +183 -23
- package/hooks/build/lib/runtime-ops.sh +14 -8
- package/hooks/build/lib/state-io.sh +0 -0
- package/hooks/build/release-ops.sh +16 -9
- package/hooks/build/slice-ops.sh +152 -81
- package/package.json +1 -1
- package/scripts/check-runtime-purity.sh +0 -0
- package/scripts/denylist.txt +4 -0
- package/scripts/lib/graph-bundle.py +68 -20
- package/scripts/tests/test-baseline-verdict.sh +0 -0
- package/scripts/tests/test-hooks-runtime.sh +13 -38
- package/scripts/tests/test-install.sh +46 -0
- package/scripts/tests/test-skill-ops.sh +578 -58
- package/skills/building-a-slice/references/runtime-protocol.md +1 -1
- package/skills/releasing-a-version/SKILL.md +2 -1
|
@@ -69,7 +69,7 @@ En `runtime` el fichero `.claude/state/build-state.json` **no se lee ni se escri
|
|
|
69
69
|
|---|---|
|
|
70
70
|
| `active_slice.gates` | `slice-ops.sh status` / caché de proyección |
|
|
71
71
|
| `active_slice.wiring_checklist[]` | eventos `wiring_*` + `wiring_failing` de la proyección |
|
|
72
|
-
| `active_slice.progress_log[]` | eventos `
|
|
72
|
+
| `active_slice.progress_log[]` | eventos `progress_noted` (event stream) |
|
|
73
73
|
| `session_continuity.resume_hint` | `resume_hint` de `/agent/context` (lo rinde `next-step`) |
|
|
74
74
|
| `scaffold`, `design_source`, `project_kind`, `foundation` | hechos de proyecto (`fact …`) |
|
|
75
75
|
| `history[]`, `releases[]`, `parallel_front` | proyecciones del runtime (consola del hub) |
|
|
@@ -67,7 +67,8 @@ Checklist de cierre: `references/release-dod.md`.
|
|
|
67
67
|
5. Reporta **cada** gate en cuanto lo tengas medido, con su evidencia:
|
|
68
68
|
`release-ops.sh verdict R1-mvp security pass --evidence-file informe.txt` (usa `na` cuando el gate
|
|
69
69
|
no aplique — p. ej. `ux` en una release sin UI). Un `rc 6` es el servidor rechazando: muestra su
|
|
70
|
-
razón, no reintentes. Sin red, el veredicto
|
|
70
|
+
razón, no reintentes. Sin red, el veredicto **no** tiene camino por la cola offline (`rc 5`,
|
|
71
|
+
issue #44): reintenta el mismo comando cuando vuelva la red, antes de pedir el cierre.
|
|
71
72
|
6. Cuando los seis estén reportados, **avisa al humano para el cierre**
|
|
72
73
|
(`release-ops.sh close-hint R1-mvp`): el agente no cierra releases. Si algún gate quedó `fail`,
|
|
73
74
|
lista los hallazgos bloqueantes; el usuario los corrige como un slice normal (fix en
|