pumuki 6.3.34 → 6.3.36
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/VERSION +1 -1
- package/docs/CONFIGURATION.md +96 -0
- package/docs/RELEASE_NOTES.md +47 -0
- package/docs/registro-maestro-de-seguimiento.md +2 -1
- package/docs/seguimiento-completo-validacion-ruralgo-03-03-2026.md +134 -4
- package/integrations/evidence/schema.ts +5 -0
- package/integrations/gate/degradedMode.ts +131 -0
- package/integrations/gate/stagePolicies.ts +12 -0
- package/integrations/git/EvidenceService.ts +9 -0
- package/integrations/git/runPlatformGate.ts +48 -0
- package/integrations/git/stageRunners.ts +6 -0
- package/integrations/lifecycle/cli.ts +207 -17
- package/integrations/sdd/index.ts +1 -1
- package/integrations/sdd/policy.ts +37 -0
- package/integrations/sdd/syncDocs.ts +322 -22
- package/integrations/sdd/types.ts +1 -0
- package/integrations/telemetry/gateTelemetry.ts +21 -0
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v6.3.
|
|
1
|
+
v6.3.36
|
package/docs/CONFIGURATION.md
CHANGED
|
@@ -97,6 +97,102 @@ Defined in `integrations/gate/stagePolicies.ts`:
|
|
|
97
97
|
- `PRE_PUSH`: block `ERROR`, warn from `WARN`
|
|
98
98
|
- `CI`: block `ERROR`, warn from `WARN`
|
|
99
99
|
|
|
100
|
+
## Degraded mode (offline / air-gapped)
|
|
101
|
+
|
|
102
|
+
Pumuki supports a deterministic degraded contract by stage:
|
|
103
|
+
|
|
104
|
+
- `PRE_WRITE`
|
|
105
|
+
- `PRE_COMMIT`
|
|
106
|
+
- `PRE_PUSH`
|
|
107
|
+
- `CI`
|
|
108
|
+
|
|
109
|
+
Resolution precedence:
|
|
110
|
+
|
|
111
|
+
1. Environment variables (`PUMUKI_DEGRADED_MODE=1`)
|
|
112
|
+
2. File contract (`.pumuki/degraded-mode.json`)
|
|
113
|
+
|
|
114
|
+
Environment variables:
|
|
115
|
+
|
|
116
|
+
- `PUMUKI_DEGRADED_MODE`: enable/disable (`1|0`, `true|false`, `yes|no`)
|
|
117
|
+
- `PUMUKI_DEGRADED_REASON`: operator-visible reason
|
|
118
|
+
- `PUMUKI_DEGRADED_ACTION`: global default action (`allow|block`)
|
|
119
|
+
- `PUMUKI_DEGRADED_ACTION_PRE_WRITE`: per-stage override
|
|
120
|
+
- `PUMUKI_DEGRADED_ACTION_PRE_COMMIT`: per-stage override
|
|
121
|
+
- `PUMUKI_DEGRADED_ACTION_PRE_PUSH`: per-stage override
|
|
122
|
+
- `PUMUKI_DEGRADED_ACTION_CI`: per-stage override
|
|
123
|
+
|
|
124
|
+
File contract (`.pumuki/degraded-mode.json`):
|
|
125
|
+
|
|
126
|
+
```json
|
|
127
|
+
{
|
|
128
|
+
"version": "1.0",
|
|
129
|
+
"enabled": true,
|
|
130
|
+
"reason": "offline-airgapped",
|
|
131
|
+
"stages": {
|
|
132
|
+
"PRE_WRITE": "block",
|
|
133
|
+
"PRE_COMMIT": "allow",
|
|
134
|
+
"PRE_PUSH": "block",
|
|
135
|
+
"CI": "block"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Runtime behavior:
|
|
141
|
+
|
|
142
|
+
- `action=block`:
|
|
143
|
+
- gate adds finding `governance.degraded-mode.blocked`
|
|
144
|
+
- SDD returns `SDD_DEGRADED_MODE_BLOCKED`
|
|
145
|
+
- `action=allow`:
|
|
146
|
+
- gate adds informational finding `governance.degraded-mode.active`
|
|
147
|
+
- SDD returns `ALLOWED` with degraded metadata in `decision.details`
|
|
148
|
+
|
|
149
|
+
Traceability:
|
|
150
|
+
|
|
151
|
+
- `policyTrace.degraded` is emitted for gate stages.
|
|
152
|
+
- hook summaries include `degraded_mode`, `degraded_action`, and `degraded_reason` when active.
|
|
153
|
+
- evidence/telemetry include degraded metadata in policy trace when available.
|
|
154
|
+
|
|
155
|
+
## SDD sync-docs learning artifact
|
|
156
|
+
|
|
157
|
+
When `pumuki sdd sync-docs` runs with `--change=<change-id>`, the command emits a machine-readable learning payload.
|
|
158
|
+
|
|
159
|
+
Write path:
|
|
160
|
+
|
|
161
|
+
- `openspec/changes/<change-id>/learning.json`
|
|
162
|
+
|
|
163
|
+
Payload schema (`v1.0`):
|
|
164
|
+
|
|
165
|
+
```json
|
|
166
|
+
{
|
|
167
|
+
"version": "1.0",
|
|
168
|
+
"change_id": "rgo-1700-01",
|
|
169
|
+
"stage": "PRE_COMMIT",
|
|
170
|
+
"task": "P12.F2.T67",
|
|
171
|
+
"generated_at": "2026-03-04T10:05:00.000Z",
|
|
172
|
+
"failed_patterns": ["ai-gate.blocked"],
|
|
173
|
+
"successful_patterns": ["sync-docs.completed", "sync-docs.updated"],
|
|
174
|
+
"rule_updates": [
|
|
175
|
+
"ai-gate.unblock.required",
|
|
176
|
+
"ai-gate.violation.EVIDENCE_STALE.review"
|
|
177
|
+
],
|
|
178
|
+
"gate_anomalies": ["ai-gate.violation.EVIDENCE_STALE"],
|
|
179
|
+
"sync_docs": {
|
|
180
|
+
"updated": true,
|
|
181
|
+
"file_paths": [
|
|
182
|
+
"docs/technical/08-validation/refactor/pumuki-integration-feedback.md"
|
|
183
|
+
]
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
Behavior:
|
|
189
|
+
|
|
190
|
+
- `--dry-run`: includes learning payload in JSON output with `learning.written=false` and does not write files.
|
|
191
|
+
- non dry-run: persists `learning.json` deterministically and reports digest/path in output.
|
|
192
|
+
- `rule_updates`: deterministic recommendations derived from evidence/gate signals (`missing`, `invalid`, `blocked`, `allowed`).
|
|
193
|
+
- dedicated command: `pumuki sdd learn --change=<id> [--stage=<stage>] [--task=<task>] [--dry-run] [--json]` generates/persists the same artifact without requiring `sync-docs`.
|
|
194
|
+
- orchestration command: `pumuki sdd auto-sync --change=<id> [--stage=<stage>] [--task=<task>] [--dry-run] [--json]` executes deterministic docs sync plus learning generation in one step.
|
|
195
|
+
|
|
100
196
|
## Gate telemetry export (optional)
|
|
101
197
|
|
|
102
198
|
Structured telemetry output is disabled by default and can be enabled with environment variables:
|
package/docs/RELEASE_NOTES.md
CHANGED
|
@@ -5,6 +5,53 @@ Detailed commit history remains available through Git history (`git log` / `git
|
|
|
5
5
|
|
|
6
6
|
## 2026-03 (enterprise hardening updates)
|
|
7
7
|
|
|
8
|
+
### 2026-03-04 (v6.3.36)
|
|
9
|
+
|
|
10
|
+
- SDD orchestration hardening shipped:
|
|
11
|
+
- New enterprise command `pumuki sdd auto-sync` with `--change`, optional `--stage/--task`, `--dry-run`, and `--json`.
|
|
12
|
+
- `auto-sync` orchestrates deterministic docs sync plus learning generation in one step.
|
|
13
|
+
- Fail-safe behavior preserved through the existing transactional `sync-docs` path (no partial writes on conflict).
|
|
14
|
+
- Traceability:
|
|
15
|
+
- implementation issue: `#600`
|
|
16
|
+
- implementation PR: `#602`
|
|
17
|
+
- tracking sync PR: `#604`
|
|
18
|
+
- Consumer quick verification:
|
|
19
|
+
- `npx --yes --package pumuki@latest pumuki sdd auto-sync --change=rgo-quickstart-02 --stage=PRE_WRITE --task=P12.F2.T70 --dry-run --json`
|
|
20
|
+
- expected signal:
|
|
21
|
+
- `command=pumuki sdd auto-sync` available in CLI help.
|
|
22
|
+
- JSON payload includes `syncDocs.updated` and `learning.path`.
|
|
23
|
+
|
|
24
|
+
### 2026-03-04 (v6.3.35)
|
|
25
|
+
|
|
26
|
+
- SDD enterprise incremental hardening shipped:
|
|
27
|
+
- New dedicated command `pumuki sdd learn` with `--change`, optional `--stage/--task`, `--dry-run`, and `--json`.
|
|
28
|
+
- `sync-docs` learning artifact now emits deterministic signal-derived `rule_updates`.
|
|
29
|
+
- Learning payload remains deterministic across missing/invalid/blocked/allowed evidence states.
|
|
30
|
+
- Traceability:
|
|
31
|
+
- implementation PRs: `#593`, `#596`, `#599`
|
|
32
|
+
- Consumer quick verification:
|
|
33
|
+
- `npx --yes --package pumuki@latest pumuki sdd learn --change=rgo-quickstart-01 --dry-run --json`
|
|
34
|
+
- `npx --yes --package pumuki@latest pumuki sdd sync-docs --change=rgo-quickstart-01 --stage=PRE_WRITE --task=P12.F2.T68 --dry-run --json`
|
|
35
|
+
- expected signal:
|
|
36
|
+
- `command=pumuki sdd learn` available in CLI help.
|
|
37
|
+
- `learning.artifact.rule_updates` populated deterministically when evidence is blocked/invalid.
|
|
38
|
+
|
|
39
|
+
### 2026-03-04 (v6.3.34)
|
|
40
|
+
|
|
41
|
+
- Telemetry hardening shipped for long-running enterprise repos:
|
|
42
|
+
- Gate telemetry JSONL supports deterministic size-guard rotation with `PUMUKI_TELEMETRY_JSONL_MAX_BYTES`.
|
|
43
|
+
- Enterprise contract suite now includes profile `telemetry-rotation` to validate JSONL rollover behavior.
|
|
44
|
+
- Traceability:
|
|
45
|
+
- implementation PRs: `#574`, `#577`
|
|
46
|
+
- release PR: `#580`
|
|
47
|
+
- Consumer quick verification:
|
|
48
|
+
- `npx --yes --package pumuki@latest pumuki doctor --json`
|
|
49
|
+
- `npm run -s validation:contract-suite:enterprise -- --json`
|
|
50
|
+
- `PUMUKI_TELEMETRY_JSONL_PATH=.pumuki/artifacts/gate-telemetry.jsonl PUMUKI_TELEMETRY_JSONL_MAX_BYTES=512 npx --yes --package pumuki@latest pumuki sdd validate --stage=PRE_WRITE --json`
|
|
51
|
+
- expected signal:
|
|
52
|
+
- contract suite list includes profile `telemetry-rotation`
|
|
53
|
+
- after repeated validations, files `gate-telemetry.jsonl` and `gate-telemetry.jsonl.1` are present
|
|
54
|
+
|
|
8
55
|
### 2026-03-04 (v6.3.33)
|
|
9
56
|
|
|
10
57
|
- Runtime hardening shipped for enterprise diagnosis:
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
## Estado actual
|
|
8
8
|
- Plan activo: `docs/seguimiento-completo-validacion-ruralgo-03-03-2026.md`
|
|
9
9
|
- Estado del plan: EN CURSO
|
|
10
|
-
-
|
|
10
|
+
- Última task cerrada (`✅`): `P12.F2.T70` (comando orquestador `pumuki sdd auto-sync`, issue `#600`, PR `#602`, commit `2be34c5`).
|
|
11
|
+
- Task activa (`🚧`): `P12.F2.T71` (publicar release `6.3.36` con `auto-sync`, issue `#603`).
|
|
11
12
|
|
|
12
13
|
## Historial resumido
|
|
13
14
|
- No se mantienen MDs históricos de seguimiento en este repositorio.
|
|
@@ -1838,11 +1838,141 @@ Criterio de salida F5:
|
|
|
1838
1838
|
- `npm run -s validation:tracking-single-active`
|
|
1839
1839
|
- `docs/validation/README.md` actualizado con perfiles activos de la suite contractual.
|
|
1840
1840
|
|
|
1841
|
-
-
|
|
1841
|
+
- ✅ `P12.F2.T60` Publicar patch release con mejoras de telemetría (`#574`, `#577`) para disponibilidad inmediata en npm.
|
|
1842
|
+
- cierre ejecutado:
|
|
1843
|
+
- issue de release creada y cerrada: `#578`.
|
|
1844
|
+
- rama release creada y mergeada: `release/6.3.34` -> `#580` (`https://github.com/SwiftEnProfundidad/ast-intelligence-hooks/pull/580`).
|
|
1845
|
+
- publicación npm completada: `pumuki@6.3.34`.
|
|
1846
|
+
- evidencia:
|
|
1847
|
+
- `npm run -s validation:tracking-single-active`
|
|
1848
|
+
- `npm view pumuki version` => `6.3.34`
|
|
1849
|
+
- `gh issue close 578 --comment "Closed via PR #580 and npm publish 6.3.34 (telemetry rotation + contract profile telemetry-rotation)."`
|
|
1850
|
+
|
|
1851
|
+
- ✅ `P12.F2.T61` Publicar documentación de adopción de `6.3.34` (release notes + verificación operativa rápida).
|
|
1852
|
+
- cierre ejecutado:
|
|
1853
|
+
- issue documental creada y cerrada: `#581`.
|
|
1854
|
+
- `docs/RELEASE_NOTES.md` actualizado con entrada `2026-03-04 (v6.3.34)` y comandos de verificación operativa.
|
|
1855
|
+
- trazabilidad sincronizada en plan activo + registro maestro.
|
|
1856
|
+
- evidencia:
|
|
1857
|
+
- `npm run -s validation:tracking-single-active`
|
|
1858
|
+
- `gh issue close 581 --comment "Closed via release notes update for 6.3.34 and tracking sync."`
|
|
1859
|
+
|
|
1860
|
+
- ✅ `P12.F2.T62` Ejecutar la siguiente mejora estratégica pendiente: modo degradado offline/air-gapped para gates enterprise (`#583`).
|
|
1861
|
+
- cierre ejecutado:
|
|
1862
|
+
- contrato reutilizable implementado en `integrations/gate/degradedMode.ts` con precedencia `env -> .pumuki/degraded-mode.json`.
|
|
1863
|
+
- `resolvePolicyForStage` expone `trace.degraded` por stage.
|
|
1864
|
+
- `runPlatformGate` aplica enforcement:
|
|
1865
|
+
- `action=block` -> finding `governance.degraded-mode.blocked` + gate `BLOCK`.
|
|
1866
|
+
- `action=allow` -> finding `governance.degraded-mode.active` + gate permite continuar.
|
|
1867
|
+
- hooks exitosos publican resumen degradado (`degraded_mode`, `degraded_action`, `degraded_reason`).
|
|
1868
|
+
- SDD integra el contrato:
|
|
1869
|
+
- `action=block` -> `SDD_DEGRADED_MODE_BLOCKED`.
|
|
1870
|
+
- `action=allow` -> `ALLOWED` con metadata degradada en `decision.details`.
|
|
1871
|
+
- documentación operativa actualizada en `docs/CONFIGURATION.md`.
|
|
1872
|
+
- evidencia:
|
|
1873
|
+
- `npx --yes tsx@4.21.0 --test integrations/gate/__tests__/stagePolicies.test.ts integrations/git/__tests__/runPlatformGate.test.ts integrations/git/__tests__/hookGateSummary.test.ts integrations/sdd/__tests__/policy.test.ts` => `58 passed, 0 failed`.
|
|
1874
|
+
- `npx --yes tsx@4.21.0 --test integrations/telemetry/__tests__/gateTelemetry.test.ts` => `4 passed`.
|
|
1875
|
+
- `npx --yes tsx@4.21.0 --test integrations/git/__tests__/EvidenceService.test.ts` => `15 passed`.
|
|
1876
|
+
|
|
1877
|
+
- ✅ `P12.F2.T63` Iniciar SDD pendiente enterprise: extender `pumuki sdd sync-docs` con contexto explícito (`--change`, `--stage`, `--task`) y trazabilidad canónica (`#585`).
|
|
1878
|
+
- cierre ejecutado:
|
|
1879
|
+
- `runSddSyncDocs` amplía contrato con contexto explícito (`change`, `stage`, `task`) en salida canónica.
|
|
1880
|
+
- `parseLifecycleCliArgs` soporta:
|
|
1881
|
+
- `pumuki sdd sync-docs --change=<id> --stage=<stage> --task=<task-id> [--dry-run] [--json]`.
|
|
1882
|
+
- `runLifecycleCli` propaga contexto al runtime y lo imprime en salida texto/json.
|
|
1883
|
+
- cobertura de tests ampliada para parsing + ejecución `dry-run` + contrato JSON de contexto.
|
|
1884
|
+
- evidencia:
|
|
1885
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `31 passed, 0 failed`.
|
|
1886
|
+
|
|
1887
|
+
- ✅ `P12.F2.T64` Continuar SDD pendiente enterprise: ampliar `sync-docs` a múltiples documentos canónicos y secciones gestionadas (`#587`).
|
|
1888
|
+
- cierre ejecutado:
|
|
1889
|
+
- `runSddSyncDocs` soporta objetivos múltiples (`targets`) con secciones gestionadas por archivo.
|
|
1890
|
+
- actualización determinista por archivo/sección y salida con diffs por cada target.
|
|
1891
|
+
- fail-safe preservado: conflicto en cualquier archivo aborta el sync antes de cualquier escritura parcial.
|
|
1892
|
+
- cobertura de tests ampliada para:
|
|
1893
|
+
- actualización multi-documento.
|
|
1894
|
+
- garantía fail-safe sin escrituras parciales.
|
|
1895
|
+
- evidencia:
|
|
1896
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `33 passed, 0 failed`.
|
|
1897
|
+
|
|
1898
|
+
- ✅ `P12.F2.T65` Continuar SDD pendiente enterprise: artefacto de aprendizaje machine-readable por change durante `sync-docs` (`#589`).
|
|
1899
|
+
- cierre ejecutado:
|
|
1900
|
+
- `runSddSyncDocs` incorpora contrato `learning` en salida con:
|
|
1901
|
+
- `path`, `written`, `digest`, `artifact`.
|
|
1902
|
+
- cuando se provee `--change`:
|
|
1903
|
+
- `--dry-run`: no escribe archivo y retorna payload de aprendizaje.
|
|
1904
|
+
- ejecución normal: persiste `openspec/changes/<change>/learning.json`.
|
|
1905
|
+
- cobertura de tests ampliada para dry-run y persistencia real del artefacto.
|
|
1906
|
+
- documentación mínima del esquema añadida en `docs/CONFIGURATION.md`.
|
|
1907
|
+
- evidencia:
|
|
1908
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `34 passed, 0 failed`.
|
|
1909
|
+
|
|
1910
|
+
- ✅ `P12.F2.T66` Continuar SDD pendiente enterprise: enriquecer `learning.json` con señales reales de gate/evidence (`#591`).
|
|
1911
|
+
- cierre ejecutado:
|
|
1912
|
+
- `runSddSyncDocs` incorpora señales deterministas de runtime para poblar:
|
|
1913
|
+
- `failed_patterns`
|
|
1914
|
+
- `successful_patterns`
|
|
1915
|
+
- `gate_anomalies`
|
|
1916
|
+
- el cálculo cubre casos `evidence missing/invalid/valid` y decisión SDD permitida/bloqueada.
|
|
1917
|
+
- soporte explícito para inyectar lector de evidencia en tests (`evidenceReader`) sin romper contrato CLI.
|
|
1918
|
+
- PR mergeada: `#593` (`commit 0da619a3804ec939bc33385cfc57032c195b4ee1`).
|
|
1919
|
+
- evidencia:
|
|
1920
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `35 passed, 0 failed`.
|
|
1921
|
+
- `npm run -s typecheck` => `exit 0`.
|
|
1922
|
+
|
|
1923
|
+
- ✅ `P12.F2.T67` Continuar SDD pendiente enterprise: hacer `rule_updates` accionable en `learning.json` (`#594`).
|
|
1924
|
+
- cierre ejecutado:
|
|
1925
|
+
- `runSddSyncDocs` ahora deriva `rule_updates` de señales de evidencia/gate (`missing`, `invalid`, `blocked`, `allowed`) de forma determinista.
|
|
1926
|
+
- añadidas recomendaciones específicas por familia de señal (`evidence.*`, `ai-gate.*`, `sdd.*`, `snapshot.*`).
|
|
1927
|
+
- ampliada cobertura en `syncDocs` para escenarios `invalid` y `allow` además de `blocked`/persistencia.
|
|
1928
|
+
- documentación de contrato actualizada en `docs/CONFIGURATION.md`.
|
|
1929
|
+
- PR mergeada: `#596` (`commit 51d894c8835c9b04cb57dd810197ac7fc3d0cd3e`).
|
|
1930
|
+
- evidencia:
|
|
1931
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `37 passed, 0 failed`.
|
|
1932
|
+
- `npm run -s typecheck` => `exit 0`.
|
|
1933
|
+
|
|
1934
|
+
- ✅ `P12.F2.T68` Continuar SDD pendiente enterprise: añadir comando dedicado `pumuki sdd learn` (`#597`).
|
|
1935
|
+
- cierre ejecutado:
|
|
1936
|
+
- nuevo runtime `runSddLearn` en capa SDD con salida/persistencia de `learning.json` sin depender de `sync-docs`.
|
|
1937
|
+
- CLI ampliada con:
|
|
1938
|
+
- `pumuki sdd learn --change=<id> --stage=<stage> --task=<task-id> [--dry-run] [--json]`.
|
|
1939
|
+
- cobertura de regresión añadida en parser y ejecución (`cli.test.ts`) y documentación actualizada en `docs/CONFIGURATION.md`.
|
|
1940
|
+
- PR mergeada: `#599` (`commit c971c643883ccce679c0c5cdb3363bdd6e6cace6`).
|
|
1941
|
+
- evidencia:
|
|
1942
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `38 passed, 0 failed`.
|
|
1943
|
+
- `npm run -s typecheck` => `exit 0`.
|
|
1944
|
+
|
|
1945
|
+
- ✅ `P12.F2.T69` Publicar release `6.3.35` con cierre SDD incremental.
|
|
1946
|
+
- cierre ejecutado:
|
|
1947
|
+
- versión incrementada a `6.3.35` en `package.json` y `package-lock.json`.
|
|
1948
|
+
- release notes actualizadas con entrada `2026-03-04 (v6.3.35)` en `docs/RELEASE_NOTES.md`.
|
|
1949
|
+
- publicación npm ejecutada con éxito (`npm publish --access public`).
|
|
1950
|
+
- propagación validada:
|
|
1951
|
+
- `npm view pumuki dist-tags --json` => `"latest": "6.3.35"`.
|
|
1952
|
+
- smoke `@latest` en carpeta temporal mostrando `pumuki sdd learn ...` en `--help`.
|
|
1953
|
+
- evidencia:
|
|
1954
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `38 passed, 0 failed`.
|
|
1955
|
+
- `npm run -s typecheck` => `exit 0`.
|
|
1956
|
+
- `npm publish --access public` => `+ pumuki@6.3.35`.
|
|
1957
|
+
- `npm view pumuki@6.3.35 version` => `6.3.35`.
|
|
1958
|
+
|
|
1959
|
+
- ✅ `P12.F2.T70` Siguiente SDD pendiente enterprise: comando orquestador `pumuki sdd auto-sync` (`#600`).
|
|
1960
|
+
- cierre ejecutado:
|
|
1961
|
+
- nuevo runtime `runSddAutoSync` en capa SDD para orquestar `sync-docs` + `learning` en un único paso determinista.
|
|
1962
|
+
- CLI ampliada con:
|
|
1963
|
+
- `pumuki sdd auto-sync --change=<id> --stage=<stage> --task=<task-id> [--dry-run] [--json]`.
|
|
1964
|
+
- cobertura de regresión añadida en `syncDocs`/`index`/`cli` y documentación actualizada en `docs/CONFIGURATION.md`.
|
|
1965
|
+
- issue cerrada: `#600`.
|
|
1966
|
+
- PR mergeada: `#602` (`commit 2be34c5`).
|
|
1967
|
+
- evidencia:
|
|
1968
|
+
- `npx --yes tsx@4.21.0 --test integrations/sdd/__tests__/syncDocs.test.ts integrations/sdd/__tests__/index.test.ts integrations/lifecycle/__tests__/cli.test.ts` => `44 passed, 0 failed`.
|
|
1969
|
+
- `npm run -s typecheck` => `exit 0`.
|
|
1970
|
+
|
|
1971
|
+
- 🚧 `P12.F2.T71` Publicar release `6.3.36` con `pumuki sdd auto-sync` (`#603`).
|
|
1842
1972
|
- salida esperada:
|
|
1843
|
-
-
|
|
1844
|
-
-
|
|
1845
|
-
-
|
|
1973
|
+
- versionado a `6.3.36` en `package.json`, `package-lock.json` y `VERSION`.
|
|
1974
|
+
- release notes actualizadas con entrada `v6.3.36`.
|
|
1975
|
+
- publicación npm validada (`latest=6.3.36`) + smoke de `--help` mostrando `auto-sync`.
|
|
1846
1976
|
|
|
1847
1977
|
Criterio de salida F6:
|
|
1848
1978
|
- veredicto final trazable y cierre administrativo completo.
|
|
@@ -91,6 +91,11 @@ export type RulesetState = {
|
|
|
91
91
|
source?: string;
|
|
92
92
|
validation_status?: 'valid' | 'invalid' | 'expired' | 'unknown-source';
|
|
93
93
|
validation_code?: string;
|
|
94
|
+
degraded_mode_enabled?: boolean;
|
|
95
|
+
degraded_mode_action?: 'allow' | 'block';
|
|
96
|
+
degraded_mode_reason?: string;
|
|
97
|
+
degraded_mode_source?: 'env' | 'file:.pumuki/degraded-mode.json';
|
|
98
|
+
degraded_mode_code?: 'DEGRADED_MODE_ALLOWED' | 'DEGRADED_MODE_BLOCKED';
|
|
94
99
|
};
|
|
95
100
|
|
|
96
101
|
export type HumanIntentConfidence = 'high' | 'medium' | 'low' | 'unset';
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { existsSync, readFileSync } from 'node:fs';
|
|
2
|
+
import { join } from 'node:path';
|
|
3
|
+
|
|
4
|
+
export type DegradedStage = 'PRE_WRITE' | 'PRE_COMMIT' | 'PRE_PUSH' | 'CI';
|
|
5
|
+
export type DegradedAction = 'allow' | 'block';
|
|
6
|
+
export type DegradedCode = 'DEGRADED_MODE_ALLOWED' | 'DEGRADED_MODE_BLOCKED';
|
|
7
|
+
|
|
8
|
+
export type DegradedResolution = {
|
|
9
|
+
enabled: true;
|
|
10
|
+
action: DegradedAction;
|
|
11
|
+
reason: string;
|
|
12
|
+
source: 'env' | 'file:.pumuki/degraded-mode.json';
|
|
13
|
+
code: DegradedCode;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
const DEGRADED_MODE_FILE_PATH = '.pumuki/degraded-mode.json';
|
|
17
|
+
|
|
18
|
+
const toBooleanFlag = (value: string | undefined): boolean | null => {
|
|
19
|
+
const normalized = value?.trim().toLowerCase();
|
|
20
|
+
if (!normalized) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
if (normalized === '1' || normalized === 'true' || normalized === 'yes' || normalized === 'on') {
|
|
24
|
+
return true;
|
|
25
|
+
}
|
|
26
|
+
if (normalized === '0' || normalized === 'false' || normalized === 'no' || normalized === 'off') {
|
|
27
|
+
return false;
|
|
28
|
+
}
|
|
29
|
+
return null;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const toAction = (value: unknown): DegradedAction | null => {
|
|
33
|
+
if (typeof value !== 'string') {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
const normalized = value.trim().toLowerCase();
|
|
37
|
+
if (normalized === 'allow') {
|
|
38
|
+
return 'allow';
|
|
39
|
+
}
|
|
40
|
+
if (normalized === 'block') {
|
|
41
|
+
return 'block';
|
|
42
|
+
}
|
|
43
|
+
return null;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const toCode = (action: DegradedAction): DegradedCode => {
|
|
47
|
+
return action === 'block' ? 'DEGRADED_MODE_BLOCKED' : 'DEGRADED_MODE_ALLOWED';
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const resolveActionFromEnv = (stage: DegradedStage): DegradedAction => {
|
|
51
|
+
const stageKey = `PUMUKI_DEGRADED_ACTION_${stage}`;
|
|
52
|
+
const byStage = toAction(process.env[stageKey]);
|
|
53
|
+
if (byStage) {
|
|
54
|
+
return byStage;
|
|
55
|
+
}
|
|
56
|
+
const globalAction = toAction(process.env.PUMUKI_DEGRADED_ACTION);
|
|
57
|
+
if (globalAction) {
|
|
58
|
+
return globalAction;
|
|
59
|
+
}
|
|
60
|
+
return 'allow';
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
type DegradedModeFile = {
|
|
64
|
+
version?: unknown;
|
|
65
|
+
enabled?: unknown;
|
|
66
|
+
reason?: unknown;
|
|
67
|
+
action?: unknown;
|
|
68
|
+
stages?: unknown;
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
const isRecord = (value: unknown): value is Record<string, unknown> => {
|
|
72
|
+
return typeof value === 'object' && value !== null;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const resolveFromFile = (
|
|
76
|
+
repoRoot: string,
|
|
77
|
+
stage: DegradedStage
|
|
78
|
+
): DegradedResolution | undefined => {
|
|
79
|
+
const configPath = join(repoRoot, DEGRADED_MODE_FILE_PATH);
|
|
80
|
+
if (!existsSync(configPath)) {
|
|
81
|
+
return undefined;
|
|
82
|
+
}
|
|
83
|
+
try {
|
|
84
|
+
const parsed = JSON.parse(readFileSync(configPath, 'utf8')) as DegradedModeFile;
|
|
85
|
+
if (parsed.enabled !== true) {
|
|
86
|
+
return undefined;
|
|
87
|
+
}
|
|
88
|
+
const stageActions = isRecord(parsed.stages) ? parsed.stages : undefined;
|
|
89
|
+
const stageAction = stageActions ? toAction(stageActions[stage]) : null;
|
|
90
|
+
const globalAction = toAction(parsed.action);
|
|
91
|
+
const action = stageAction ?? globalAction ?? 'allow';
|
|
92
|
+
const reason =
|
|
93
|
+
typeof parsed.reason === 'string' && parsed.reason.trim().length > 0
|
|
94
|
+
? parsed.reason.trim()
|
|
95
|
+
: 'degraded-mode';
|
|
96
|
+
return {
|
|
97
|
+
enabled: true,
|
|
98
|
+
action,
|
|
99
|
+
reason,
|
|
100
|
+
source: 'file:.pumuki/degraded-mode.json',
|
|
101
|
+
code: toCode(action),
|
|
102
|
+
};
|
|
103
|
+
} catch {
|
|
104
|
+
return undefined;
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
export const resolveDegradedMode = (
|
|
109
|
+
stage: DegradedStage,
|
|
110
|
+
repoRoot: string = process.cwd()
|
|
111
|
+
): DegradedResolution | undefined => {
|
|
112
|
+
const enabledFromEnv = toBooleanFlag(process.env.PUMUKI_DEGRADED_MODE);
|
|
113
|
+
if (enabledFromEnv === true) {
|
|
114
|
+
const action = resolveActionFromEnv(stage);
|
|
115
|
+
const reason =
|
|
116
|
+
process.env.PUMUKI_DEGRADED_REASON?.trim().length
|
|
117
|
+
? process.env.PUMUKI_DEGRADED_REASON.trim()
|
|
118
|
+
: 'degraded-mode';
|
|
119
|
+
return {
|
|
120
|
+
enabled: true,
|
|
121
|
+
action,
|
|
122
|
+
reason,
|
|
123
|
+
source: 'env',
|
|
124
|
+
code: toCode(action),
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
if (enabledFromEnv === false) {
|
|
128
|
+
return undefined;
|
|
129
|
+
}
|
|
130
|
+
return resolveFromFile(repoRoot, stage);
|
|
131
|
+
};
|
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
loadSkillsPolicy,
|
|
11
11
|
} from '../config/skillsPolicy';
|
|
12
12
|
import type { SkillsStage } from '../config/skillsLock';
|
|
13
|
+
import { resolveDegradedMode } from './degradedMode';
|
|
13
14
|
|
|
14
15
|
const heuristicsPromotionStageAllowList = new Set<GateStage>([
|
|
15
16
|
'PRE_COMMIT',
|
|
@@ -58,6 +59,13 @@ export type ResolvedStagePolicy = {
|
|
|
58
59
|
message: string;
|
|
59
60
|
strict: boolean;
|
|
60
61
|
};
|
|
62
|
+
degraded?: {
|
|
63
|
+
enabled: true;
|
|
64
|
+
action: 'allow' | 'block';
|
|
65
|
+
reason: string;
|
|
66
|
+
source: 'env' | 'file:.pumuki/degraded-mode.json';
|
|
67
|
+
code: 'DEGRADED_MODE_ALLOWED' | 'DEGRADED_MODE_BLOCKED';
|
|
68
|
+
};
|
|
61
69
|
};
|
|
62
70
|
};
|
|
63
71
|
|
|
@@ -519,6 +527,7 @@ export const resolvePolicyForStage = (
|
|
|
519
527
|
stage: SkillsStage,
|
|
520
528
|
repoRoot: string = process.cwd()
|
|
521
529
|
): ResolvedStagePolicy => {
|
|
530
|
+
const degraded = resolveDegradedMode(stage, repoRoot);
|
|
522
531
|
const hardModeState = resolveHardModeState(repoRoot);
|
|
523
532
|
if (hardModeState.enabled) {
|
|
524
533
|
const profileName = hardModeState.profileName;
|
|
@@ -553,6 +562,7 @@ export const resolvePolicyForStage = (
|
|
|
553
562
|
signature: policyAsCode.signature,
|
|
554
563
|
policySource: policyAsCode.policySource,
|
|
555
564
|
validation: policyAsCode.validation,
|
|
565
|
+
...(degraded ? { degraded } : {}),
|
|
556
566
|
},
|
|
557
567
|
};
|
|
558
568
|
}
|
|
@@ -586,6 +596,7 @@ export const resolvePolicyForStage = (
|
|
|
586
596
|
signature: policyAsCode.signature,
|
|
587
597
|
policySource: policyAsCode.policySource,
|
|
588
598
|
validation: policyAsCode.validation,
|
|
599
|
+
...(degraded ? { degraded } : {}),
|
|
589
600
|
},
|
|
590
601
|
};
|
|
591
602
|
}
|
|
@@ -621,6 +632,7 @@ export const resolvePolicyForStage = (
|
|
|
621
632
|
signature: policyAsCode.signature,
|
|
622
633
|
policySource: policyAsCode.policySource,
|
|
623
634
|
validation: policyAsCode.validation,
|
|
635
|
+
...(degraded ? { degraded } : {}),
|
|
624
636
|
},
|
|
625
637
|
};
|
|
626
638
|
};
|
|
@@ -112,6 +112,15 @@ export class EvidenceService implements IEvidenceService {
|
|
|
112
112
|
validation_code: params.policyTrace.validation.code,
|
|
113
113
|
}
|
|
114
114
|
: {}),
|
|
115
|
+
...(params.policyTrace.degraded
|
|
116
|
+
? {
|
|
117
|
+
degraded_mode_enabled: params.policyTrace.degraded.enabled,
|
|
118
|
+
degraded_mode_action: params.policyTrace.degraded.action,
|
|
119
|
+
degraded_mode_reason: params.policyTrace.degraded.reason,
|
|
120
|
+
degraded_mode_source: params.policyTrace.degraded.source,
|
|
121
|
+
degraded_mode_code: params.policyTrace.degraded.code,
|
|
122
|
+
}
|
|
123
|
+
: {}),
|
|
115
124
|
});
|
|
116
125
|
}
|
|
117
126
|
|
|
@@ -366,6 +366,40 @@ const toPolicyAsCodeBlockingFinding = (params: {
|
|
|
366
366
|
};
|
|
367
367
|
};
|
|
368
368
|
|
|
369
|
+
const toDegradedModeFinding = (params: {
|
|
370
|
+
stage: 'PRE_COMMIT' | 'PRE_PUSH' | 'CI';
|
|
371
|
+
policyTrace?: ResolvedStagePolicy['trace'];
|
|
372
|
+
}): Finding | undefined => {
|
|
373
|
+
const degraded = params.policyTrace?.degraded;
|
|
374
|
+
if (!degraded?.enabled) {
|
|
375
|
+
return undefined;
|
|
376
|
+
}
|
|
377
|
+
if (degraded.action === 'block') {
|
|
378
|
+
return {
|
|
379
|
+
ruleId: 'governance.degraded-mode.blocked',
|
|
380
|
+
severity: 'ERROR',
|
|
381
|
+
code: degraded.code,
|
|
382
|
+
message:
|
|
383
|
+
`Degraded mode is active at ${params.stage} with fail-closed action=block. ` +
|
|
384
|
+
`reason=${degraded.reason} source=${degraded.source}.`,
|
|
385
|
+
filePath: '.pumuki/degraded-mode.json',
|
|
386
|
+
matchedBy: 'DegradedModeGuard',
|
|
387
|
+
source: 'degraded-mode',
|
|
388
|
+
};
|
|
389
|
+
}
|
|
390
|
+
return {
|
|
391
|
+
ruleId: 'governance.degraded-mode.active',
|
|
392
|
+
severity: 'INFO',
|
|
393
|
+
code: degraded.code,
|
|
394
|
+
message:
|
|
395
|
+
`Degraded mode is active at ${params.stage} with fail-open action=allow. ` +
|
|
396
|
+
`reason=${degraded.reason} source=${degraded.source}.`,
|
|
397
|
+
filePath: '.pumuki/degraded-mode.json',
|
|
398
|
+
matchedBy: 'DegradedModeGuard',
|
|
399
|
+
source: 'degraded-mode',
|
|
400
|
+
};
|
|
401
|
+
};
|
|
402
|
+
|
|
369
403
|
const toGateWaiverAppliedFinding = (params: {
|
|
370
404
|
stage: 'PRE_COMMIT' | 'PRE_PUSH' | 'CI';
|
|
371
405
|
waiver: Extract<GateWaiverResult, { kind: 'applied' }>['waiver'];
|
|
@@ -621,6 +655,16 @@ export async function runPlatformGate(params: {
|
|
|
621
655
|
policyTrace: params.policyTrace,
|
|
622
656
|
})
|
|
623
657
|
: undefined;
|
|
658
|
+
const degradedModeFinding =
|
|
659
|
+
params.policy.stage === 'PRE_COMMIT' ||
|
|
660
|
+
params.policy.stage === 'PRE_PUSH' ||
|
|
661
|
+
params.policy.stage === 'CI'
|
|
662
|
+
? toDegradedModeFinding({
|
|
663
|
+
stage: params.policy.stage,
|
|
664
|
+
policyTrace: params.policyTrace,
|
|
665
|
+
})
|
|
666
|
+
: undefined;
|
|
667
|
+
const degradedModeBlocks = params.policyTrace?.degraded?.action === 'block';
|
|
624
668
|
const rulesCoverage = coverage
|
|
625
669
|
? {
|
|
626
670
|
stage: params.policy.stage,
|
|
@@ -665,6 +709,7 @@ export async function runPlatformGate(params: {
|
|
|
665
709
|
const effectiveFindings = sddBlockingFinding
|
|
666
710
|
? [
|
|
667
711
|
sddBlockingFinding,
|
|
712
|
+
...(degradedModeFinding ? [degradedModeFinding] : []),
|
|
668
713
|
...(policyAsCodeBlockingFinding ? [policyAsCodeBlockingFinding] : []),
|
|
669
714
|
...(unsupportedSkillsMappingFinding ? [unsupportedSkillsMappingFinding] : []),
|
|
670
715
|
...(platformSkillsCoverageFinding ? [platformSkillsCoverageFinding] : []),
|
|
@@ -678,8 +723,10 @@ export async function runPlatformGate(params: {
|
|
|
678
723
|
|| skillsScopeComplianceFinding
|
|
679
724
|
|| coverageBlockingFinding
|
|
680
725
|
|| policyAsCodeBlockingFinding
|
|
726
|
+
|| degradedModeFinding
|
|
681
727
|
|| tddBddEvaluation.findings.length > 0
|
|
682
728
|
? [
|
|
729
|
+
...(degradedModeFinding ? [degradedModeFinding] : []),
|
|
683
730
|
...(policyAsCodeBlockingFinding ? [policyAsCodeBlockingFinding] : []),
|
|
684
731
|
...(unsupportedSkillsMappingFinding ? [unsupportedSkillsMappingFinding] : []),
|
|
685
732
|
...(platformSkillsCoverageFinding ? [platformSkillsCoverageFinding] : []),
|
|
@@ -692,6 +739,7 @@ export async function runPlatformGate(params: {
|
|
|
692
739
|
const decision = dependencies.evaluateGate([...effectiveFindings], params.policy);
|
|
693
740
|
const baseGateOutcome =
|
|
694
741
|
sddBlockingFinding ||
|
|
742
|
+
degradedModeBlocks ||
|
|
695
743
|
policyAsCodeBlockingFinding ||
|
|
696
744
|
unsupportedSkillsMappingFinding ||
|
|
697
745
|
platformSkillsCoverageFinding ||
|
|
@@ -120,11 +120,17 @@ const emitSuccessfulHookGateSummary = (params: {
|
|
|
120
120
|
params.stage === 'PRE_COMMIT'
|
|
121
121
|
? PRE_COMMIT_EVIDENCE_MAX_AGE_SECONDS
|
|
122
122
|
: PRE_PUSH_EVIDENCE_MAX_AGE_SECONDS;
|
|
123
|
+
const degradedSummary =
|
|
124
|
+
params.policyTrace.degraded?.enabled
|
|
125
|
+
? ` degraded_mode=enabled degraded_action=${params.policyTrace.degraded.action}` +
|
|
126
|
+
` degraded_reason=${params.policyTrace.degraded.reason}`
|
|
127
|
+
: '';
|
|
123
128
|
params.dependencies.writeHookGateSummary(
|
|
124
129
|
`[pumuki][hook-gate] stage=${params.stage} policy_bundle=${params.policyTrace.bundle} policy_hash=${params.policyTrace.hash}` +
|
|
125
130
|
` policy_version=${params.policyTrace.version ?? 'n/a'}` +
|
|
126
131
|
` policy_signature=${params.policyTrace.signature ?? 'n/a'}` +
|
|
127
132
|
` policy_source=${params.policyTrace.policySource ?? 'n/a'}` +
|
|
133
|
+
`${degradedSummary}` +
|
|
128
134
|
` decision=ALLOW evidence_kind=${evidence.kind} evidence_age_seconds=${evidenceAgeSeconds ?? 'n/a'} max_age_seconds=${maxAgeSeconds}`
|
|
129
135
|
);
|
|
130
136
|
};
|