pumuki 6.3.96 → 6.3.97

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.97)
2
+ - **Adapter MCP enterprise activo por defecto**: `pumuki install` ya no genera un comando enterprise MCP que arranca en modo baseline. El `adapter.json` y las entradas MCP de IDE exportan ahora `PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE=advisory`, de modo que el cliente ve `ai_gate_check`, `pre_flight_check` y `auto_execute_ai_start` sin intervención manual adicional.
3
+ - **Rollout recomendado**: publicar `pumuki@6.3.97`, repin inmediato en `Flux_training` y verificar `tools/list` arrancando exactamente el comando de `.pumuki/adapter.json`; debe dejar de devolver solo `check_sdd_status`, `validate_and_fix`, `sync_branches` y `cleanup_stale_branches`.
4
+
1
5
  ## 2026-04-20 (v6.3.96)
2
6
  - **Diagnóstico explícito de skills faltantes**: `status`, `doctor` y el AI gate ya no degradan a señales genéricas cuando falta una skill requerida o su fuente es ilegible; ahora emiten `SKILLS_REQUIRED_SOURCE_MISSING` o `SKILLS_REQUIRED_SOURCE_UNREADABLE` con nombre de skill, ruta concreta y resolución accionable.
3
7
  - **Rollout recomendado**: publicar `pumuki@6.3.96`, repin inmediato en `Flux_training` y repetir la repro del repo sin `docs/codex-skills`, confirmando que `status --json` y `doctor --json` incluyen la ruta `docs/codex-skills/windsurf-rules-backend.md` en `skills_contract.source_diagnostics`.
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "mcp": {
21
21
  "enterprise": {
22
- "command": "npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
22
+ "command": "PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE=advisory npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
23
23
  },
24
24
  "evidence": {
25
25
  "command": "npx --yes --package pumuki@latest pumuki-mcp-evidence-stdio"
@@ -48,7 +48,7 @@
48
48
  },
49
49
  "mcp": {
50
50
  "enterprise": {
51
- "command": "npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
51
+ "command": "PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE=advisory npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
52
52
  },
53
53
  "evidence": {
54
54
  "command": "npx --yes --package pumuki@latest pumuki-mcp-evidence-stdio"
@@ -85,7 +85,10 @@
85
85
  "--package",
86
86
  "pumuki@latest",
87
87
  "pumuki-mcp-enterprise-stdio"
88
- ]
88
+ ],
89
+ "env": {
90
+ "PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE": "advisory"
91
+ }
89
92
  },
90
93
  "pumuki-evidence": {
91
94
  "command": "npx",
@@ -113,7 +116,10 @@
113
116
  "--package",
114
117
  "pumuki@latest",
115
118
  "pumuki-mcp-enterprise-stdio"
116
- ]
119
+ ],
120
+ "env": {
121
+ "PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE": "advisory"
122
+ }
117
123
  },
118
124
  "pumuki-evidence": {
119
125
  "command": "npx",
@@ -177,7 +183,7 @@
177
183
  "postCommand": "npx --yes --package pumuki@latest pumuki-pre-commit",
178
184
  "pushCommand": "npx --yes --package pumuki@latest pumuki-pre-push",
179
185
  "ciCommand": "npx --yes --package pumuki@latest pumuki-ci",
180
- "mcpCommand": "npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
186
+ "mcpCommand": "PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE=advisory npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
181
187
  }
182
188
  },
183
189
  {
@@ -195,6 +201,7 @@
195
201
  ],
196
202
  "disabledTools": [],
197
203
  "env": {
204
+ "PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE": "advisory",
198
205
  "PUMUKI_ENTERPRISE_MCP_PORT": "0",
199
206
  "PUMUKI_ENTERPRISE_MCP_HOST": "127.0.0.1"
200
207
  },
@@ -240,7 +247,7 @@
240
247
  },
241
248
  "mcp": {
242
249
  "enterprise": {
243
- "command": "npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
250
+ "command": "PUMUKI_EXPERIMENTAL_MCP_ENTERPRISE=advisory npx --yes --package pumuki@latest pumuki-mcp-enterprise-stdio"
244
251
  },
245
252
  "evidence": {
246
253
  "command": "npx --yes --package pumuki@latest pumuki-mcp-evidence-stdio"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.96",
3
+ "version": "6.3.97",
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": {