dbs-bridge

dbs-bridge is a skill for Claude Code from skillmds/skillmd. It costs 330 tokens per session (1,724 once invoked), scanned A, original, MIT.

A bridge that makes one skill available to several coding-agent tools, including Claude Code, Codex, general agents, and Grok. It links each tool to the same source files instead of copying them.

In plain words
What is it for?
Use it to connect a skill or skill collection to agent-specific skill directories, and to remove those links without deleting the original files.
Why use it?
It prevents separate copies of a skill from becoming inconsistent. Changes made to the source are available through the linked locations.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions Claude Code; reads ~/.codex paths.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/.../dbskill/skills/dbs-hook.

Part of the agents-mcp plugin — 34 skills shipped together

Good fit Use it to connect a skill or skill collection to agent-specific skill directories, and to remove those links without deleting the original files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add skillmds/skillmd
Claude Code
/plugin install agents-mcp

Made for: Claude Code.

Or install agents-mcp, the plugin that ships this one along with the rest of its 34 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dbs-bridge

README.md
[![agentmods](https://agentmods.dev/badge/skills/skillmds/skillmd/dbs-bridge/github.svg)](https://agentmods.dev/skills/skillmds/skillmd/dbs-bridge)
Your own site
<a href="https://agentmods.dev/skills/skillmds/skillmd/dbs-bridge"><img src="https://agentmods.dev/badge/skills/skillmds/skillmd/dbs-bridge/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dbs-bridge

Your own site · 80×15
<a href="https://agentmods.dev/skills/skillmds/skillmd/dbs-bridge"><img src="https://agentmods.dev/badge/skills/skillmds/skillmd/dbs-bridge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 330 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,724 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00330 $0.01724
Opus 5.5 $0.00132 $0.00690
Sonnet 5 $0.00066 $0.00345
Haiku 4.5 $0.00033 $0.00172

Measured 4d ago against content hash abd96f447cd1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-23, from the pricing page.

Security

Grade A, and why

dbs-bridge scanned grade A with 0 findings 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 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/bridge-skill.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agents-mcp/skills/dbs-bridge/SKILL.md · 151 lines

How it starts

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

dbs-bridge:多端 skill 桥接

把任意包含 SKILL.md 的 skill 源目录,或包含多个 skill 子目录的集合目录,用软链同时挂到:

  • ~/.claude/skills/<skill-name>
  • ~/.codex/skills/<skill-name>
  • ~/.agents/skills/<skill-name>

同时为 Grok 生成薄 bridge:

  • ~/.grok/skills/<skill-name>/SKILL.md

这样 Claude Code、Codex、豆包 Mac App、Trae Solo、Grok 等 Agent 都能通过同一个源目录调用该 skill。源目录改动后,各端自动同步。源目录可以在 dbskill 仓库内,也可以在外部项目、~/.claude/skills / ~/.codex/skills / ~/.agents/skills / ~/.grok/skills 以外的本地目录、iCloud 目录或其他工作区。


核心原则

  1. Claude / Codex / 通用 Agents 只用软链。 不复制 skill 文件,避免多端出现版本分叉。
  2. 源目录可以在任何位置。 桥接目录只指向源目录。
  3. 绝不覆盖真实目录。 如果目标位置已有同名真实目录,停下来报告,让用户手动处理。
  4. Grok 生成薄 bridge。 Grok bridge 必须包含 user_invocable: true 并指向真源。
  5. 拆桥只删派生产物。 取消桥接时只移除 ~/.claude/skills~/.codex/skills~/.agents/skills 下的软链和 ~/.grok/skills 下由本工具生成的 bridge,不删除源目录。
  6. 优先用脚本执行。 使用本 skill 自带脚本 scripts/bridge-skill.sh,不要临场重写桥接命令。

确定源 skill

用户可能给:

  • skill 名称:dbs-hook
  • 相对路径:skills/dbs-hook
  • 绝对路径:/Users/.../dbskill/skills/dbs-hook
  • 外部绝对路径:/Users/.../.agents/skills/lark-doc
  • skill 集合目录:/Users/.../dbskill/skills
  • 当前上下文刚创建或刚修改的 skill

按优先级判断:

  1. 用户明确给了绝对路径,直接使用该路径。
  2. 用户给了相对路径,先按当前工作目录解析,再按 dbskill 仓库根目录解析。
  3. 用户只给 skill 名称,优先查当前工作目录下的同名目录,再查 dbskill 仓库 skills/<name>
  4. 用户只说“这个 skill”,使用当前对话里刚创建、刚改名或刚讨论的 skill。
  5. 仍不确定时,查看当前工作目录和仓库 skills/ 下最近修改的 skill。
  6. 还是无法确定时,只问一句:桥接哪个 skill?给我 skill 名称或路径。

源目录必须满足其中一种条件:

  • 目录本身包含 SKILL.md
  • 目录的一级子目录里包含多个 SKILL.md,用于批量桥接。

执行桥接

在 dbskill 仓库根目录运行:

skills/dbs-bridge/scripts/bridge-skill.sh link <skill-name-or-path>

例子:

skills/dbs-bridge/scripts/bridge-skill.sh link dbs-hook
skills/dbs-bridge/scripts/bridge-skill.sh link skills/dbs-beta-framework-builder
skills/dbs-bridge/scripts/bridge-skill.sh link skills
skills/dbs-bridge/scripts/bridge-skill.sh link "/absolute/path/to/skill"
skills/dbs-bridge/scripts/bridge-skill.sh link "/Users/me/external-skills/my-skill"
skills/dbs-bridge/scripts/bridge-skill.sh link "/Users/me/external-skills"

Read the full file on GitHub · 151 lines

Files

What ships with it

1 file 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.

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. 4d ago First seen · 151 lines · 330 tokens per session scan A abd96f447cd1

Subscribe to this mod's changes

dbs-bridge is a skill published in the GitHub repository skillmds/skillmd (1 stars, last pushed yesterday), licensed MIT. It adds 330 tokens to every session and 1,724 once invoked, about $0.0013 per session on Opus 5.5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-19.