apple-app-intents

apple-app-intents is a skill for Claude Code, Codex from aka-kika/akakika-skills. It costs 55 tokens per session (1,995 once invoked), scanned A, original, MIT.

Guidance for exposing app actions to Apple's Shortcuts, Siri, Spotlight, widgets, and Control Center. App Intents are small actions the system can run, while App Shortcuts make those actions easier to discover.

In plain words
What is it for?
Use it to add Shortcuts commands, Siri or Spotlight actions, widget and Control Center buttons, typed parameters, or actions that open a particular app screen.
Why use it?
It helps define safe, understandable actions and decide whether they should open the app or run in the background.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument; mentions Claude Code; mentions Codex.

Good fit Use it to add Shortcuts commands, Siri or Spotlight actions, widget and Control Center buttons, typed parameters, or actions that open a particular app screen.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aka-kika/akakika-skills/apple-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 aka-kika/akakika-skills --skill apple-app-intents
Clone the repo
git clone --depth 1 https://github.com/aka-kika/akakika-skills

Made for: Claude Code, Codex.

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 apple-app-intents

README.md
[![agentmods](https://agentmods.dev/badge/skills/aka-kika/akakika-skills/apple-app-intents/github.svg)](https://agentmods.dev/skills/aka-kika/akakika-skills/apple-app-intents)
Your own site
<a href="https://agentmods.dev/skills/aka-kika/akakika-skills/apple-app-intents"><img src="https://agentmods.dev/badge/skills/aka-kika/akakika-skills/apple-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 apple-app-intents

Your own site · 80×15
<a href="https://agentmods.dev/skills/aka-kika/akakika-skills/apple-app-intents"><img src="https://agentmods.dev/badge/skills/aka-kika/akakika-skills/apple-app-intents.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,995 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
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 52
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00055 $0.01995
Opus 5 $0.00028 $0.00997
Sonnet 5 $0.00011 $0.00399
Haiku 4.5 $0.00006 $0.00199

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

Security

Grade A, and why

apple-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 12d 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.

skills/swift-macos/apple-app-intents/SKILL.md · 417 lines

How it starts

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

Apple App Intents

Expose your app's most useful actions to Shortcuts, Siri, Spotlight, widgets, and Control Center. Keep each intent a small, safe action, add an AppShortcutsProvider for discoverability, and push real work into services.

When to use

Use this skill when exposing app features to App Intents, Shortcuts, Siri, Spotlight, widgets, controls, or system actions.

Use when the user asks for:

  • App Intents
  • Siri actions
  • Shortcuts support
  • Spotlight actions
  • App Shortcuts
  • Widget buttons
  • Control Center controls
  • Action Button support
  • Apple Intelligence-compatible app actions

Core rule

App Intent = a small, safe app action the system can run.
App Shortcut = a discoverable phrase and shortcut that exposes that action.
App Entity = app data the system can reference.

When to use this skill

Use this skill for:

  • Adding a command to Shortcuts
  • Making a menu bar action available from Spotlight
  • Creating app actions that run without opening the app
  • Opening the app to a specific screen
  • Running a task, prompt, skill, or automation from system surfaces
  • Adding widget or Control Center interactions
  • Defining typed parameters for user actions

When not to use this skill

Do not use this skill for:

  • Normal in-app buttons only
  • Complex multi-screen workflows
  • Unsafe destructive actions without confirmation
  • UI design of sidebars/toolbars/inspectors
  • Background daemons with no user-facing actions

Minimal AppIntent

import AppIntents

struct StartFocusIntent: AppIntent {
    static var title: LocalizedStringResource = "Start Focus"
    static var description = IntentDescription("Starts a focus session.")
    static var openAppWhenRun = false

    func perform() async throws -> some IntentResult {
        FocusService.shared.start()
        return .result(dialog: "Focus started")
    }
}

Requirements:

title
perform()

App Shortcut provider

import AppIntents

struct AppShortcuts: AppShortcutsProvider {
    static var appShortcuts: [AppShortcut] {
        AppShortcut(
            intent: StartFocusIntent(),
            phrases: [
                "Start focus in \(.applicationName)",
                "Begin focus with \(.applicationName)"
            ],
            shortTitle: "Start Focus",
            systemImageName: "timer"
        )
    }
}

Read the full file on GitHub · 417 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. 12d ago First seen · 417 lines · 55 tokens per session scan A 7ed17939f749

Subscribe to this mod's changes

apple-app-intents is a skill published in the GitHub repository aka-kika/akakika-skills (10 stars, last pushed 2d ago), licensed MIT. It adds 55 tokens to every session and 1,995 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories