deep-linking

Installation
SKILL.md

Deep Linking Patterns for Mobile

URI Scheme Design

Design a consistent URI scheme before implementation:

myapp://                          # App root
myapp://home                      # Home screen
myapp://product/{id}              # Product detail
myapp://profile/{userId}          # User profile
myapp://settings/notifications    # Nested settings
myapp://search?q={query}          # Query parameters

Keep paths RESTful, lowercase, and predictable. Use path segments for hierarchy and query params for filters.


Installs
21
GitHub Stars
64
First Seen
Apr 7, 2026
deep-linking — ahmed3elshaer/everything-claude-code-mobile