pumuki 6.3.242 → 6.3.243

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.243] - 2026-05-14
10
+
11
+ ### Added
12
+
13
+ - **SwiftUI relative-layout parity:** `skills.ios.guideline.ios-swiftui-expert.use-relative-layout-over-hard-coded-constants` now maps to the existing AUTO layout magic-number heuristic, turning the relative-layout guideline into runtime evidence without broad numeric-literal enforcement.
14
+
9
15
  ## [6.3.242] - 2026-05-14
10
16
 
11
17
  ### Added
@@ -90,6 +90,10 @@ const registryByRuleId: Record<string, SkillsDetectorBinding> = {
90
90
  'ios.maintainability.magic-number-layout',
91
91
  ['heuristics.ios.maintainability.magic-number-layout.ast']
92
92
  ),
93
+ 'skills.ios.guideline.ios-swiftui-expert.use-relative-layout-over-hard-coded-constants':
94
+ heuristicDetector('ios.maintainability.magic-number-layout', [
95
+ 'heuristics.ios.maintainability.magic-number-layout.ast',
96
+ ]),
93
97
  'skills.ios.guideline.ios.prohibido-print-y-logs-ad-hoc': heuristicDetector(
94
98
  'ios.logging.adhoc-print',
95
99
  ['heuristics.ios.logging.adhoc-print.ast']
@@ -316,6 +316,14 @@ const normalizeKnownRuleTarget = (
316
316
  if (includes('string format') || includes('string(format')) {
317
317
  return 'skills.ios.no-string-format';
318
318
  }
319
+ if (
320
+ includes('relative layout over hard-coded constants') ||
321
+ includes('relative layout over hard coded constants') ||
322
+ includes('hard-coded constants') ||
323
+ includes('hard coded constants')
324
+ ) {
325
+ return 'skills.ios.guideline.ios-swiftui-expert.use-relative-layout-over-hard-coded-constants';
326
+ }
319
327
  if (
320
328
  (includes('foreach') && includes('indices')) ||
321
329
  includes('stable identity for foreach') ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.242",
3
+ "version": "6.3.243",
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:00:57.248Z",
4
+ "generatedAt": "2026-05-14T07:06:26.545Z",
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": "eec9633ddf388ee680cf4bd74c4e52f9112d1925bea59f50d482c47d1aba59f4",
8623
+ "hash": "32ec48aa279031b02895c91667250123eedc5c3a4ff91672316862ea2fae57c7",
8624
8624
  "rules": [
8625
8625
  {
8626
8626
  "id": "skills.ios.guideline.ios-swiftui-expert.action-handlers-should-reference-methods-not-contain-inline-logic",
@@ -8907,7 +8907,7 @@
8907
8907
  "sourcePath": "vendor/skills/swiftui-expert-skill/SKILL.md",
8908
8908
  "confidence": "MEDIUM",
8909
8909
  "locked": true,
8910
- "evaluationMode": "DECLARATIVE",
8910
+ "evaluationMode": "AUTO",
8911
8911
  "origin": "core"
8912
8912
  },
8913
8913
  {