pumuki 6.3.272 → 6.3.273

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
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.3.273] - 2026-05-18
4
+
5
+ - Fix `PUMUKI-INC-142` residual hook communication: when PRE_WRITE cannot issue a lease because real gate findings exist, PRE_COMMIT/PRE_PUSH keep failing closed but prioritize the real blocking finding before the lease symptom.
6
+
3
7
  ## [6.3.272] - 2026-05-18
4
8
 
5
9
  - Fix lifecycle PRE_WRITE validated-diff lease materialization: `pumuki sdd validate --stage=PRE_WRITE` refreshes evidence with PRE_WRITE semantics instead of self-blocking through PRE_COMMIT/PRE_PUSH before the lease exists.
@@ -1284,7 +1284,6 @@ export async function runPlatformGate(params: {
1284
1284
  ...(contextBlockingFinding ? [contextBlockingFinding] : []),
1285
1285
  sddBlockingFinding,
1286
1286
  ...(degradedModeFinding ? [degradedModeFinding] : []),
1287
- ...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
1288
1287
  ...(policyAsCodeBlockingFinding ? [policyAsCodeBlockingFinding] : []),
1289
1288
  ...(effectiveUnsupportedSkillsMappingFinding ? [effectiveUnsupportedSkillsMappingFinding] : []),
1290
1289
  ...(effectivePlatformSkillsCoverageFinding ? [effectivePlatformSkillsCoverageFinding] : []),
@@ -1298,6 +1297,7 @@ export async function runPlatformGate(params: {
1298
1297
  ...brownfieldHotspotFindings,
1299
1298
  ...tddBddEvaluation.findings,
1300
1299
  ...findings,
1300
+ ...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
1301
1301
  ]
1302
1302
  : effectiveUnsupportedSkillsMappingFinding
1303
1303
  || effectivePlatformSkillsCoverageFinding
@@ -1317,7 +1317,6 @@ export async function runPlatformGate(params: {
1317
1317
  ? [
1318
1318
  ...(contextBlockingFinding ? [contextBlockingFinding] : []),
1319
1319
  ...(degradedModeFinding ? [degradedModeFinding] : []),
1320
- ...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
1321
1320
  ...(policyAsCodeBlockingFinding ? [policyAsCodeBlockingFinding] : []),
1322
1321
  ...(effectiveUnsupportedSkillsMappingFinding ? [effectiveUnsupportedSkillsMappingFinding] : []),
1323
1322
  ...(effectivePlatformSkillsCoverageFinding ? [effectivePlatformSkillsCoverageFinding] : []),
@@ -1331,6 +1330,7 @@ export async function runPlatformGate(params: {
1331
1330
  ...brownfieldHotspotFindings,
1332
1331
  ...tddBddEvaluation.findings,
1333
1332
  ...findings,
1333
+ ...(preWriteLeaseFinding ? [preWriteLeaseFinding] : []),
1334
1334
  ]
1335
1335
  : brownfieldHotspotFindings.length > 0
1336
1336
  ? [...brownfieldHotspotFindings, ...findings]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.272",
3
+ "version": "6.3.273",
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": {