deep-linking

A setup guide for making links open the right screen in a mobile app or a website. It covers iOS Universal Links, Android App Links, custom URL schemes, domain checks, and Flutter's GoRouter.

In plain words
What is it for?
Use it when adding deep links to a Flutter app, choosing which URL paths open the app, configuring iOS or Android link settings, or handling links across staging and production domains.
Why use it?
It helps avoid handling each mobile platform's link rules from scratch and reduces mistakes when connecting web URLs to app screens.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/launch52-ai/flutter-template/deep-linking
Any agent
npx skills add launch52-ai/flutter-template --skill deep-linking
Clone the repo
git clone --depth 1 https://github.com/launch52-ai/flutter-template

Made for: Claude Code, Codex.

Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,418 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00048 $0.01418
Opus 5 $0.00024 $0.00709
Sonnet 5 $0.00010 $0.00284
Haiku 4.5 $0.00005 $0.00142

Measured 2d ago against content hash b8ce7a9f5a3b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deep-linking scanned grade A with 1 finding 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 2d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -I https://example.com/.well-known/apple-app-site-association
.claude/skills/deep-linking/SKILL.md · 178 lines

How it starts

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

Deep linking setup for iOS (Universal Links) and Android (App Links) with GoRouter integration.

When to Use This Skill

  • Adding deep link support to a Flutter app
  • Configuring Universal Links for iOS
  • Configuring App Links for Android
  • Handling custom URL schemes
  • Integrating deep links with GoRouter
  • User asks "add deep linking", "universal links", "app links", or "URL handling"

Questions to Ask

  1. Domain: What domain will host the deep links? (e.g., example.com)
  2. Paths: Which paths should open the app? (e.g., /products/*, /users/*)
  3. Custom scheme: Need a custom URL scheme fallback? (e.g., myapp://)
  4. Environments: Multiple domains? (e.g., staging.example.com, example.com)
  5. Backend access: Can you host .well-known files on the server?

Reference Files

  • reference/router/deep_link_handler.dart - GoRouter deep link config
  • templates/ios/Runner.entitlements - Associated Domains
  • templates/android/android_manifest_deeplinks.xml - Intent filters

See: implementation-guide.md for complete setup.

Workflow

Phase 1: Domain Verification

  1. Create apple-app-site-association file (see ios-guide.md)
  2. Create assetlinks.json file (see android-guide.md)
  3. Host files at https://domain.com/.well-known/
  4. Verify HTTPS and correct MIME types

Phase 2: iOS Configuration

  1. Add Associated Domains capability in Xcode
  2. Add domain to Runner.entitlements
  3. Handle links in AppDelegate (if needed)

Phase 3: Android Configuration

  1. Add intent filters to AndroidManifest.xml
  2. Set autoVerify="true" for App Links
  3. Generate and add SHA-256 fingerprint to assetlinks.json

Phase 4: GoRouter Integration

  1. Configure GoRouter with deep link paths
  2. Add route parameter extraction
  3. Handle unknown deep links gracefully
  4. Test with adb and xcrun commands

Core API

// GoRouter handles deep links automatically
GoRouter(routes: [
  GoRoute(path: '/products/:id', builder: (context, state) =>
    ProductScreen(productId: state.pathParameters['id']!)),
]);
// Manual: GoRouter.of(context).go(Uri.parse(deepLink).path);

Read the full file on GitHub · 178 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. 2d ago First seen · 178 lines · 48 tokens per session scan A b8ce7a9f5a3b

Subscribe to this mod's changes

deep-linking is a skill published in the GitHub repository launch52-ai/flutter-template (2 stars, last pushed 6mo ago), licensed MIT. It adds 48 tokens to every session and 1,418 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories