pumuki 6.3.243 → 6.3.244
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
CHANGED
|
@@ -6,6 +6,12 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.3.244] - 2026-05-14
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **SwiftUI body-purity parity:** `skills.ios.guideline.ios-swiftui-expert.keep-view-body-simple-and-pure-no-side-effects-or-complex-logic` now maps to the existing AUTO body object-creation heuristic, converting the body-purity guideline into scoped runtime evidence without banning legitimate small composition helpers.
|
|
14
|
+
|
|
9
15
|
## [6.3.243] - 2026-05-14
|
|
10
16
|
|
|
11
17
|
### Added
|
|
@@ -292,6 +292,10 @@ const registryByRuleId: Record<string, SkillsDetectorBinding> = {
|
|
|
292
292
|
heuristicDetector('ios.swiftui.body-object-creation', [
|
|
293
293
|
'heuristics.ios.swiftui.body-object-creation.ast',
|
|
294
294
|
]),
|
|
295
|
+
'skills.ios.guideline.ios-swiftui-expert.keep-view-body-simple-and-pure-no-side-effects-or-complex-logic':
|
|
296
|
+
heuristicDetector('ios.swiftui.body-object-creation', [
|
|
297
|
+
'heuristics.ios.swiftui.body-object-creation.ast',
|
|
298
|
+
]),
|
|
295
299
|
'skills.ios.guideline.ios-swiftui-expert.suggest-image-downsampling-when-uiimage-data-is-encountered':
|
|
296
300
|
heuristicDetector('ios.swiftui.image-data-decoding', [
|
|
297
301
|
'heuristics.ios.swiftui.image-data-decoding.ast',
|
|
@@ -410,9 +410,15 @@ const normalizeKnownRuleTarget = (
|
|
|
410
410
|
if (
|
|
411
411
|
includes('no object creation in body') ||
|
|
412
412
|
(includes('object creation') && includes('body')) ||
|
|
413
|
-
(includes('body kept simple') && includes('pure'))
|
|
413
|
+
(includes('body kept simple') && includes('pure')) ||
|
|
414
|
+
(includes('view body simple') && includes('pure')) ||
|
|
415
|
+
(includes('body simple') && includes('side effects')) ||
|
|
416
|
+
(includes('body') && includes('complex logic'))
|
|
414
417
|
) {
|
|
415
|
-
|
|
418
|
+
if (includes('no object creation') || includes('object creation')) {
|
|
419
|
+
return 'skills.ios.guideline.ios-swiftui-expert.no-object-creation-in-body';
|
|
420
|
+
}
|
|
421
|
+
return 'skills.ios.guideline.ios-swiftui-expert.keep-view-body-simple-and-pure-no-side-effects-or-complex-logic';
|
|
416
422
|
}
|
|
417
423
|
if (
|
|
418
424
|
includes('image downsampling') ||
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.244",
|
|
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": {
|
package/skills.lock.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0",
|
|
3
3
|
"compilerVersion": "1.0.0",
|
|
4
|
-
"generatedAt": "2026-05-14T07:
|
|
4
|
+
"generatedAt": "2026-05-14T07:29:57.101Z",
|
|
5
5
|
"bundles": [
|
|
6
6
|
{
|
|
7
7
|
"name": "android-guidelines",
|
|
@@ -8620,7 +8620,7 @@
|
|
|
8620
8620
|
"name": "ios-swiftui-expert-guidelines",
|
|
8621
8621
|
"version": "1.0.0",
|
|
8622
8622
|
"source": "file:vendor/skills/swiftui-expert-skill/SKILL.md",
|
|
8623
|
-
"hash": "
|
|
8623
|
+
"hash": "95d13f770dcf3a0ecb957e4cabcfd09c9d9b39a15421c8599c6fe5470d1c3f95",
|
|
8624
8624
|
"rules": [
|
|
8625
8625
|
{
|
|
8626
8626
|
"id": "skills.ios.guideline.ios-swiftui-expert.action-handlers-should-reference-methods-not-contain-inline-logic",
|
|
@@ -8703,7 +8703,7 @@
|
|
|
8703
8703
|
"sourcePath": "vendor/skills/swiftui-expert-skill/SKILL.md",
|
|
8704
8704
|
"confidence": "MEDIUM",
|
|
8705
8705
|
"locked": true,
|
|
8706
|
-
"evaluationMode": "
|
|
8706
|
+
"evaluationMode": "AUTO",
|
|
8707
8707
|
"origin": "core"
|
|
8708
8708
|
},
|
|
8709
8709
|
{
|