app-intents

app-intents is a skill for Claude Code, Codex from n0an/App-Intents-Agent-Skill. It costs 99 tokens per session (5,321 once invoked), scanned A, original, MIT.

A Swift coding guide for App Intents, Apple’s system that lets apps expose actions and data to Siri, Shortcuts, Spotlight, widgets, Control Center, and Apple Intelligence.

In plain words
What is it for?
Use it when adding or reviewing Swift features for Siri commands, Shortcuts, Spotlight search, widgets, Control Center, Focus Filters, or Apple Intelligence.
Why use it?
It helps avoid incorrect protocol implementations, parameter handling, entity queries, navigation, and system registration. It also checks how app data is passed safely.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present.

Part of the app-intents plugin — 1 skill shipped together

Good fit Use it when adding or reviewing Swift features for Siri commands, Shortcuts, Spotlight search, widgets, Control Center, Focus Filters, or Apple Intelligence.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/n0an/app-intents-agent-skill/app-intents
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add n0an/App-Intents-Agent-Skill --skill app-intents
Clone the repo
git clone --depth 1 https://github.com/n0an/App-Intents-Agent-Skill

Made for: Claude Code, Codex.

Or install app-intents, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for app-intents

README.md
[![agentmods](https://agentmods.dev/badge/skills/n0an/app-intents-agent-skill/app-intents/github.svg)](https://agentmods.dev/skills/n0an/app-intents-agent-skill/app-intents)
Your own site
<a href="https://agentmods.dev/skills/n0an/app-intents-agent-skill/app-intents"><img src="https://agentmods.dev/badge/skills/n0an/app-intents-agent-skill/app-intents/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for app-intents

Your own site · 80×15
<a href="https://agentmods.dev/skills/n0an/app-intents-agent-skill/app-intents"><img src="https://agentmods.dev/badge/skills/n0an/app-intents-agent-skill/app-intents.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,321 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Apr 2026
  • Snyk pass 18 Apr 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00099 $0.05321
Opus 5 $0.00049 $0.02661
Sonnet 5 $0.00020 $0.01064
Haiku 4.5 $0.00010 $0.00532

Measured 11d ago against content hash 95bb54047ad9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

app-intents scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

app-intents/SKILL.md · 339 lines

How it starts

The opening of the file, as written. The whole thing — 339 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Write and review Swift code that exposes app functionality through the App Intents framework, ensuring correct protocol conformance, safe data flow, and idiomatic discoverability wiring.

Review process:

  1. Check intent fundamentals (protocol, perform(), return types, dialog) using references/fundamentals.md.
  2. Validate parameters and parameter options using references/parameters.md.
  3. Validate entity types, display representations, and queries using references/entities.md.
  4. Check the AppShortcutsProvider registration and discoverability UI using references/shortcuts-and-siri.md.
  5. Validate OpenIntent navigation and snippet view return types using references/open-and-snippet-intents.md.
  6. Check dependency injection and the data-controller pattern using references/dependencies.md.
  7. Validate Spotlight indexing via IndexedEntity, IndexedEntityQuery, and attribute sets using references/spotlight.md.
  8. Check @AssistantEntity / @AssistantIntent schema adoption using references/assistant-schemas.md.
  9. Validate the Siri / Apple Intelligence integration (finding content, custom responses, donations, confirmation, ownership) using references/siri-intelligence.md.
  10. Check on-screen awareness and content transfer (view annotations, IntentValueRepresentation, system-integration annotations) using references/onscreen-awareness.md.
  11. For intents that run past 30 seconds, handle cancellation, or target a specific process, use references/long-running-and-execution.md.
  12. If writing or reviewing tests for intents, use references/testing-intents.md (covers the new AppIntentsTesting framework).
  13. Catch common mistakes using references/anti-patterns.md.

If doing partial work, load only the relevant reference files.

Task-based routing

Match the user's goal to the read order. Load only what you need.

"Create my first App Intent"

  1. references/fundamentals.md - protocol, perform(), return types
  2. references/shortcuts-and-siri.md - register it so it shows up

Read the full file on GitHub · 339 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 339 lines · 99 tokens per session scan A 95bb54047ad9

Subscribe to this mod's changes

app-intents is a skill published in the GitHub repository n0an/App-Intents-Agent-Skill (33 stars, last pushed 2d ago), licensed MIT. It adds 99 tokens to every session and 5,321 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

swift-expert

Expert-level Swift development for iOS, macOS with SwiftUI, Combine, and modern Swift 5.9+. Use when the user mentions iOS, macOS, SwiftUI, Combine, async await, or Apple platforms, or when the task involves Modern Swift Features, Basics and Optionals, Functions and Closures, or Structs and Classes.

personamanagmentlayer/pcl · 76 tokens

ios-expert

Expert in iOS development with SwiftUI, UIKit, Combine, and Apple ecosystem integration. Use when the user mentions mobile, Swift, SwiftUI, UIKit, Apple platforms, or Xcode, or when the task involves iOS App Architecture, SwiftUI Fundamentals, UIKit Essentials, or Combine Framework.

personamanagmentlayer/pcl · 64 tokens

swift-format-style

Writes and reviews Swift FormatStyle code, replacing legacy Formatter subclasses and C-style String(format:) with modern .formatted() APIs. Use when formatting numbers, dates, durations, measurements, lists, names, byte counts, or URLs.

n0an/Swift-FormatStyle-Agent-Skill · 50 tokens

swift-development

You MUST activate this skill when working on Swift projects.

sammcj/agentic-coding · 13 tokens

generators

Code generator skills that produce production-ready Swift code for common app components. Use when user wants to add logging, analytics, onboarding, review prompts, networking, authentication, paywalls, settings, persistence, error monitoring, CI/CD pipelines, localization, push notifications, deep linking, testing…

rshankras/claude-code-apple-skills · 176 tokens

android-development

Android development with Kotlin, Jetpack Compose, and modern Android architecture. Use when building Android apps, implementing Material Design, or following Android best practices.

travisjneuman/.claude · 33 tokens