pumuki 6.3.91 → 6.3.93

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,11 @@
1
+ ## 2026-04-20 (v6.3.93)
2
+ - **Tracking terminal 100% en español**: las violaciones de repo policy `TRACKING_CANONICAL_SOURCE_CONFLICT`, `TRACKING_CANONICAL_FILE_MISSING` y `TRACKING_CANONICAL_IN_PROGRESS_INVALID` traducen ya la línea `[ERROR]` del gate en terminal, no solo el banner/modal.
3
+ - **Rollout recomendado**: publicar `pumuki@6.3.93`, repin inmediato en `Flux_training` y repetir el bloqueo con doble `🚧` para confirmar que desaparece la frase inglesa `Tracking canonical file must contain exactly one in-progress task`.
4
+
5
+ ## 2026-04-20 (v6.3.92)
6
+ - **Purge real de uninstall**: `pumuki uninstall --purge-artifacts` elimina ya los artefactos bootstrap locales `.pumuki/adapter.json` y `.pumuki/bootstrap-manifest.json` cuando no están trackeados, en vez de dejar una instalación “medio desinstalada”.
7
+ - **Rollout recomendado**: publicar `pumuki@6.3.92`, repin inmediato en `Flux_training` y repetir `install -> uninstall --purge-artifacts` comprobando `adapter=no` y `manifest=no` al final.
8
+
1
9
  ## 2026-04-20 (v6.3.91)
2
10
  - **Observabilidad de skills alineada**: `status --json` y `doctor --json` dejan visible `governanceObservation.skills_contract` cuando la evidencia y el lock efectivo de skills muestran un contrato activo; el lifecycle ya no aparenta `NOT_APPLICABLE` mientras el gate real bloquea violaciones frontend/backend.
3
11
  - **Rollout recomendado**: publicar `pumuki@6.3.91`, repin inmediato en `Flux_training` y repetir la repro con rojo frontend staged para confirmar `skills_contract.enforced=true`, `skills_contract.status=FAIL` y `attention_codes` con `SKILLS_CONTRACT_INCOMPLETE`.
@@ -1334,7 +1334,7 @@ const collectTrackingViolations = (repoState: RepoState): AiGateViolation[] => {
1334
1334
  return [
1335
1335
  toErrorViolation(
1336
1336
  'TRACKING_CANONICAL_SOURCE_CONFLICT',
1337
- `Tracking canonical source conflict detected (${declaredPaths}).`
1337
+ `Se ha detectado un conflicto entre fuentes canónicas de tracking (${declaredPaths}).`
1338
1338
  ),
1339
1339
  ];
1340
1340
  }
@@ -1343,7 +1343,7 @@ const collectTrackingViolations = (repoState: RepoState): AiGateViolation[] => {
1343
1343
  return [
1344
1344
  toErrorViolation(
1345
1345
  'TRACKING_CANONICAL_FILE_MISSING',
1346
- `Tracking canonical file is missing (${tracking.canonical_path ?? 'undeclared'}).`
1346
+ `Falta el archivo canónico de tracking (${tracking.canonical_path ?? 'sin-declarar'}).`
1347
1347
  ),
1348
1348
  ];
1349
1349
  }
@@ -1352,7 +1352,7 @@ const collectTrackingViolations = (repoState: RepoState): AiGateViolation[] => {
1352
1352
  return [
1353
1353
  toErrorViolation(
1354
1354
  'TRACKING_CANONICAL_IN_PROGRESS_INVALID',
1355
- `Tracking canonical file must contain exactly one in-progress task (count=${tracking.in_progress_count ?? 'n/a'}).`
1355
+ `El archivo canónico de tracking debe contener exactamente una tarea o fase en construcción (conteo=${tracking.in_progress_count ?? 'n/d'}).`
1356
1356
  ),
1357
1357
  ];
1358
1358
  }
@@ -11,7 +11,12 @@ import {
11
11
  import { dirname, isAbsolute, join, resolve } from 'node:path';
12
12
  import type { ILifecycleGitService } from './gitService';
13
13
 
14
- const PUMUKI_ARTIFACTS = ['.ai_evidence.json', '.AI_EVIDENCE.json'] as const;
14
+ const PUMUKI_ARTIFACTS = [
15
+ '.ai_evidence.json',
16
+ '.AI_EVIDENCE.json',
17
+ '.pumuki/adapter.json',
18
+ '.pumuki/bootstrap-manifest.json',
19
+ ] as const;
15
20
  const RUNTIME_ARTIFACT_IGNORE_ENTRIES = [...PUMUKI_ARTIFACTS, '.pumuki/'] as const;
16
21
  const RUNTIME_ARTIFACT_IGNORE_BEGIN = '# >>> pumuki-runtime-artifacts >>>';
17
22
  const RUNTIME_ARTIFACT_IGNORE_END = '# <<< pumuki-runtime-artifacts <<<';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.91",
3
+ "version": "6.3.93",
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": {