deep-linking
Generate deep linking infrastructure with URL schemes, Universal Links, and App Intents for Siri/Shortcuts. Use when handling custom URL schemes, Universal Links/Associated Domains, or routing to specific content from external sources.
Profile →npx skills add rshankras/claude-code-apple-skills --skill deep-linking --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Deep Linking Generator Generate deep linking infrastructure with URL schemes, Universal Links, and App Intents for Siri/Shortcuts. ## When This Skill Activates - User wants to handle custom URL schemes (myapp://) - User mentions Universal Links or Associated Domains - User wants Siri Shortcuts or App Intents - User needs to navigate to specific content from external sources ## Pre-Generation Checks Before generating, verify: 1. **Existing Deep Link Handling** ```bash # Check for existing URL handling grep -r "onOpenURL\|open.*url\|handleOpen" --include="*.swift" | head -5 ``` 2. **URL Scheme in Info.plist** ```bash # Check for CFBundleURLTypes find . -name "Info.plist" -exec grep -l "CFBundleURLSchemes" {} \; ``` 3. **Associated Domains Entitlement** ```bash find . -name "*.entitlements" -exec grep -l "associated-domains" {} \; ``` ## Configuration Questions ### 1. URL Scheme - What custom URL scheme? (e.g., `myapp`) - This enables `myapp://path/to/content` links ### 2. Universal Links - **Yes** - Handle HTTPS links (requires AASA file on server) - **No** - Custom URL scheme only ### 3. App Intents / Siri Shortcuts - **Yes** - Enable voice commands and Shortcuts app - **No** - UR
- When This Skill Activates
- Pre-Generation Checks
- Configuration Questions
- 1. URL Scheme
- 2. Universal Links
- 3. App Intents / Siri Shortcuts
- 4. Link Types
- Generated Files
- Core Infrastructure
- App Intents (Optional)
- Server Files (Universal Links)
- Key Features
- Route Definitions
- URL Parsing
grep -r "onOpenURL\|open.*url\|handleOpen" --include="*.swift" | head -5
find . -name "Info.plist" -exec grep -l "CFBundleURLSchemes" {} \;
find . -name "*.entitlements" -exec grep -l "associated-domains" {} \;
Simulator
xcrun simctl openurl booted "myapp://items/123"
Device
Open Safari and navigate to myapp://items/123
Test AASA file
curl -I "https://yourapp.com/.well-known/apple-app-site-association"
Should return Content-Type: application/jsonWhat does the deep-linking skill do?
Generate deep linking infrastructure with URL schemes, Universal Links, and App Intents for Siri/Shortcuts. Use when handling custom URL schemes, Universal Links/Associated Domains, or routing to specific content from external sources.
How do I install it?
Run `npx skills add rshankras/claude-code-apple-skills --skill deep-linking --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From rshankras/claude-code-apple-skills, a repository with 589 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.