| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
One CLI to Rule Them All.
Tired of juggling multiple AI coding assistants? CAM is a unified Go CLI to manage configurations, instructions, skills, plugins, MCP servers, and launch settings for 17 AI assistants including Claude, Codex, Gemini, Qwen, Copilot, Blackbox, Goose, Continue, and more from a single terminal interface.
Since CAM is distributed from source, build and install the Go binaries locally:
# Clone the repository
git clone https://github.com/Chat2AnyLLM/code-agent-manager.git
cd code-agent-manager
# Run the install script
./install.sh# Install using the install script directly
./install.sh
# Or install from the web
curl -fsSL https://raw.githubusercontent.com/Chat2AnyLLM/code-agent-manager/main/install.sh | bash
# Install from source directly
git clone https://github.com/Chat2AnyLLM/code-agent-manager.git
cd code-agent-manager
go test ./...
go build -o dist/cam ./cmd/camCreate your base config files:
mkdir -p ~/.config/code-agent-manager
touch ~/.env
chmod 600 ~/.envSet up your API keys in .env:
export ANTHROPIC_API_KEY="your-anthropic-key"
export GITHUB_TOKEN="your-github-token"
export GEMINI_API_KEY="your-gemini-key"Source the environment file and verify setup:
source ~/.env
cam doctorLaunch the interactive menu:
cam launchSelect your assistant and start coding!
CAM now uses a Tauri desktop shell with a Go sidecar API. The same Go backend packages power both the terminal CLI and the desktop UI, so provider and launch behavior stays consistent across interfaces.
Use make start from the repository root:
make startmake start, make app, and make dev all run the same full desktop startup path. They build the Go sidecar expected by Tauri, start the Vite frontend dev server through Tauri, and open the desktop window.
Use this when you only want the React UI in a browser with mock/fallback data or a manually configured sidecar URL:
make frontendThe browser frontend listens on http://127.0.0.1:5173 by default. Override the host or port when needed:
make frontend FRONTEND_HOST=127.0.0.1 FRONTEND_PORT=5174Use this for API testing without opening the desktop window:
make sidecarBy default, the sidecar binds to 127.0.0.1 and chooses a random port (SIDECAR_PORT=0). It prints startup JSON containing the selected port and bearer token. Override values when needed:
make sidecar SIDECAR_PORT=54321make desktop-buildThis runs the frontend production build, builds the Go sidecar, and checks the Tauri shell with Cargo. On Windows, the Makefile sets CARGO_HTTP_CHECK_REVOKE=false to avoid certificate revocation-check failures when Cargo downloads crates.
make start # start the full Tauri desktop app
make build # build CLI binaries and sidecar into dist/
make test # run Go tests
make check # run Go vet, Go tests, frontend tests/build, sidecar build, and cargo check
make clean # remove generated build outputsCAM uses these main configuration files:
In the era of AI-driven development, developers often use multiple powerful assistants like Claude, GitHub Copilot, and Gemini. However, this leads to a fragmented and inefficient workflow:
CAM solves this by providing a single, consistent interface to manage everything, turning a chaotic toolkit into a cohesive and powerful development partner.
CAM supports 17 AI coding assistants:
| Assistant | Command | Install Method |
|---|---|---|
| Claude | claude | Shell script |
| Codex | codex | npm |
| Gemini | gemini | npm |
| Qwen | qwen | npm |
| Copilot | copilot | npm |
| CodeBuddy | codebuddy | npm |
| Droid | droid | Shell script |
| iFlow | iflow | npm |
| Crush | crush | npm |
| Cursor | cursor-agent | Shell script |
| Blackbox | blackbox | Shell script |
| Neovate | neovate | npm |
| Qoder | qodercli | npm |
| Zed | zed | Shell script |
| Goose | goose | Shell script |
| Continue | continue | npm |
| OpenCode | opencode | npm |
Manage standalone assistant configurations with markdown-based definitions and YAML front matter.
Managed coding-agent instruction files such as CLAUDE.md, AGENTS.md, GEMINI.md, and Copilot instruction files, installable at user or project scope where supported.
Custom tools and functionalities for your agents (directory-based with SKILL.md).
Marketplace extensions for supported assistants (GitHub repos or local paths).
| Command | Alias | Description |
|---|---|---|
| cam launch [TOOL] | l | Launch interactive TUI or a specific assistant |
| cam doctor | d | Run diagnostic checks on environment and API keys |
| cam agent | ag | Manage agent configurations (list, install, fetch from repos) |
| cam instruction | — | Manage and sync coding-agent instruction files across assistants |
| cam skill | s | Install and manage skill collections |
| cam plugin | pl | Manage marketplace extensions (plugins) |
| cam mcp | m | Manage MCP servers (add, remove, list, install) |
| cam upgrade [TARGET[,TARGET...]] | u | Upgrade one, several comma-separated, or all tools (default: all) |
| cam install [TARGET] | i | Alias for upgrade |
| cam uninstall [TARGET] | un | Uninstall tools and backup configurations |
| cam config | cf | Manage CAM's internal configuration files |
| cam version | v | Display current version |
Note: non-boolean CLI options are long-form only. For example, use --config and --scope (not -c or -s).
Upgrade one tool, selected tools in order, or every enabled tool:
cam upgrade codex
cam upgrade codex,claude
cam upgrade allCAM is governed by a speckit-driven development framework ensuring consistent, high-quality evolution with:
This project is licensed under the MIT License.
| Back | FazBrowse Home | New Git URL |