axiom-app-shortcuts-ref

Implement iOS App Shortcuts using the AppShortcutsProvider protocol and phrase templating.

Updated Dec 3, 2025
One-click install
npx skills add https://github.com/tuliopc23/flying-dutchman-app --skill axiom-app-shortcuts-ref
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: axiom-app-shortcuts-ref
Source: https://github.com/tuliopc23/flying-dutchman-app/tree/main/.claude/skills/axiom-app-shortcuts-ref
Command: npx skills add https://github.com/tuliopc23/flying-dutchman-app --skill axiom-app-shortcuts-ref

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps developers implement App Shortcuts, making their app's core functionalities instantly accessible via Siri, Spotlight, and other system interfaces without user setup.

Core Features & Use Cases

  • Instant Siri/Spotlight Availability: Configure App Shortcuts for immediate discoverability upon app installation.
  • Parameterization: Create shortcuts that skip Siri's clarification for common actions.
  • Debugging: Troubleshoot why shortcuts might not be appearing.
  • Use Case: A user wants to quickly start a specific workout routine. By implementing an App Shortcut with a phrase like "Start my 30-minute run", the user can invoke this action directly through Siri or Spotlight without needing to open the app and navigate menus.

Quick Start

Implement the AppShortcutsProvider protocol in your Swift code to define your app's shortcuts.

Frequently Asked Questions about axiom-app-shortcuts-ref

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I make my iOS app's actions instantly discoverable in Siri and Spotlight?

To make iOS app actions discoverable, implement the AppShortcutsProvider protocol to expose core functionalities. This provides immediate Siri and Spotlight availability without requiring users to manually configure shortcuts after app installation.

What is the AppShortcutsProvider protocol used for in iOS development?

The AppShortcutsProvider protocol in iOS development is used to define and expose your app's AppShortcut structures. It enables system interfaces like Siri and Spotlight to automatically discover and present your app's core actions to users.

How do I stop Siri from asking for clarification when I invoke an App Shortcut?

To stop Siri from asking for clarification, use parameterization and phrase templating within your AppShortcut structure. Providing specific static phrases like "Start my run" allows the system to skip clarification steps for common, predefined actions.

Why are my App Shortcuts not showing up in Spotlight or the Shortcuts app?

App Shortcuts not showing up indicates a debugging issue within your integration. Troubleshoot by verifying your AppShortcutsProvider implementation and checking testing strategies to ensure the phrases and UI integration correctly register with Siri, Spotlight, and the Shortcuts app.

How do I handle disambiguation when multiple App Shortcuts have similar Siri phrases?

Handle disambiguation between similar App Shortcuts by implementing negative phrases in your phrase templating. This technique guides the system to differentiate intents, ensuring Siri accurately maps spoken commands to the correct AppShortcut without user confusion.

Are there limits on how many App Shortcuts I should define for my iOS app?

There are practical limits on App Shortcuts quantity based on best practices for phrase design. Defining too many shortcuts can overwhelm users and dilute discoverability, so you should expose only your app's most core, high-value functionalities.