pumuki 6.3.86 → 6.3.87
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.
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 2026-04-20 (v6.3.87)
|
|
2
|
+
- Cierra el segundo tramo de PUM-026: si PRE_WRITE solo arregla el receipt MCP y el gate pasa a verde, fuerza un refresh de paridad contra PRE_COMMIT antes del veredicto final.
|
|
3
|
+
- Rollout recomendado: actualizar Flux_training y repetir la repro mínima de validate/pre-commit/.ai_evidence.
|
|
4
|
+
|
|
1
5
|
# Release Notes (v2.x line)
|
|
2
6
|
|
|
3
7
|
This file tracks the active deterministic framework line used in this repository.
|
|
@@ -238,6 +238,32 @@ export const buildPreWriteAutomationTrace = async (params: {
|
|
|
238
238
|
stage: 'PRE_WRITE',
|
|
239
239
|
requireMcpReceipt: true,
|
|
240
240
|
}).result;
|
|
241
|
+
if (aiGate.allowed) {
|
|
242
|
+
const gateExitCode = await params.runPlatformGate({
|
|
243
|
+
policy: {
|
|
244
|
+
stage: 'PRE_COMMIT',
|
|
245
|
+
blockOnOrAbove: 'ERROR',
|
|
246
|
+
warnOnOrAbove: 'WARN',
|
|
247
|
+
},
|
|
248
|
+
scope: {
|
|
249
|
+
kind: 'workingTree',
|
|
250
|
+
},
|
|
251
|
+
auditMode: 'gate',
|
|
252
|
+
dependencies: {
|
|
253
|
+
printGateFindings: () => {},
|
|
254
|
+
},
|
|
255
|
+
});
|
|
256
|
+
trace.actions.push({
|
|
257
|
+
action: 'refresh_evidence',
|
|
258
|
+
status: 'OK',
|
|
259
|
+
details: `stage=PRE_COMMIT runPlatformGate exit_code=${gateExitCode} parity_probe=allowed_after_mcp_receipt_refresh`,
|
|
260
|
+
});
|
|
261
|
+
aiGate = activeDependencies.runEnterpriseAiGateCheck({
|
|
262
|
+
repoRoot: params.repoRoot,
|
|
263
|
+
stage: 'PRE_WRITE',
|
|
264
|
+
requireMcpReceipt: true,
|
|
265
|
+
}).result;
|
|
266
|
+
}
|
|
241
267
|
} catch (error) {
|
|
242
268
|
trace.actions.push({
|
|
243
269
|
action: 'refresh_mcp_receipt',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.87",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|