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.
npx agentmods add skills/launch52-ai/flutter-template/deep-linkingnpx skills add launch52-ai/flutter-template --skill deep-linkinggit clone --depth 1 https://github.com/launch52-ai/flutter-templateWhat 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.
| Model | Per session | Once 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 |
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 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 - Universal Links & App Links
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
- Domain: What domain will host the deep links? (e.g.,
example.com) - Paths: Which paths should open the app? (e.g.,
/products/*,/users/*) - Custom scheme: Need a custom URL scheme fallback? (e.g.,
myapp://) - Environments: Multiple domains? (e.g., staging.example.com, example.com)
- Backend access: Can you host
.well-knownfiles on the server?
Reference Files
reference/router/deep_link_handler.dart- GoRouter deep link configtemplates/ios/Runner.entitlements- Associated Domainstemplates/android/android_manifest_deeplinks.xml- Intent filters
See: implementation-guide.md for complete setup.
Workflow
Phase 1: Domain Verification
- Create
apple-app-site-associationfile (see ios-guide.md) - Create
assetlinks.jsonfile (see android-guide.md) - Host files at
https://domain.com/.well-known/ - Verify HTTPS and correct MIME types
Phase 2: iOS Configuration
- Add Associated Domains capability in Xcode
- Add domain to
Runner.entitlements - Handle links in AppDelegate (if needed)
Phase 3: Android Configuration
- Add intent filters to
AndroidManifest.xml - Set
autoVerify="true"for App Links - Generate and add SHA-256 fingerprint to
assetlinks.json
Phase 4: GoRouter Integration
- Configure
GoRouterwith deep link paths - Add route parameter extraction
- Handle unknown deep links gracefully
- Test with
adbandxcruncommands
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);
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- android-guide.md 8.6 KB
- checklist.md 4.9 KB
- implementation-guide.md 10 KB
- ios-guide.md 6.5 KB
- reference/router/deep_link_router.dart 7.1 KB
- templates/android/android_manifest_deeplinks.xml 3.1 KB
- templates/ios/Runner.entitlements 1.1 KB
- templates/server/apple-app-site-association.json 358 B
- templates/server/assetlinks.json 350 B
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.
- 2d ago First seen · 178 lines · 48 tokens per session scan A b8ce7a9f5a3b
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.
Other skills, from other repositories
merge-seed
Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.
shadcn-ui-flutter
A comprehensive Flutter UI library inspired by shadcn/ui. Provides high-quality, customizable, and accessible components including Buttons, Cards, Forms, and more. Use this skill when building Flutter UIs, implementing design systems, or needing specific component usage examples.
update-store
ストア情報の更新自動化 — スクリーンショット撮影(シミュレーター × モック画面 × Marionette MCP)とメタデータテキスト更新。ストア更新、スクショ更新、App Store / Google Play のメタデータ更新、リリースノート作成の際に使用すること。.
test-bridge
Bridge Server (TypeScript) のテスト実行・型チェック・テスト記述ガイド.
web-preview
Flutter Web版をビルド → サーバー起動 → Playwright でアクセス確認 → URLをユーザーに案内する。.
firebase-messaging
Use when setting up Firebase Cloud Messaging, managing permissions and tokens, handling background/foreground notification taps, or dispatching messages server-side (HTTP v1).