pumuki 6.3.300 → 6.3.301

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.301] - 2026-05-19
4
+
5
+ - `PUMUKI-INC-157`: PRE_WRITE no longer hard-blocks when evidence reports `ai_gate.status=BLOCKED` but exposes no real blocking causes and only non-blocking WARN signals such as worktree hygiene warnings. Explicit AST/skills findings with `blocking=true` still block, even when their inherited severity is WARN.
6
+
3
7
  ## [6.3.300] - 2026-05-19
4
8
 
5
9
  - CLI: `pumuki --version` and `pumuki -v` now return the effective package version with exit code `0` without invoking lifecycle status, audit, gates, notifications or evidence writes. This prevents consumer repin checks from mutating `.ai_evidence.json` just to read the installed version.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 6.3.300
1
+ 6.3.301
@@ -226,6 +226,9 @@ const buildEvidenceGateBlockedMessage = (result: Extract<EvidenceReadResult, { k
226
226
  return `Evidence AI gate status is BLOCKED. Blocking causes: ${formattedCauses.join(' || ')}${suffix}`;
227
227
  };
228
228
 
229
+ const hasEvidenceBlockingCause = (result: Extract<EvidenceReadResult, { kind: 'valid' }>): boolean =>
230
+ extractEvidenceBlockingCauses(result.evidence).length > 0;
231
+
229
232
  const normalizeRepoStateLifecycleVersions = (repoState: RepoState): RepoState => {
230
233
  const packageVersion = repoState.lifecycle.package_version;
231
234
  const lifecycleVersion = repoState.lifecycle.lifecycle_version;
@@ -1273,7 +1276,12 @@ const collectEvidenceViolations = (
1273
1276
  if (result.evidence.ai_gate.status === 'BLOCKED') {
1274
1277
  const gateBlockedMessage = buildEvidenceGateBlockedMessage(result);
1275
1278
  violations.push(
1276
- isAdvisoryDocumentationRenderSlice(repoRoot, ageSeconds, maxAgeSeconds)
1279
+ !hasEvidenceBlockingCause(result) && ageSeconds <= maxAgeSeconds
1280
+ ? toWarnViolation(
1281
+ 'EVIDENCE_GATE_BLOCKED',
1282
+ `${gateBlockedMessage} Advisory because the evidence snapshot did not expose any blocking cause.`
1283
+ )
1284
+ : isAdvisoryDocumentationRenderSlice(repoRoot, ageSeconds, maxAgeSeconds)
1277
1285
  ? toWarnViolation(
1278
1286
  'EVIDENCE_GATE_BLOCKED',
1279
1287
  `${gateBlockedMessage} Advisory because the current slice only contains documentation/render/tooling artifacts and evidence is fresh.`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.300",
3
+ "version": "6.3.301",
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": {