pumuki 6.3.131 → 6.3.132
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/git/runPlatformGate.ts +3 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.3.132] - 2026-05-03
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **Reglas declarativas sin detector no bloquean el gate:** `unsupported_detector_rule_ids` se conserva en evidencia, pero deja de convertirse en `SKILLS_DETECTOR_MAPPING_INCOMPLETE_HIGH` cuando no hay reglas AUTO ejecutables sin detector.
|
|
14
|
+
- **Bloqueo solo para AUTO real:** el guard de cobertura de skills ahora bloquea exclusivamente `unsupported_auto_rule_ids`, evitando que doctrina declarativa de skills vuelva a parar consumers con `coverage_ratio=1`.
|
|
15
|
+
- **Regresión focalizada:** `runPlatformGate` cubre el caso en modo strict para asegurar que declarativas sin detector quedan como evidencia no bloqueante.
|
|
16
|
+
|
|
9
17
|
## [6.3.130] - 2026-05-03
|
|
10
18
|
|
|
11
19
|
### Fixed
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v6.3.
|
|
1
|
+
v6.3.132
|
|
@@ -228,12 +228,7 @@ const toSkillsUnsupportedAutoRulesBlockingFinding = (params: {
|
|
|
228
228
|
return undefined;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
-
const unsupportedRuleIds = [
|
|
232
|
-
...new Set([
|
|
233
|
-
...params.unsupportedAutoRuleIds,
|
|
234
|
-
...(params.unsupportedDetectorRuleIds ?? []),
|
|
235
|
-
]),
|
|
236
|
-
].sort();
|
|
231
|
+
const unsupportedRuleIds = [...new Set(params.unsupportedAutoRuleIds)].sort();
|
|
237
232
|
if (unsupportedRuleIds.length === 0) {
|
|
238
233
|
return undefined;
|
|
239
234
|
}
|
|
@@ -246,8 +241,8 @@ const toSkillsUnsupportedAutoRulesBlockingFinding = (params: {
|
|
|
246
241
|
code: 'SKILLS_DETECTOR_MAPPING_INCOMPLETE_HIGH',
|
|
247
242
|
message:
|
|
248
243
|
`Skills detector mapping incomplete at ${params.stage}: ` +
|
|
249
|
-
`
|
|
250
|
-
'Map every skill rule to an intelligent AST detector before proceeding
|
|
244
|
+
`unsupported_auto_rule_ids=[${unsupportedRuleIdsToken}]. ` +
|
|
245
|
+
'Map every stage-applicable AUTO skill rule to an intelligent AST detector before proceeding.',
|
|
251
246
|
filePath: '.ai_evidence.json',
|
|
252
247
|
matchedBy: 'SkillsDetectorMappingGuard',
|
|
253
248
|
source: 'skills-detector-mapping',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.132",
|
|
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": {
|