axiom-app-intents-ref

axiom-app-intents-ref is a skill for Claude Code, Codex from ComeOnOliver/skillshub. It costs 57 tokens per session (9,876 once invoked), scanned A, original, MIT.

A reference for App Intents, Apple’s system for exposing app actions to Siri, Apple Intelligence, Shortcuts, Spotlight, and other system features. It explains actions, parameters, app entities, background work, and authentication.

In plain words
What is it for?
Use it to make app actions available to Siri and Shortcuts, index app content in Spotlight, support widgets or Live Activities, and debug parameter or intent-resolution problems.
Why use it?
It helps resolve unclear integrations and failures where system features cannot understand an app action or its input.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to make app actions available to Siri and Shortcuts, index app content in Spotlight, support widgets or Live Activities, and debug parameter or intent-resolution problems.

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

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 axiom-app-intents-ref

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/axiom-app-intents-ref"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/axiom-app-intents-ref.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,876 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 high

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 →

  • high Memory Poisoning · line 1299
    Skill manipulates agent memory, state, or stored context. Memory corruption can alter personality, override safety rules, or cause unpredictable behavior.
    Fix: Protect agent memory and state from modification by untrusted content. Use read-only memory for critical instructions and validate all state changes.
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.00057 $0.09876
Opus 5 $0.00028 $0.04938
Sonnet 5 $0.00011 $0.01975
Haiku 4.5 $0.00006 $0.00988

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

Security

Grade A, and why

axiom-app-intents-ref 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 8d 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/CharlesWiltgen/Axiom/axiom-app-intents-ref/SKILL.md · 1,666 lines

How it starts

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

App Intents Integration

Overview

Comprehensive guide to App Intents framework for exposing app functionality to Siri, Apple Intelligence, Shortcuts, Spotlight, and other system experiences. Replaces older SiriKit custom intents with modern Swift-first API.

Core principle App Intents make your app's actions discoverable across Apple's ecosystem. Well-designed intents feel natural in Siri conversations, Shortcuts automation, and Spotlight search.

When to Use This Skill

  • Exposing app functionality to Siri and Apple Intelligence
  • Making app actions available in Shortcuts app
  • Enabling Spotlight search for app content
  • Integrating with Focus filters, widgets, Live Activities
  • Adding Action button support (Apple Watch Ultra)
  • Debugging intent resolution or parameter validation failures
  • Testing intents with Shortcuts app
  • Implementing entity queries for app content
  • app-shortcuts-ref — App Shortcuts for instant Siri/Spotlight availability without user setup
  • core-spotlight-ref — Core Spotlight and NSUserActivity integration for content indexing
  • app-discoverability — Strategic guide for making apps surface system-wide across all APIs

System Experiences Supported

App Intents integrate with:

  • Siri — Voice commands and Apple Intelligence
  • Shortcuts — Automation workflows
  • App Shortcuts — Pre-configured actions available instantly (see app-shortcuts-ref)
  • Spotlight — Search discovery
  • Focus Filters — Contextual filtering
  • Action Button — Quick actions (Apple Watch Ultra)
  • Control Center — Custom controls
  • WidgetKit — Interactive widgets
  • Live Activities — Dynamic Island updates
  • Visual Intelligence — Image-based interactions

Visual Intelligence Integration

IntentValueQuery

Allow users to circle objects in the Visual Intelligence camera and see matching results from your app:

@UnionValue
enum VisualSearchResult {
    case landmark(LandmarkEntity)
    case collection(CollectionEntity)
}

struct LandmarkIntentValueQuery: IntentValueQuery {
    func values(for input: SemanticContentDescriptor) async throws -> [VisualSearchResult] {
        // Match visual input to app entities
    }
}

// Each entity type needs an OpenIntent
struct OpenLandmarkIntent: OpenIntent { /* ... */ }
struct OpenCollectionIntent: OpenIntent { /* ... */ }

Read the full file on GitHub · 1,666 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. 8d ago First seen · 1,666 lines · 57 tokens per session scan A faa58e207c03

Subscribe to this mod's changes

axiom-app-intents-ref is a skill published in the GitHub repository ComeOnOliver/skillshub (63 stars, last pushed 2mo ago), licensed MIT. It adds 57 tokens to every session and 9,876 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-09-03.