pumuki 6.3.316 → 6.3.317

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.316",
3
+ "version": "6.3.317",
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": {
@@ -145,7 +145,7 @@ const formatCauseProblem = (cause: BlockedCause): string => {
145
145
  const formatCauseFix = (cause: BlockedCause): string =>
146
146
  normalizeNotificationText(
147
147
  cause.remediation ??
148
- 'Corrige la violación indicada con regla, fichero y línea, y vuelve a ejecutar el gate.'
148
+ 'Corrige la violación indicada con regla, fichero y línea, y vuelve a intentar el commit.'
149
149
  );
150
150
 
151
151
  export const resolvePrioritizedBlockingCauses = (
@@ -206,7 +206,7 @@ const buildBlockingCausesRemediation = (
206
206
  return [
207
207
  `Regla: ${formatVisibleRule(first)}.`,
208
208
  `Fichero: ${formatCauseLocation(first)}.`,
209
- `Viola: ${formatCauseProblem(first)}.`,
209
+ `Falla: ${formatCauseProblem(first)}.`,
210
210
  `Solución: ${formatCauseFix(first)}.`,
211
211
  prioritized.length > 1 ? `Quedan ${prioritized.length - 1} causa(s) más en el reporte completo.` : '',
212
212
  ]
@@ -21,9 +21,9 @@ const BLOCKED_REMEDIATION_BY_CODE: Readonly<Record<string, string>> = {
21
21
  EVIDENCE_REPO_ROOT_MISMATCH: 'Regenera la evidencia desde este repositorio y vuelve a validar.',
22
22
  PRE_PUSH_UPSTREAM_MISSING: 'Configura upstream con `git push --set-upstream origin <branch>` y repite PRE_PUSH.',
23
23
  SDD_SESSION_MISSING:
24
- 'Abre una sesión SDD válida para el change activo (`pumuki sdd session --open --change=<id>`) y reejecuta PRE_WRITE. Agente IA: STOP hasta que exista esa sesión.',
24
+ 'Abre la sesión SDD del cambio activo: `pumuki sdd session --open --change=<id>`. Sustituye <id> por la carpeta en openspec/changes. Después vuelve a intentar el commit; Pumuki ejecutará PRE_WRITE automáticamente.',
25
25
  SDD_SESSION_INVALID:
26
- 'Refresca la sesión SDD activa (`pumuki sdd session --refresh --ttl-minutes=90`) y reejecuta PRE_WRITE. Agente IA: STOP hasta que sea válida.',
26
+ 'Refresca la sesión SDD activa: `pumuki sdd session --refresh --ttl-minutes=90`. Después vuelve a intentar el commit; Pumuki ejecutará PRE_WRITE automáticamente.',
27
27
  OPENSPEC_MISSING: 'Instala OpenSpec en este repositorio y vuelve a validar el gate.',
28
28
  MCP_ENTERPRISE_RECEIPT_MISSING: 'Genera el receipt enterprise de MCP y vuelve a validar.',
29
29
  BACKEND_AVOID_EXPLICIT_ANY: 'Sustituye `any` por tipos concretos en backend y relanza el gate.',
@@ -34,7 +34,7 @@ const BLOCKED_REMEDIATION_BY_CODE: Readonly<Record<string, string>> = {
34
34
  ACTIVE_RULE_IDS_EMPTY_FOR_CODE_CHANGES_HIGH:
35
35
  'Ejecuta `pumuki policy reconcile --strict --json` y revalida antes de continuar.',
36
36
  EVIDENCE_PREWRITE_WORKTREE_WARN:
37
- 'Reduce el worktree pendiente a un slice atómico antes del commit: stagea solo la tarea activa o guarda el resto en stash nombrado, y reejecuta PRE_WRITE.',
37
+ 'Reduce el worktree pendiente a un slice atómico antes del commit: stagea solo la tarea activa o guarda el resto en stash nombrado, y vuelve a intentar el commit.',
38
38
  EVIDENCE_PREWRITE_WORKTREE_OVER_LIMIT:
39
39
  'El worktree supera el límite permitido: divide cambios por scope en commits atómicos o stashes nombrados antes de continuar.',
40
40
  };