ATLAS-DEV78423

AgentBridge — AI skill for Claude Code

AI community

Migrate AI coding agent config between 12 agents — Claude Code, Codex, Copilot, Cursor, Gemini, Crush, Grok, omp, OpenCode, Kilo and more.

How to install AgentBridge

This entry records only its repository, not the path inside it, so there is no exact command to give. Open ATLAS-DEV78423/AgentBridge and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What AgentBridge does

Migrate AI coding agent config between 12 agents — Claude Code, Codex, Copilot, Cursor, Gemini, Crush, Grok, omp, OpenCode, Kilo and more. Bidirectional MCP/instructions/model sync with backups, schema doctor and safe auto-fixes.

Alternatives in AI

  • Anthropic Quickstarts — by Anthropic - Offers comprehensive development guides for three distinct AI-powered demo projects with standa 15.4k ★
  • Azure Voice Live .net — Real-time bidirectional voice AI 1.8k ★
  • Setup Watch Skill — One-shot setup for Watch Skill — installs the engine, bootstraps ffmpeg/yt-dlp, registers the MCP server in ev 315 ★

README

AgentBridge

[![npm version](https://img.shields.io/npm/v/@superdev2347832/agent-bridge.svg)](https://www.npmjs.com/package/@superdev2347832/agent-bridge) [![CI](https://github.com/ATLAS-DEV78423/AgentBridge/actions/workflows/ci.yml/badge.svg)](https://github.com/ATLAS-DEV78423/AgentBridge/actions/workflows/ci.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

Migrate your AI coding agent configuration between 12 agents: Claude Code, OpenCode, Kilo Code, Cursor, Gemini CLI, Codex, Copilot CLI, Crush, Grok, omp, Muse Code, and Pi.

A local-first CLI tool that discovers, compares, and migrates coding agent environments with backup and rollback.

Installation

# From npm (installs the `agent-migrate` binary)
npm install -g @superdev2347832/agent-bridge

# From source
git clone https://github.com/ATLAS-DEV78423/AgentBridge.git
cd AgentBridge
npm install
npm link

Requires Node.js >= 22.

Quick Start

# See what's in your project
agent-migrate scan

# Preview a migration
agent-migrate plan claude-code opencode

# Do it
agent-migrate migrate claude-code opencode

# Undo if needed
agent-migrate rollback . 

# Check configs for schema problems (exit 1 on errors — CI-friendly)
agent-migrate doctor

# Apply the safe auto-fixes (commented strict-JSON, divergent instructions)
agent-migrate fix

# Any direction works — e.g. back to Claude Code
agent-migrate migrate opencode claude-code

# Or sync one agent's config to every other agent in the project
agent-migrate migrate-all claude-code .

Commands

Command Description
scan [path] Detect every agent config present (all of them, not just the first)
plan [path] Show what maps to what
diff [path] Preview file changes
migrate [path] [--dry-run] Scan + write in one step
apply [path] Same as migrate (alias)