Universal AI skill compiler and MCP bridge. Write once, run across agents.
Write once. Run across agents.
D'AUBE // BRIDGE² is an open-source universal AI skill compiler and MCP bridge. Define one portable capability spec, then compile it into integration artifacts for ChatGPT/Codex, Claude, Gemini, DeepSeek, Meta/Llama, MCP hosts, and Chromium browsers.
On 2026-09-18, the BRIDGE² deployment record was AI Deploy Network Approved after review of the submitted implementation evidence. This means the deployment record passed AI Deploy Network review; it is not a client-confirmed commercial outcome or a guarantee of production performance.
The canonical publication narrative is maintained in docs/AI_DEPLOY_CASE_STUDY.md. The reviewed case study is now publicly available on AI Deploy Network.
AI tooling is fragmented. The same capability is repeatedly rewritten as MCP tools, provider function schemas, skills, plugins, and browser configuration. BRIDGE² treats those surfaces as compiler targets while keeping capability logic provider-neutral.
skill.yaml
|
+-- MCP tool schema
+-- OpenAI / ChatGPT / Codex artifacts
+-- Claude plugin + SKILL.md
+-- Gemini SKILL.md + MCP config
+-- DeepSeek tool schemas
+-- Meta/Llama function schemas
+-- Chromium extension manifest
Current release: 7 target families, 15 deterministic artifacts, one MCP server.
git clone https://github.com/daubesonntag-dotcom/daube-agent-bridge.git
cd daube-agent-bridge
python -m pip install -e ".[dev]"
daube-bridge validate examples/skill.yaml
daube-bridge compile examples/skill.yaml -o build/sample
Install the verified v0.1.3 wheel directly from GitHub Releases:
python -m pip install https://github.com/daubesonntag-dotcom/daube-agent-bridge/releases/download/v0.1.3/daube_agent_bridge-0.1.3-py3-none-any.whl
python -m daube_bridge doctor
python -m daube_bridge ... is the shim-free CLI path for Windows environments where Application Control blocks generated console-script executables.
Run BRIDGE² as a local stdio MCP server:
python -m daube_bridge.server
Or expose the HTTP MCP endpoint for remote/local integrations:
daube-bridge serve
# http://127.0.0.1:8000/mcp
BRIDGE² ships an MCPB v0.4 bundle definition using the cross-platform uv runtime. Build the deterministic bundle with:
python scripts/build_mcpb.py
The build is reproducible: identical source produces an identical archive hash. Official MCP Registry metadata lives in server.json.
| Surface | Output | Strategy |
|---|---|---|
| MCP hosts | MCP server + tool schemas | Shared transport/tool backbone |
| OpenAI / ChatGPT / Codex | SKILL.md, MCP descriptor, function schemas | Skills + MCP/tool calling |
| Claude | .claude-plugin/plugin.json, .mcp.json, SKILL.md | Plugin + portable skill + MCP |
| Gemini / Google agents | SKILL.md, MCP config | Portable skill + MCP |
| DeepSeek | OpenAI-style tools.json | Function/tool calling adapter |
| Meta / Llama | neutral tools.json | Application/router function schema |
| Chromium browsers | Manifest V3 side panel | Endpoint/config control surface |
This matrix describes integration artifacts BRIDGE² generates. It does not invent provider capabilities that do not exist.
name: My Research Skill
version: 0.1.0
description: Research and compare options.
tools:
- name: compare_options
description: Compare options against explicit criteria.
parameters:
type: object
properties:
options:
type: array
items: {type: string}
required: [options]
The bundled server exposes three small primitives:
bridge_targets — discover supported compilation targets.validate_skill — validate a portable skill object.compile_skill — compile a skill in-memory for another agent or tool.That makes BRIDGE² usable both as a CLI and as infrastructure callable by other agents.
python scripts/verify.py
python scripts/build_mcpb.py
.tools/mcp-publisher.exe validate
The verification gate covers tests, Ruff, target discovery, sample compilation, wheel creation, deterministic MCPB creation, and official MCP Registry metadata validation.
After publishing a GitHub Release, smoke-test the public wheel in an isolated environment:
python scripts/smoke_release.py 0.1.3
npx / TypeScript compiler parity.Issues, adapters, compatibility fixtures, docs, and provider integrations are welcome. Provider-format changes should include a link to authoritative documentation and a minimal reproducible fixture.
Useful starting points:
CONTRIBUTING.mdCHANGELOG.mdGOVERNANCE.mddocs/PROVIDER_COMPATIBILITY.mddocs/20K_STAR_PLAYBOOK.mddocs/CODEX_FOR_OSS.mddocs/OPEN_SOURCE_FUND.mddocs/DISTRIBUTION.mddocs/PERFORMANCE_EVIDENCE.mddocs/THREAT_MODEL.mddocs/AI_DEPLOY_NETWORK.mddocs/LAUNCH_KIT.mdSECURITY.mdMIT © 2026 D'AUBE SONNTAG.
This listing does not have a supported local package template. Use the maintainer’s documentation for its hosted endpoint, authentication, and client-specific setup. No install command has been inferred.
https://github.com/daubesonntag-dotcom/daube-agent-bridge/releases/download/v0.1.3/daube-agent-bridge-0.1.3.mcpbotherD'AUBE // BRIDGE² works with any MCP-compatible client. Copy the config snippet from the Configuration section above and add it to the file shown for your client, then restart the application.
~/Library/Application Support/Claude/claude_desktop_config.jsonRestart Claude Desktop completely for changes to take effect.~/.cursor/mcp.jsonRestart Cursor for changes to take effect..vscode/mcp.jsonReload VS Code window for changes to take effect.~/.codeium/windsurf/mcp_config.jsonRestart Windsurf for changes to take effect..mcp.jsonSave at the project root, then start Claude Code in that project and review the MCP server approval prompt. Keep real credentials out of shared files.