pumuki 6.3.80 → 6.3.81

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 CHANGED
@@ -1 +1 @@
1
- v6.3.80
1
+ v6.3.81
@@ -6,6 +6,11 @@ This file keeps only the operational highlights and rollout notes that matter wh
6
6
 
7
7
  ## 2026-04 (CLI stability and macOS notifications)
8
8
 
9
+ ### 2026-04-17 (v6.3.81)
10
+
11
+ - **Causa 100% en español**: la notificación `gate.blocked` traduce explícitamente `EVIDENCE_GATE_BLOCKED` y también los mensajes legacy equivalentes, evitando el spanglish `Cause: Evidence AI gate status is BLOCKED.` en macOS.
12
+ - **Rollout recomendado**: publicar `pumuki@6.3.81` y repin rápido `RuralGo -> SAAS -> Flux`, revalidando la notificación bloqueante y `status/doctor` en cada consumer.
13
+
9
14
  ### 2026-04-17 (v6.3.80)
10
15
 
11
16
  - **Tracking canónico**: la línea viva acepta el formato contractual `[🚧] - tarea` en el plan maestro y en tablas con backticks, tanto en el parser de tracking como en el guardrail shell de una sola task activa.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.80",
3
+ "version": "6.3.81",
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": {
@@ -5,6 +5,7 @@ import {
5
5
  } from './framework-menu-system-notifications-text';
6
6
 
7
7
  const BLOCKED_CAUSE_SUMMARY_BY_CODE: Readonly<Record<string, string>> = {
8
+ EVIDENCE_GATE_BLOCKED: 'El gate de evidencia de IA está bloqueado.',
8
9
  EVIDENCE_MISSING: 'Falta evidencia para validar este paso.',
9
10
  EVIDENCE_INVALID: 'La evidencia actual es inválida.',
10
11
  EVIDENCE_CHAIN_INVALID: 'La cadena de evidencia no es válida.',
@@ -30,6 +31,9 @@ const toKnownSpanishCauseFromMessage = (message: string): string | null => {
30
31
  if (normalized.includes('evidence is stale')) {
31
32
  return BLOCKED_CAUSE_SUMMARY_BY_CODE.EVIDENCE_STALE;
32
33
  }
34
+ if (normalized.includes('evidence ai gate status is blocked')) {
35
+ return BLOCKED_CAUSE_SUMMARY_BY_CODE.EVIDENCE_GATE_BLOCKED;
36
+ }
33
37
  if (normalized.includes('no upstream tracking reference')) {
34
38
  return BLOCKED_CAUSE_SUMMARY_BY_CODE.PRE_PUSH_UPSTREAM_MISSING;
35
39
  }
@@ -7,6 +7,7 @@ import {
7
7
  type BlockedRemediationVariant = 'banner' | 'dialog';
8
8
 
9
9
  const BLOCKED_REMEDIATION_BY_CODE: Readonly<Record<string, string>> = {
10
+ EVIDENCE_GATE_BLOCKED: 'Corrige las violaciones bloqueantes detectadas en la evidencia y vuelve a ejecutar el gate.',
10
11
  EVIDENCE_MISSING: 'Genera la evidencia del slice actual y vuelve a validar esta fase.',
11
12
  EVIDENCE_INVALID: 'Regenera la evidencia de esta iteración y repite la validación.',
12
13
  EVIDENCE_CHAIN_INVALID: 'Regenera la evidencia para restaurar la cadena de integridad y vuelve a validar.',
@@ -69,6 +70,9 @@ const toKnownSpanishRemediationFromMessage = (message: string, causeCode: string
69
70
  if (normalized.includes('refresh evidence') || normalized.includes('evidence is stale')) {
70
71
  return BLOCKED_REMEDIATION_BY_CODE.EVIDENCE_STALE;
71
72
  }
73
+ if (normalized.includes('evidence ai gate status is blocked')) {
74
+ return BLOCKED_REMEDIATION_BY_CODE.EVIDENCE_GATE_BLOCKED;
75
+ }
72
76
  if (normalized.includes('split the change')) {
73
77
  return BLOCKED_REMEDIATION_BY_CODE.GIT_ATOMICITY_TOO_MANY_SCOPES;
74
78
  }