Public proof gallery
Package details should be readable before install.
Registry shows the receipts behind reusable Apple-native packages: readable source, generated Swift, exact install commands, compiler metadata, and Cloud validation where a report exists.
58 public packagesSource visibleGenerated Swift proof
Generated Swift proof
A package is not just a card. It should expose the source definition and the Swift boundary it creates.
export default defineIntent({
name: "CreateEvent",
title: "Create calendar event",
params: {
title: param.string("Event title"),
startsAt: param.date("When it starts"),
},
});struct CreateEvent: AppIntent {
static var title: LocalizedStringResource = "Create event"
@Parameter(title: "Event title") var title: String
@Parameter(title: "When it starts") var startsAt: Date
}Cloud result shape
When a package has a Cloud report, the result should point to a named finding and a repair path an agent can reuse.
Needs review
AX108 - entitlement string format
What broke: the entitlement shorthand does not match Apple's expected identifier.
Install path
Create Event
@axint/create-event
$ axint add @axint/create-event
App State Panel View
@axint/app-state-panel-view
$ axint add @axint/app-state-panel-view
Sign in with Apple View
@axint/sign-in-with-apple-view
$ axint add @axint/sign-in-with-apple-view
Subscription Paywall View
@axint/subscription-paywall-view
$ axint add @axint/subscription-paywall-view