@codealive/installer
v1.0.8
Published
Install CodeAlive MCP server, skill, and plugin to your AI coding agents
Readme
codealive-installer
Install CodeAlive to your AI coding agents.
Supports three installation methods:
| Method | Best for | Agents | |--------|----------|--------| | Claude Code Plugin | Claude Code users | Claude Code | | CodeAlive Skill | Universal use | Cursor, Copilot, Windsurf, Gemini CLI, Codex, Roo Code, 30+ agents | | MCP Server | Direct tool access | Any MCP-compatible client |
Quick Start
macOS / Linux:
npx @codealive/installerWindows (PowerShell):
irm https://raw.githubusercontent.com/CodeAlive-AI/codealive-installer/main/install.ps1 | iexOr if you already have Node.js:
npx @codealive/installerThe interactive wizard will guide you through selecting and installing components.
Options
--api-key, -k CodeAlive API key
--ci CI mode — skip prompts, install MCP to detected agents
--debug Enable debug loggingCI Mode
npx @codealive/installer --ci --api-key YOUR_KEYAutomatically installs the MCP server to all detected agents without prompts.
Supported Agents (MCP)
- Claude Code
- Cursor
- VS Code (GitHub Copilot)
- Windsurf
- Cline
- Roo Code
- Zed
- OpenCode
- Codex
- Antigravity
Programmatic Usage
import { runWizard, installMcp, installSkill, installPlugin } from '@codealive/installer';
// Run the full wizard
await runWizard({ apiKey: 'your-key' });
// Or install individual components
const mcpClients = await installMcp('your-key');
const skillResult = installSkill();
const pluginOk = await installPlugin();API Key
Get your API key at app.codealive.ai/settings/api-keys.
Keys are stored in the OS credential store (macOS Keychain, Linux secret-tool, Windows Credential Manager).
License
MIT
