pumuki 6.3.241 → 6.3.242

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.242] - 2026-05-14
10
+
11
+ ### Added
12
+
13
+ - **SwiftUI Observable shared-state parity:** `skills.ios.guideline.ios-swiftui-expert.use-observable-for-shared-state-with-mainactor-if-not-using-default-ac` now maps to the existing AUTO `ObservableObject` heuristic, converting the shared-state migration guideline into runtime evidence without introducing actor-isolation false positives.
14
+
9
15
  ## [6.3.241] - 2026-05-14
10
16
 
11
17
  ### Added
@@ -201,6 +201,8 @@ const registryByRuleId: Record<string, SkillsDetectorBinding> = {
201
201
  'skills.ios.no-observable-object': heuristicDetector('ios.observable-object', [
202
202
  'heuristics.ios.observable-object.ast',
203
203
  ]),
204
+ 'skills.ios.guideline.ios-swiftui-expert.use-observable-for-shared-state-with-mainactor-if-not-using-default-ac':
205
+ heuristicDetector('ios.observable-object', ['heuristics.ios.observable-object.ast']),
204
206
  'skills.ios.no-legacy-swiftui-observable-wrapper': heuristicDetector(
205
207
  'ios.legacy-swiftui-observable-wrapper',
206
208
  ['heuristics.ios.legacy-swiftui-observable-wrapper.ast']
@@ -253,6 +253,13 @@ const normalizeKnownRuleTarget = (
253
253
  if (includes('observableobject') || includes('observable object')) {
254
254
  return 'skills.ios.no-observable-object';
255
255
  }
256
+ if (
257
+ (includes('@observable') || includes('observable')) &&
258
+ includes('shared state') &&
259
+ includes('mainactor')
260
+ ) {
261
+ return 'skills.ios.guideline.ios-swiftui-expert.use-observable-for-shared-state-with-mainactor-if-not-using-default-ac';
262
+ }
256
263
  if (
257
264
  includes('observedobject') ||
258
265
  (includes('legacy') && includes('stateobject')) ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.241",
3
+ "version": "6.3.242",
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-14T06:45:22.016Z",
4
+ "generatedAt": "2026-05-14T07:00:57.248Z",
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": "4ea50faf9594602eefa6711b818cf4badeb2014ca64eaf00cb2f98f3e11a55f0",
8623
+ "hash": "eec9633ddf388ee680cf4bd74c4e52f9112d1925bea59f50d482c47d1aba59f4",
8624
8624
  "rules": [
8625
8625
  {
8626
8626
  "id": "skills.ios.guideline.ios-swiftui-expert.action-handlers-should-reference-methods-not-contain-inline-logic",
@@ -8895,7 +8895,7 @@
8895
8895
  "sourcePath": "vendor/skills/swiftui-expert-skill/SKILL.md",
8896
8896
  "confidence": "MEDIUM",
8897
8897
  "locked": true,
8898
- "evaluationMode": "DECLARATIVE",
8898
+ "evaluationMode": "AUTO",
8899
8899
  "origin": "core"
8900
8900
  },
8901
8901
  {