pumuki 6.3.298 → 6.3.299
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/VERSION +1 -1
- package/integrations/git/runPlatformGateOutput.ts +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## [6.3.298] - 2026-05-19
|
|
4
4
|
|
|
5
|
+
## [6.3.299] - 2026-05-19
|
|
6
|
+
|
|
7
|
+
- Release line for INC145 AST/skills actionable next actions. Block summaries now emit rule, file, line and expected fix for any unmapped AST/skills finding instead of falling back to a generic primary-blocker message, while preserving specific mappings such as console.log.
|
|
8
|
+
|
|
5
9
|
- Release line for the merged notification/evidence/context cleanup on develop. Keeps the published package unique after 6.3.297 was already present on npm, preserving the actionable notification payloads, expanded AST detector coverage, PRE_WRITE lease/evidence cause propagation, lifecycle hook alignment, local context gate scaffold and atomic Git hygiene rules.
|
|
6
10
|
|
|
7
11
|
## [6.3.297] - 2026-05-19
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
1
|
+
6.3.299
|
|
@@ -121,6 +121,16 @@ const formatLocation = (finding: Finding): string | null => {
|
|
|
121
121
|
return `${finding.filePath.replace(/\\/g, '/')}:${anchorLine}`;
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
+
const resolveAstSkillNextAction = (finding: Finding): string | null => {
|
|
125
|
+
if (!isAstSkillFinding(finding)) {
|
|
126
|
+
return null;
|
|
127
|
+
}
|
|
128
|
+
const location = formatLocation(finding);
|
|
129
|
+
const fix = finding.expected_fix?.trim() || 'corrige la violación indicada por la regla';
|
|
130
|
+
const locationText = location ? ` en ${location}` : '';
|
|
131
|
+
return `Corrige ${finding.ruleId}${locationText}: ${fix}. Vuelve a ejecutar el gate.`;
|
|
132
|
+
};
|
|
133
|
+
|
|
124
134
|
const formatFinding = (finding: Finding): string => {
|
|
125
135
|
const location = formatLocation(finding);
|
|
126
136
|
const severity = finding.severity.toUpperCase();
|
|
@@ -138,6 +148,7 @@ export const printGateFindings = (findings: ReadonlyArray<Finding>): void => {
|
|
|
138
148
|
const primary = resolvePrimaryFinding(orderedFindings);
|
|
139
149
|
const nextAction =
|
|
140
150
|
BLOCK_NEXT_ACTION_BY_CODE[primary.code]
|
|
151
|
+
?? resolveAstSkillNextAction(primary)
|
|
141
152
|
?? 'Corrige el bloqueante primario y vuelve a ejecutar el mismo comando.';
|
|
142
153
|
process.stdout.write(
|
|
143
154
|
`[pumuki][block-summary] primary=${primary.code} severity=${primary.severity.toUpperCase()} rule=${primary.ruleId}\n`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.299",
|
|
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": {
|