apple-agent-kit 1.0.1 → 1.0.3
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/README.md +15 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](CHANGELOG.md)
|
|
6
6
|
|
|
7
7
|
Status: Stable
|
|
8
|
-
Version: 1.0.
|
|
8
|
+
Version: 1.0.3
|
|
9
9
|
|
|
10
10
|
## Overview
|
|
11
11
|
|
|
@@ -61,6 +61,14 @@ Skills route a task to the minimum set of Knowledge Contracts it needs. Invoke t
|
|
|
61
61
|
Example: `"check this screen's layout against HIG"` → `layout.md` (+ `right-to-left.md` if relevant)
|
|
62
62
|
Example: `"does my dark mode palette meet contrast guidance"` → `dark-mode.md`, `color.md`
|
|
63
63
|
|
|
64
|
+
- **`human-interface-guidelines-components`** — Routes iOS/iPadOS Components/Inputs design tasks (lists and tables, buttons, sheets, alerts, action sheets, navigation bars, tab bars, pickers, toggles, text fields, menus, touchscreen gestures) to HIG Components Knowledge Contracts.
|
|
65
|
+
Example: `"review this list screen's layout against HIG"` → `lists-and-tables.md`
|
|
66
|
+
Example: `"when should I use an action sheet instead of an alert"` → `action-sheets.md`
|
|
67
|
+
|
|
68
|
+
- **`human-interface-guidelines-patterns`** — Routes iOS/iPadOS Patterns design tasks (onboarding, searching, settings, notifications, feedback, undo/redo) to HIG Patterns Knowledge Contracts.
|
|
69
|
+
Example: `"design an onboarding flow for a fitness app"` → `onboarding.md`
|
|
70
|
+
Example: `"how should notification content be worded and when should we send one"` → `notifications.md`
|
|
71
|
+
|
|
64
72
|
- **`app-store-review-guidelines`** — Routes App Store submission-compliance tasks (app completeness, metadata accuracy, in-app purchase, spam/duplicate-app avoidance, privacy manifest and nutrition label accuracy) to App Store Review Guidelines Knowledge Contracts.
|
|
65
73
|
Example: `"why would this in-app subscription get rejected"` → `digital-goods-iap.md`, `restore-purchases.md`
|
|
66
74
|
Example: `"what needs to go in my PrivacyInfo.xcprivacy"` → `privacy-manifest.md`
|
|
@@ -69,6 +77,10 @@ Skills route a task to the minimum set of Knowledge Contracts it needs. Invoke t
|
|
|
69
77
|
Example: `"why did my list row selection reset after reordering the array"` → `view-identity.md`
|
|
70
78
|
Example: `"should I use @State or @Binding here"` → `state-and-binding.md`
|
|
71
79
|
|
|
80
|
+
- **`swiftui-interaction`** — Routes SwiftUI Animation and Gesture implementation tasks (implicit/explicit animation, transitions, matchedGeometryEffect, Animatable, PhaseAnimator/KeyframeAnimator, tap/long-press, drag, magnification/rotation, gesture composition, GestureState) to SwiftUI Interaction Knowledge Contracts.
|
|
81
|
+
Example: `"why isn't my view fading in smoothly"` → `animation-modifiers.md`
|
|
82
|
+
Example: `"how do I make a card draggable and snap back if released early"` → `drag-gesture.md`
|
|
83
|
+
|
|
72
84
|
- **`accessibility`** — Routes Accessibility API implementation tasks (labels, traits, value/hint, custom actions, element grouping, VoiceOver navigation order, Dynamic Type API, Reduce Motion/Transparency/Increase Contrast, Full Keyboard Access, hidden/decorative elements, accessibility audits) to Accessibility Knowledge Contracts, across SwiftUI and UIKit.
|
|
73
85
|
Example: `"this icon-only button has no VoiceOver label"` → `accessibility-labels.md`
|
|
74
86
|
Example: `"swipe-to-delete row needs a VoiceOver alternative"` → `custom-accessibility-actions.md`
|
|
@@ -101,9 +113,9 @@ Full routing tables: [skills/index.md](skills/index.md). Domain build order and
|
|
|
101
113
|
|
|
102
114
|
## What's New
|
|
103
115
|
|
|
116
|
+
- 2026-08-06 — Expanded `swiftui` with a new Skill, `swiftui-interaction` (implicit/explicit animation, timing curves, transitions, matchedGeometryEffect, the Animatable protocol, PhaseAnimator/KeyframeAnimator, tap/long-press gestures, drag gesture, magnification/rotation gestures, gesture composition, GestureState) — 10 Knowledge Contracts. Closes the second of the two named Tier 1 priority gaps (after HIG Patterns/Components). Second domain with more than one Skill, split to stay under the project's Skill size cap.
|
|
117
|
+
- 2026-08-06 — Expanded `human-interface-guidelines` with two new Skills, `human-interface-guidelines-components` and `human-interface-guidelines-patterns` (lists and tables, buttons, sheets, alerts, action sheets, navigation bars, tab bars, pickers, toggles, text fields, menus, touchscreen gestures; onboarding, searching, settings, notifications, feedback, undo/redo) — 18 Knowledge Contracts. Closes the highest-priority named Tier 1 gap (Foundations-only HIG coverage). First domain with more than one Skill, split by Apple's own information architecture to stay under the project's Reference/Skill size caps. Flags a new `usernotifications` (Tier 2) cross-domain boundary in domain-map.md.
|
|
104
118
|
- 2026-08-05 — Added `app-tracking-transparency` Skill (authorization-request mechanics, authorization status handling, IDFA access, NSUserTrackingUsageDescription; iOS/iPadOS AppTrackingTransparency + AdSupport framework API v1) — 3 Knowledge Contracts. Closes out all 11 Tier 1 domains. Angle-split with `human-interface-guidelines` on tracking-alert UX, clean handoff with `app-store-review-guidelines` on privacy-label/permission-string topics, replaces the prior placeholder scope in domain-map.md.
|
|
105
|
-
- 2026-08-05 — Added `local-authentication` Skill (availability and biometry-type detection, policy evaluation, reason strings & Info.plist, error handling, LAContext lifecycle, Keychain-biometric binding, fallback UX; iOS/iPadOS LocalAuthentication framework API v1) — 7 Knowledge Contracts. Clean handoff from `authentication` (which excludes biometrics entirely), replaces the prior placeholder scope in domain-map.md.
|
|
106
|
-
- 2026-08-01 — Added `xcode` Skill (build configurations, xcconfig files, schemes/targets, automatic and manual code signing, entitlements/capabilities, archive process, export options; Xcode GUI/project-file v1) — 8 Knowledge Contracts. Replaces the prior placeholder scope in domain-map.md.
|
|
107
119
|
- See [CHANGELOG.md](CHANGELOG.md) for the full release history.
|
|
108
120
|
|
|
109
121
|
## Contributing
|