apple-pim: Skill for Claude Code

.claude/skills/ios-app-intents/SKILL.md

ios-app-intents is a skill for Claude Code, Codex from omarshahine/apple-pim. It costs 87 tokens per session (1,029 once invoked), scanned A, a copy of ios-app-intents, MIT.

A toolkit for adding App Intents to iPhone and iPad apps so system features can access selected app actions and content. App Intents connect apps with Shortcuts, Siri, Spotlight, widgets, controls, and similar system surfaces.

In plain words
What is it for?
Choosing useful actions, defining app entities, implementing queries, adding App Shortcuts, and connecting system requests back to the app.
Why use it?
It lets people perform useful app actions outside the main app screen instead of requiring them to navigate through the full interface.

Skill for Claude CodeCodex

Written for Claude Code and Codex: installed under .claude/, but also agents/openai.yaml present.

This is omarshahine/apple-pim's own configuration. It tells Claude Code and Codex how to work on apple-pim itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything apple-pim configures →

Part of the apple-pim plugin — 16 skills, 7 commands shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to omarshahine/apple-pim. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/omarshahine/apple-pim/main/.claude/skills/ios-app-intents/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/omarshahine/apple-pim

Made for: Claude Code, Codex.

Or install apple-pim, the plugin that ships this one along with the rest of its 16 skills, 7 commands.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/omarshahine/apple-pim/ios-app-intents"><img src="https://agentmods.dev/badge/skills/omarshahine/apple-pim/ios-app-intents.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,029 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.
Origin 100% copy Near-identical to another mod 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.00087 $0.01029
Opus 5 $0.00044 $0.00515
Sonnet 5 $0.00017 $0.00206
Haiku 4.5 $0.00009 $0.00103

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

Security

Grade A, and why

ios-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.

Origin

This is a copy

100% identical to ios-app-intents — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/ios-app-intents/SKILL.md · 78 lines

How it starts

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

iOS App Intents

Overview

Expose the smallest useful action and entity surface to the system. Start with the verbs and objects people would actually want outside the app, then implement a narrow App Intents layer that can deep-link or hand off cleanly into the main app when needed.

Read these references as needed:

  • references/first-pass-checklist.md for choosing the first intent and entity surface
  • references/example-patterns.md for concrete example shapes to copy and adapt
  • references/code-templates.md for generalized App Intents code templates
  • references/system-surfaces.md for how to think about Shortcuts, Siri, Spotlight, widgets, and other system entry points

Core workflow

1) Start with actions, not screens

  • Identify the 1-3 highest-value actions that should work outside the app UI.
  • Prefer verbs like compose, open, find, filter, continue, inspect, or start.
  • Do not mirror the entire app navigation tree as intents.

2) Define a small entity surface

  • Add AppEntity types only for the objects the system needs to understand or route.
  • Keep the entity shape narrower than the app's persistence model.
  • Add EntityQuery or other query types only where disambiguation or suggestions are genuinely useful.

3) Decide whether the action completes in place or opens the app

  • Use non-opening intents for actions that can complete directly from the system surface.
  • Use openAppWhenRun or open-style intents when the user should land in a specific in-app workflow.
  • When the app must react inside the main scene, add one clear runtime handoff path instead of scattering ad hoc routing logic.
  • If the action can work in both modes, consider shipping both an inline version and an open-app version rather than forcing one compromise.

4) Make the actions discoverable

  • Add AppShortcutsProvider entries for the first set of high-value intents.
  • Choose titles, phrases, and symbols that make sense in Shortcuts, Siri, and Spotlight.
  • Keep shortcut phrases direct and task-oriented.
  • Reuse the same action model for widgets and controls when a widget configuration or intent-driven control already needs the same parameters.

Read the full file on GitHub · 78 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 78 lines · 87 tokens per session scan A ee3ea635ba78

Subscribe to this mod's changes

ios-app-intents is a skill published in the GitHub repository omarshahine/apple-pim (54 stars, last pushed 4d ago), licensed MIT. It adds 87 tokens to every session and 1,029 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to ios-app-intents, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

troubleshoot-tcc

A troubleshooting guide for macOS permissions that control access to Calendar and Reminders.

PsychQuant/che-ical-mcp · 119 tokens

archive-event

Archive a meeting or event into Calendar from a narrative source — a meeting notice, an announcement, a message thread — deriving the time from the thread's authoritative correction, recording the source in the event notes, and labelling any value the source did not state. Use when the user hands over a notice…

PsychQuant/che-ical-mcp · 0 tokens

calendar-management

Guide for effective use of che-ical-mcp for macOS Calendar & Reminders management. Use when user asks about calendar events, reminders, scheduling, or time management.

PsychQuant/che-ical-mcp · 38 tokens

rem-cli

Create, list, update, complete, tag, and search macOS Reminders via the rem CLI. Use when the user wants to manage Apple Reminders from the terminal, automate reminder workflows, reference reminders in shell scripts, or schedule anything on macOS.

BRO3886/rem · 55 tokens

local-access

A guide for controlling a Mac through local applications such as Calendar, Contacts, Mail, Reminders, Finder, and a web browser. It describes the command format for requesting these actions.

claude-office-skills/claude-office-plugin · 32 tokens

swift-concurrency-pro

Reviews Swift code for concurrency correctness, modern API usage, and common async/await pitfalls. Use when reading, writing, or reviewing Swift concurrency code.

jacklandrin/OnlySwitch · 35 tokens