pumuki 6.3.238 → 6.3.240
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.
|
@@ -151,7 +151,7 @@ const PLATFORM_REQUIRED_SKILLS_BUNDLES: Readonly<Record<PreWriteSkillsPlatform,
|
|
|
151
151
|
frontend: ['frontend-guidelines'],
|
|
152
152
|
};
|
|
153
153
|
const PREWRITE_CRITICAL_SKILLS_RULES: Readonly<Record<PreWriteSkillsPlatform, ReadonlyArray<string>>> = {
|
|
154
|
-
ios: [
|
|
154
|
+
ios: [],
|
|
155
155
|
android: [],
|
|
156
156
|
backend: [],
|
|
157
157
|
frontend: [],
|
|
@@ -204,6 +204,9 @@ const toSkillsViolation = (
|
|
|
204
204
|
: toWarnViolation(code, message)
|
|
205
205
|
);
|
|
206
206
|
|
|
207
|
+
const toCriticalSkillsViolation = (code: string, message: string): AiGateViolation =>
|
|
208
|
+
toErrorViolation(code, message);
|
|
209
|
+
|
|
207
210
|
const normalizeRepoStateLifecycleVersions = (repoState: RepoState): RepoState => {
|
|
208
211
|
const packageVersion = repoState.lifecycle.package_version;
|
|
209
212
|
const lifecycleVersion = repoState.lifecycle.lifecycle_version;
|
|
@@ -641,8 +644,7 @@ const collectPreWritePlatformSkillsViolations = (params: {
|
|
|
641
644
|
|
|
642
645
|
if (missingCriticalRulesByPlatform.length > 0) {
|
|
643
646
|
violations.push(
|
|
644
|
-
|
|
645
|
-
params.skillsEnforcement,
|
|
647
|
+
toCriticalSkillsViolation(
|
|
646
648
|
'EVIDENCE_PLATFORM_CRITICAL_SKILLS_RULES_MISSING',
|
|
647
649
|
`Detected platforms missing critical skill-rule enforcement in PRE_WRITE: ${missingCriticalRulesByPlatform.join(' | ')}.`
|
|
648
650
|
)
|
|
@@ -936,8 +938,7 @@ const toSkillsContractAssessment = (params: {
|
|
|
936
938
|
}
|
|
937
939
|
if (missingCriticalRuleIds.length > 0) {
|
|
938
940
|
violations.push(
|
|
939
|
-
|
|
940
|
-
params.skillsEnforcement,
|
|
941
|
+
toCriticalSkillsViolation(
|
|
941
942
|
'EVIDENCE_PLATFORM_CRITICAL_SKILLS_RULES_MISSING',
|
|
942
943
|
`Skills contract missing critical rule coverage for ${platform}: [${missingCriticalRuleIds.join(', ')}].`
|
|
943
944
|
)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.240",
|
|
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": {
|