apple-agent-kit 0.1.3 → 1.0.1
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 +22 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
# Apple Agent Kit
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/apple-agent-kit)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](CHANGELOG.md)
|
|
6
|
+
|
|
7
|
+
Status: Stable
|
|
8
|
+
Version: 1.0.0
|
|
5
9
|
|
|
6
10
|
## Overview
|
|
7
11
|
|
|
@@ -81,20 +85,26 @@ Skills route a task to the minimum set of Knowledge Contracts it needs. Invoke t
|
|
|
81
85
|
Example: `"my JSON response isn't decoding, dates are failing"` → `codable-decoding.md`
|
|
82
86
|
Example: `"how do I retry a request after a 401 without an infinite loop"` → `authenticated-requests.md`
|
|
83
87
|
|
|
88
|
+
- **`xcode`** — Routes Xcode project-configuration implementation tasks (build configurations, xcconfig files, schemes/targets, automatic and manual code signing, entitlements/capabilities, archive process, export options) to Xcode Knowledge Contracts.
|
|
89
|
+
Example: `"my archive won't export, wrong provisioning profile"` → `manual-signing-provisioning-profiles.md`
|
|
90
|
+
Example: `"Product > Archive is greyed out"` → `archive-process.md`
|
|
91
|
+
|
|
92
|
+
- **`local-authentication`** — Routes Face ID/Touch ID/device-passcode implementation tasks (availability and biometry-type detection, policy evaluation, reason strings and Info.plist, error handling, LAContext lifecycle, Keychain-biometric binding, fallback UX) to Local Authentication Knowledge Contracts.
|
|
93
|
+
Example: `"Face ID prompt shows the wrong icon"` → `availability-and-biometry-type.md`
|
|
94
|
+
Example: `"user is locked out of Face ID after too many failed attempts"` → `error-handling.md`
|
|
95
|
+
|
|
96
|
+
- **`app-tracking-transparency`** — Routes App Tracking Transparency / IDFA implementation tasks (authorization-request mechanics, authorization status handling, IDFA access, NSUserTrackingUsageDescription) to App Tracking Transparency Knowledge Contracts.
|
|
97
|
+
Example: `"how do I ask for tracking permission without re-prompting every launch"` → `authorization-request.md`
|
|
98
|
+
Example: `"advertisingIdentifier is returning all zeros"` → `status-and-idfa-access.md`
|
|
99
|
+
|
|
84
100
|
Full routing tables: [skills/index.md](skills/index.md). Domain build order and scope: [docs/architecture/domain-map.md](docs/architecture/domain-map.md).
|
|
85
101
|
|
|
86
102
|
## What's New
|
|
87
103
|
|
|
88
|
-
- 2026-08-
|
|
89
|
-
- 2026-08-
|
|
90
|
-
- 2026-08-01 — Added `
|
|
91
|
-
-
|
|
92
|
-
- 2026-08-01 — Added `swiftui` Skill (Views: composition/identity/modifier order; Navigation: NavigationStack/NavigationSplitView; Layout: stacks/safe-area/lazy-grids/GeometryReader; State: @State/@Binding/@Observable/@Environment) — 12 Knowledge Contracts.
|
|
93
|
-
- 2026-07-31 — Added `app-store-review-guidelines` Skill (App Completeness, Accurate Metadata, In-App Purchase, Minimum Functionality, Spam/Duplicate, Privacy manifest & nutrition label) — 12 Knowledge Contracts.
|
|
94
|
-
- 2026-07-31 — Added `human-interface-guidelines` Skill (Foundations: layout, color, typography, app icons, images, inclusion, accessibility-design, dark mode, materials, motion, icons, branding, privacy-design, SF Symbols usage, RTL) — 15 Knowledge Contracts.
|
|
95
|
-
- 2026-07-31 — Hardened native Skill format (real YAML frontmatter, deterministic keyword routing, Stop Conditions) across all Skills.
|
|
96
|
-
- 2026-07-31 — Added `authentication` Skill (sign-in, sign-up, credentials, biometrics).
|
|
97
|
-
- 2026-07-31 — Added `style-guide` Skill (terminology, capitalization, punctuation, inclusive writing).
|
|
104
|
+
- 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
|
+
- See [CHANGELOG.md](CHANGELOG.md) for the full release history.
|
|
98
108
|
|
|
99
109
|
## Contributing
|
|
100
110
|
|