pumuki 6.3.279 → 6.3.280
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 +4 -0
- package/integrations/lifecycle/cli.ts +10 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.3.280] - 2026-05-18
|
|
4
|
+
|
|
5
|
+
- `PUMUKI-INC-149`: PRE_WRITE validation no longer reports the generic `EVIDENCE_GATE_BLOCKED` symptom when a concrete actionable cause has already been resolved from `next_action`. JSON output, panels and blocked notifications now keep the real cause only, avoiding contradictory "blocked by stale evidence" guidance when the remediation is an atomic-slice/worktree action.
|
|
6
|
+
|
|
3
7
|
## [6.3.279] - 2026-05-18
|
|
4
8
|
|
|
5
9
|
- `PUMUKI-INC-149`: `pumuki sdd validate --stage=PRE_WRITE --json` now reports the resolved actionable blocking cause first when `next_action` identifies a concrete remediation. This prevents stale `EVIDENCE_GATE_BLOCKED` symptoms from hiding the real PRE_WRITE cause in JSON, terminal panels and blocked notifications.
|
|
@@ -1999,7 +1999,16 @@ export const prioritizePreWriteAiGateViolations = (
|
|
|
1999
1999
|
if (!nextAction?.reason) {
|
|
2000
2000
|
return aiGate;
|
|
2001
2001
|
}
|
|
2002
|
-
const
|
|
2002
|
+
const hasActionableReason = aiGate.violations.some((violation) => violation.code === nextAction.reason);
|
|
2003
|
+
const violations = aiGate.violations.filter((violation) => {
|
|
2004
|
+
if (!hasActionableReason) {
|
|
2005
|
+
return true;
|
|
2006
|
+
}
|
|
2007
|
+
if (nextAction.reason === 'EVIDENCE_GATE_BLOCKED') {
|
|
2008
|
+
return true;
|
|
2009
|
+
}
|
|
2010
|
+
return violation.code !== 'EVIDENCE_GATE_BLOCKED';
|
|
2011
|
+
});
|
|
2003
2012
|
violations.sort((left, right) => {
|
|
2004
2013
|
const leftMatches = left.code === nextAction.reason ? 0 : 1;
|
|
2005
2014
|
const rightMatches = right.code === nextAction.reason ? 0 : 1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.280",
|
|
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": {
|