Skip to main content

Overview

The CodeAlive installer automatically detects your AI coding agents and configures CodeAlive for each one. It supports three installation methods: MCP server (direct tool access), agent skill (workflow guidance), and Claude Code plugin (Claude-specific enhancements).

Quick Start

1

Run the Installer

2

Select Components

The interactive wizard will ask what to install:
3

Authenticate

Enter your CodeAlive API key when prompted. Get one at app.codealive.ai.The key is stored securely in your OS credential store — you only need to enter it once.
4

Restart Your Agents

Restart your AI coding agents to pick up the new configuration. The installer will tell you which agents were configured.

Installation Methods

The default wizard walks you through component selection and agent detection:
If you already have an API key, pass it to skip the key prompt:

Supported Agents

The installer auto-detects and configures these agents:

What Gets Installed

Configures the CodeAlive MCP server (https://mcp.codealive.ai/api/) in each detected agent’s config file. This gives your agent access to the v3 Tool API set:
  • get_data_sources — List indexed repositories and workspaces, optionally filtered to the current task with query
  • semantic_search — Default semantic search across your codebase
  • grep_search — Default exact text and regex search with line previews
  • get_repository_ontology — Orient around one repository
  • get_file_tree — Inspect repository files
  • read_file — Read one repository-relative file
  • fetch_artifacts — Fetch full source for identifiers
  • get_artifact_relationships — Expand graph relationships for one artifact
  • get_artifact_query_schema — Inspect metadata query schema
  • query_artifact_metadata — Run read-only metadata analytics
  • chat — Stateless slower synthesized codebase Q&A, only when explicitly requested
The installer writes the appropriate config format for each agent (JSON, TOML, YAML, or CLI command).
Installs the CodeAlive Context Engine skill via npx skills add. The skill teaches your agent:
  • Effective query patterns for search and chat
  • Cost-aware tool selection (search vs. chat)
  • Multi-step exploration workflows
  • Data source management (repos and workspaces)
Works with 30+ agents that support the skills.sh standard.
Installs the Claude Code marketplace plugin, which includes:
  • The CodeAlive skill (same as above)
  • Authentication hooks for automatic API key injection
  • A code exploration subagent for guided multi-step analysis
Install commands:

API Key Storage

Your API key is stored securely in the OS credential store: The key is stored once and shared across all agents on the same machine.

Command Reference

Troubleshooting

The installer looks for known config file locations. If your agent uses a non-standard path:
  1. Run npx @codealive/installer --debug to see which paths are checked
  2. If your agent isn’t listed, use the manual setup guides instead
If the credential store fails:
  1. Set the environment variable manually: export CODEALIVE_API_KEY="your_key"
  2. On macOS, ensure Keychain Access is unlocked
  3. On Linux, ensure secret-tool is installed (sudo apt install libsecret-tools)
Run PowerShell as Administrator, or use the Node.js method:
The installer requires Node.js 18+. Install it from nodejs.org or use the Windows PowerShell one-liner which doesn’t require Node.js.

Quickstart

Get started with CodeAlive in minutes

MCP Integration

Manual MCP setup for all agents

Agent Skills

Learn about skills and plugins

GitHub

Installer source code