composio-community/awesome-codex-skills

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.

First seen Apr 27, 2026

Installation

$ npx skills add composio-community/awesome-codex-skills --skill agent-deep-links

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from composio-community/awesome-codex-skills · top by installs.

npx skills add composio-community/awesome-codex-skills

Browse all from composio-community/awesome-codex-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 16.3K
Default branch master
Open issues 13
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,052 B
  • docs SUMMARY.md 1,957 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 420 installs

SKILL.md

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

  1. Read references/deep-link-matrix.md for known-good link formats and support level.
  2. 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>://...' ``

  1. Construct Slack-safe link syntax:

- <url|label>

  1. 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.
  • For uncertain app routes, clearly mark as inferred/experimental.

Common Templates

  • Codex thread:

- <codex://threads/<thread-uuid>|Open in Codex>

  • Cursor file:

- <cursor://file/<absolute-path>:<line>:<column>|Open in Cursor>

  • VS Code file:

- <vscode://file/<absolute-path>:<line>:<column>|Open in VS Code>

  • VS Code Insiders file:

- <vscode-insiders://file/<absolute-path>:<line>:<column>|Open in VS Code Insiders>

Use references/deep-link-matrix.md for the full cross-app matrix and support notes.