pumuki 6.3.299 → 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 +8 -0
- package/VERSION +1 -1
- package/integrations/gate/evaluateAiGate.ts +9 -1
- package/integrations/lifecycle/cli.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
## [6.3.300] - 2026-05-19
|
|
8
|
+
|
|
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.
|
|
10
|
+
|
|
3
11
|
## [6.3.298] - 2026-05-19
|
|
4
12
|
|
|
5
13
|
## [6.3.299] - 2026-05-19
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
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
|
-
|
|
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.`
|
|
@@ -192,6 +192,7 @@ export type ParsedArgs = {
|
|
|
192
192
|
|
|
193
193
|
const HELP_TEXT = `
|
|
194
194
|
Pumuki lifecycle commands:
|
|
195
|
+
pumuki --version | -v
|
|
195
196
|
pumuki bootstrap [--enterprise] [--agent=<name>] [--json]
|
|
196
197
|
pumuki install [--with-mcp] [--agent=<name>]
|
|
197
198
|
pumuki uninstall [--purge-artifacts]
|
|
@@ -2255,6 +2256,11 @@ export const runLifecycleCli = async (
|
|
|
2255
2256
|
dependencies: Partial<LifecycleCliDependencies> = {}
|
|
2256
2257
|
): Promise<number> => {
|
|
2257
2258
|
try {
|
|
2259
|
+
if (argv.length === 1 && (argv[0] === '--version' || argv[0] === '-v')) {
|
|
2260
|
+
writeInfo(getCurrentPumukiVersion());
|
|
2261
|
+
return 0;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2258
2264
|
const activeDependencies: LifecycleCliDependencies = {
|
|
2259
2265
|
...defaultLifecycleCliDependencies,
|
|
2260
2266
|
...dependencies,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
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": {
|