pumuki 6.3.126 → 6.3.127

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/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [6.3.127] - 2026-04-28
10
+
11
+ ### Fixed
12
+
13
+ - **Baseline enterprise fully active by default:** `sdd`, `heuristics`, `learning_context`, `analytics`, `operational_memory` and `saas_ingestion` now resolve as `strict source=default blocking=true`, aligned with `pre_write` and `mcp_enterprise`.
14
+ - **No more false default-off messaging:** disabled envelopes now say the feature was switched off explicitly by configuration, avoiding the old misleading “desactivado por defecto” copy.
15
+ - **Regression coverage:** status, lifecycle, MCP and SDD tests now assert that default-off only exists when a test or consumer explicitly sets the corresponding env var to `off`.
16
+
9
17
  ## [6.3.126] - 2026-04-28
10
18
 
11
19
  ### Fixed
package/VERSION CHANGED
@@ -1 +1 @@
1
- v6.3.126
1
+ v6.3.127
@@ -1755,7 +1755,7 @@ const buildAnalyticsExperimentalDisabledEnvelope = (
1755
1755
  result: {
1756
1756
  code: 'ANALYTICS_EXPERIMENTAL_DISABLED',
1757
1757
  message:
1758
- 'Analytics hotspots pertenece al namespace experimental y está desactivado por defecto. Actívalo explícitamente con PUMUKI_EXPERIMENTAL_ANALYTICS=advisory o strict si necesitas este flujo.',
1758
+ 'Analytics hotspots está desactivado explícitamente. Usa PUMUKI_EXPERIMENTAL_ANALYTICS=advisory o strict si necesitas este flujo.',
1759
1759
  experimental_feature: 'analytics',
1760
1760
  mode: feature.mode,
1761
1761
  source: feature.source,
@@ -1777,7 +1777,7 @@ const buildSaasIngestionExperimentalDisabledEnvelope = (
1777
1777
  result: {
1778
1778
  code: 'SAAS_INGESTION_EXPERIMENTAL_DISABLED',
1779
1779
  message:
1780
- 'SaaS ingestion/federation pertenece al namespace experimental y está desactivado por defecto. Actívalo explícitamente con PUMUKI_EXPERIMENTAL_SAAS_INGESTION=advisory o strict si necesitas este flujo.',
1780
+ 'SaaS ingestion/federation está desactivado explícitamente. Usa PUMUKI_EXPERIMENTAL_SAAS_INGESTION=advisory o strict si necesitas este flujo.',
1781
1781
  experimental_feature: 'saas_ingestion',
1782
1782
  mode: feature.mode,
1783
1783
  source: feature.source,
@@ -1799,7 +1799,7 @@ export const buildPreWriteExperimentalDisabledResult = (params: {
1799
1799
  allowed: true,
1800
1800
  code: 'PRE_WRITE_EXPERIMENTAL_DISABLED',
1801
1801
  message:
1802
- 'PRE_WRITE pertenece al namespace experimental y está desactivado por defecto. Actívalo explícitamente con PUMUKI_EXPERIMENTAL_PRE_WRITE=advisory o strict si necesitas este flujo.',
1802
+ 'PRE_WRITE está desactivado explícitamente. Usa PUMUKI_EXPERIMENTAL_PRE_WRITE=advisory o strict si necesitas este flujo.',
1803
1803
  details: {
1804
1804
  experimental: true,
1805
1805
  default_off: true,
@@ -102,7 +102,7 @@ export const runSddCommand = async (parsed: ParsedArgs, activeDependencies: Life
102
102
  attempted: false,
103
103
  status: 'SKIPPED',
104
104
  actions: [],
105
- details: 'PRE_WRITE experimental/default-off.',
105
+ details: 'PRE_WRITE experimental/off-by-env.',
106
106
  },
107
107
  next_action: {
108
108
  reason: 'PRE_WRITE_EXPERIMENTAL_DISABLED',
@@ -821,11 +821,11 @@ export const startEnterpriseMcpServer = (
821
821
  dryRun: true,
822
822
  executed: false,
823
823
  success: false,
824
- warnings: ['Enterprise MCP está desactivado por defecto en el baseline del reset.'],
824
+ warnings: ['Enterprise MCP está desactivado explícitamente por configuración.'],
825
825
  result: {
826
826
  code: 'MCP_ENTERPRISE_EXPERIMENTAL_DISABLED',
827
827
  message:
828
- 'MCP enterprise pertenece al namespace experimental y está desactivado por defecto.',
828
+ 'MCP enterprise está desactivado explícitamente por configuración.',
829
829
  experimental_feature: experimentalFeature.feature,
830
830
  mode: experimentalFeature.mode,
831
831
  source: experimentalFeature.source,
@@ -45,12 +45,12 @@ const EXPERIMENTAL_FEATURES: Record<ExperimentalFeatureId, ExperimentalFeatureCo
45
45
  legacyActivationVariable: 'PUMUKI_PREWRITE_ENFORCEMENT',
46
46
  },
47
47
  sdd: {
48
- defaultMode: 'off',
48
+ defaultMode: 'strict',
49
49
  activationVariable: 'PUMUKI_EXPERIMENTAL_SDD',
50
50
  legacyActivationVariable: null,
51
51
  },
52
52
  heuristics: {
53
- defaultMode: 'off',
53
+ defaultMode: 'strict',
54
54
  activationVariable: 'PUMUKI_EXPERIMENTAL_HEURISTICS',
55
55
  legacyActivationVariable: null,
56
56
  },
@@ -60,22 +60,22 @@ const EXPERIMENTAL_FEATURES: Record<ExperimentalFeatureId, ExperimentalFeatureCo
60
60
  legacyActivationVariable: null,
61
61
  },
62
62
  learning_context: {
63
- defaultMode: 'off',
63
+ defaultMode: 'strict',
64
64
  activationVariable: 'PUMUKI_EXPERIMENTAL_LEARNING_CONTEXT',
65
65
  legacyActivationVariable: null,
66
66
  },
67
67
  analytics: {
68
- defaultMode: 'off',
68
+ defaultMode: 'strict',
69
69
  activationVariable: 'PUMUKI_EXPERIMENTAL_ANALYTICS',
70
70
  legacyActivationVariable: null,
71
71
  },
72
72
  operational_memory: {
73
- defaultMode: 'off',
73
+ defaultMode: 'strict',
74
74
  activationVariable: 'PUMUKI_EXPERIMENTAL_OPERATIONAL_MEMORY',
75
75
  legacyActivationVariable: null,
76
76
  },
77
77
  saas_ingestion: {
78
- defaultMode: 'off',
78
+ defaultMode: 'strict',
79
79
  activationVariable: 'PUMUKI_EXPERIMENTAL_SAAS_INGESTION',
80
80
  legacyActivationVariable: null,
81
81
  },
@@ -326,7 +326,7 @@ export const evaluateSddPolicy = (params: {
326
326
  allowed: true,
327
327
  code: 'SDD_EXPERIMENTAL_DISABLED',
328
328
  message:
329
- 'SDD/OpenSpec pertenece al namespace experimental y está desactivado por defecto. Actívalo explícitamente con PUMUKI_EXPERIMENTAL_SDD=advisory o strict si necesitas este flujo.',
329
+ 'SDD/OpenSpec está desactivado explícitamente. Usa PUMUKI_EXPERIMENTAL_SDD=advisory o strict si necesitas este flujo.',
330
330
  details: {
331
331
  experimental: true,
332
332
  default_off: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.126",
3
+ "version": "6.3.127",
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": {