Agent skill · Content & Marketing

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.

rshankras589★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
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.

Facts
Files in the skill folder: 6
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: ReadWriteEditGlobGrepBashAskUserQuestion
Path: skills/generators/deep-linking/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 589
Language: Swift

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When This Skill Activates
  2. Pre-Generation Checks
  3. Configuration Questions
  4. 1. URL Scheme
  5. 2. Universal Links
  6. 3. App Intents / Siri Shortcuts
  7. 4. Link Types
  8. Generated Files
  9. Core Infrastructure
  10. App Intents (Optional)
  11. Server Files (Universal Links)
  12. Key Features
  13. Route Definitions
  14. URL Parsing
Ships with 5 files
  • deep-linking-patterns.md
  • templates/AppShortcuts.swift
  • templates/DeepLink.swift
  • templates/DeepLinkRouter.swift
  • templates/apple-app-site-association
Commands it runs
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/json
More from claude-code-apple-skills
All skills →
About this skill
What 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.

Keep going