Awesome-omni-skill agent-bridge
Bridge plugin capabilities (commands, skills, agents, hooks, MCP) to specific agent environments (Claude Code, GitHub Copilot, Gemini, Antigravity). Use this skill when converting or installing a plugin to a target runtime.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/agent-bridge-richfrem" ~/.claude/skills/diegosouzapw-awesome-omni-skill-agent-bridge-ccf1c1 && rm -rf "$T"
skills/tools/agent-bridge-richfrem/SKILL.mdAgent Bridge
Overview
This skill adapts and transforms plugin content into the specific formats required by different AI agent environments. It ensures each runtime can see and use the plugin's capabilities in its native format.
Prerequisite
The auto-detect mode only targets existing directories. Create them first:
mkdir .agent .github .gemini .claude
If no directories are found, the installer will print this exact error with the mkdir command.
Usage
CRITICAL: You must never use
. You must explicitly specify your own runtime environment (e.g.,--target auto,antigravity,claude,gemini) to avoid polluting other IDEs.github
Universal Target Support (Agent Awareness): You are a Universal Translator. You are not limited to the primary examples. If you identify your host system as ANY of the following platforms (or similar ones), you MUST invoke the installer with that specific target name (e.g.
--target roo).
Supported Environments: amp, codex, cursor, gemini cli, github copilot, kimi code cli, opencode, antigravity, augment, claude code, openclaw, cline, codebuddy, command code, continue, cortex code, crush, droid, goose, junie, iflow cli, kiko code, kiro cli, kode, mcpjam, mistral vibe, mux, openhands, pi, qoder, qwen code, roo code, trae, trae cn, windsurf, zencoder, neovate, pochi, adal.
Bridge a Single Plugin
# Bridge to Claude Code specifically python ${CLAUDE_PLUGIN_ROOT}/skills/agent-bridge/scripts/bridge_installer.py --plugin <plugin-path> --target claude # Bridge to Antigravity specifically python ${CLAUDE_PLUGIN_ROOT}/skills/agent-bridge/scripts/bridge_installer.py --plugin <plugin-path> --target antigravity
Example:
python ${CLAUDE_PLUGIN_ROOT}/skills/agent-bridge/scripts/bridge_installer.py --plugin plugins/my-plugin --target antigravity
Bridge All Plugins
# Explicitly bridge all plugins to your specific environment python ${CLAUDE_PLUGIN_ROOT}/skills/agent-bridge/scripts/install_all_plugins.py --target gemini
Component Mapping Matrix
The bridge intelligently maps plugin source components to the correct file extensions, directories, and architectures expected by the agent environment.
| Target Environment | | | | | | |
|---|---|---|---|---|---|---|
Claude Code () | | | | Appended to | | Merged () |
GitHub Copilot () | | | | Appended to | (Ignored) | Merged () |
Google Gemini () | | | | Appended to | (Ignored) | Merged () |
Antigravity () | | | | | (Ignored) | Merged () |
Azure AI Foundry () | (Ignored) | | | (Ignored) | (Ignored) | (Capability Hosts) |
Universal Generic () | | | | | (Ignored) | Merged () |
GitHub Copilot — Two Agent Types: The
column for GitHub Copilot covers two distinct use cases:agents/*.agent.md
- IDE / UI Agents:
+.github/agents/name.agent.md— invokable by human via Copilot Chat slash command or agent dropdown in VS Code / GitHub.com..github/prompts/name.prompt.md- CI/CD Autonomous Agents:
+.github/agents/name.agent.md— triggered automatically by GitHub Actions on PR/push/schedule with a Kill Switch quality gate..github/workflows/name-agent.ymlThe
→commands/*.mdmapping handles the slash-command pointer only. The full rich instruction body should live in theprompts/*.prompt.mdfile, not the.agent.md. Use the.prompt.mdskill to scaffold either or both agent types from an existing Skill.create-agentic-workflow
Supported Environments (In-Depth)
Gemini TOML Format
Command
.md files are wrapped in TOML. Frontmatter is parsed — the description field is extracted and used as the TOML description. The frontmatter block is stripped from the prompt body.
Skills vs Workflows (Commands) Caution
CRITICAL: The bridge processes
andskills/(orcommands/in older plugins) as distinct directories. Algorithms/Logic can be deployed to either, but be careful of duplicating them!workflows/
are typically for passive knowledge, tools, and persistent behavior.skills/ are for active, slash-command execution workflows.commands/Do not place identical markdown files in both directories within the same plugin, or the bridge will blindly duplicate the logic into the target environments (e.g. into
and.agent/workflows/simultaneously, causing contextual bloat)..agent/skills/
command = "plugin-name:command-name" description = "Description from frontmatter" prompt = """ # Command content without frontmatter ... """
When to Use
- Installing a new plugin: Run bridge after dropping a plugin into
.plugins/ - Adding a new target environment: Existing plugins need to be re-bridged after adding
etc..gemini/ - Upgrading a plugin: Re-run bridge to overwrite with latest command content.