agent-deep-links
Build, validate, and troubleshoot deep links for Codex, Cursor, VS Code, Visual Studio, and similar tools. Use when users ask for clickable links (especially in Slack) that open threads, files, folders, or app settings.
npx skills add composio-community/awesome-codex-skills --skill agent-deep-links --agent codex
Same command for any agent — swap --agent for claude-code, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Agent Deep Links ## Overview Use this skill when a user asks for clickable links that should open directly in an app (usually from Slack). This includes verifying whether a target app supports deep links at all, selecting the right URL shape, and providing fallbacks when deep links are unsupported. ## Workflow 1. Identify target app + target object: - Thread/conversation - File/folder - Settings/new window 2. Read `references/deep-link-matrix.md` for known-good link formats and support level. 3. If support is unknown, verify locally before sending: - Check URL schemes in the app bundle: ```bash /usr/libexec/PlistBuddy -c 'Print :CFBundleURLTypes' /Applications/<App>.app/Contents/Info.plist ``` - Smoke test launch behavior: ```bash open '<scheme>://...' ``` 4. Construct Slack-safe link syntax: - `<url|label>` 5. If unsupported or uncertain, send a fallback: - Plain path + command - Documented CLI open command - Statement that no official deep-link format is known ## Output Rules - Prefer absolute paths for file/folder links. - Keep labels short and action-oriented (`Open in Cursor`, `Open in Codex`). - Do not claim deep-link support unless it is in the matrix or just verified. - F
- Overview
- Workflow
- Output Rules
- Common Templates
open '<scheme>://...'
What does the agent-deep-links skill do?
Build, validate, and troubleshoot deep links for Codex, Cursor, VS Code, Visual Studio, and similar tools. Use when users ask for clickable links (especially in Slack) that open threads, files, folders, or app settings.
How do I install it?
Run `npx skills add composio-community/awesome-codex-skills --skill agent-deep-links --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 composio-community/awesome-codex-skills, a repository with 15,591 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.
