Add your app to new places without rewriting how it works.

Agree on what one action should do, then create small changes for Siri, Shortcuts, or AI tools. Every change stays tied to the original code, permissions, version, and test results.

Start a build pilotIn development · Starting with App Intents
CAPABILITY STUDIOBUILD · AURALOG
ACTION DETAILS

Track a migraine

Reviewed draft
ACTION IDauralog.migraine.track
APP DATAMigraine session
WHAT IT DOESRecord a migraine with severity, symptoms, and an optional note.
WHAT CHANGESWrites health log
CONFIRMATIONBefore save
OUTPUTTracked session
WORKING CODEMigraineStore
Your app still owns the feature.Review details

Decide what the action should do before changing code.

Build starts after Audit finds a useful app task. A person decides what the action does, which code owns it, what it may change, and where it should appear.

Only then does Capability Studio suggest code. The result is a small patch for review—not a second copy of the feature and not a promise that it is ready to ship.

Write down the action from start to finish.

01

A stable ID

A name and version that stay the same when Swift code or screens change.

02

Agreed details

The inputs, result, errors, permissions, confirmation, and limits for the action.

03

The working code

A link to the service or store that already performs the task and saves the data.

04

Where it appears

A clear choice about whether the action belongs in Siri, Shortcuts, AI tools, or nowhere yet.

Keep the same action, even when each platform asks for different code.

Each connection gets only what that platform needs: names, inputs, descriptions, safeguards, and tests. The app action stays the shared source; the platform-specific code is just one way to expose it.

ILLUSTRATIVE BUILDAURALOG · TRACK A MIGRAINE
APP CODEMigraineStore.track(…)Same app service · Code found
REVIEWED ACTIONauralog.migraine.trackVersion 0.3 · Reviewed draft
Generated
App Intent

Calls the app service that already performs the task

Proposed
App Shortcuts

Suggested phrases and places where people can find the action

Description only
AI tool description

Explains the action but does not claim it can run yet

Not connected
MCP / CLI

Needs a tested way to run the action first

Keep the real work in your app.

Your app screen, App Intent, and every approved connection should call the same service or store. Capability Studio keeps the action name, permissions, connections, and test results—not your business rules, user data, passwords, or live system.

IMPLEMENTATION RULEDO NOT COPY THE BUSINESS LOGIC
NATIVE UIMigraine entry screen
APP SERVICE / STOREMigraineStoreChecks · saved data · changes
RUN RECORDAction record
APP INTENTTrackMigraineIntent
APP SERVICE / STOREMigraineStoreSame app code
RUN RECORDAction record
Do not generate one intent for every button. Do not put the real work only inside the connection.

See exactly what will change—and what will stay alone.

Review the action details, code patch, possible breakage, and test plan before saving a new version.

TrackMigraineIntent.swift+18   −0
+ struct TrackMigraineIntent: AppIntent {
+   static let title = “Track a migraine”
+   @Parameter var severity: Severity
+   @Parameter var symptoms: [Symptom]
+   func perform() async throws -> some IntentResult {
+     let session = try await migraineStore.track(…)
+     return .result(value: session)
+   }
+ }
Generated connection · must be built in the correct app targetReview 3 proposed changes

Keep the same action through every step.

Audit finds the task. Build defines it. Preview shows where it should appear. Deploy tests the exact version. Measure records what happened after it ran.

AuditDecideBuildDefinePreviewInspectShipValidateMeasureLearn

Add one app action without creating another copy of the feature.

Bring one important app task. Leave with agreed action details, a small code plan, the exact proposed changes, and a clear test plan.

Start a build pilot