Overview
CodeAlive offers three integration methods that complement each other:MCP Server
Provides tools. Gives your agent direct access to the v3 Tool API set via the Model Context Protocol:
get_data_sources, semantic_search, grep_search, repository ontology/tree/read tools, fetch_artifacts, get_artifact_relationships, ArtifactQuery tools, and stateless chat.Agent Skill
Teaches workflows. Teaches your agent effective query patterns, cost-aware tool selection, and multi-step exploration workflows.
Claude Code Plugin
Bundles everything. Includes the skill plus authentication hooks and a code exploration subagent. Claude Code only.
Installing the Skill
1
Via Installer (Recommended)
The universal installer auto-detects your agents and installs the skill:Select “CodeAlive Skill” when prompted. See the Installation Guide for details.
2
Via npx
Install the skill directly using the skills CLI:This works with any agent that supports the skills.sh standard.
3
Manual Installation
Copy the
skills/codealive-context-engine folder into your agent’s skills directory:Installing the Claude Code Plugin
For Claude Code users, the plugin provides the best experience — it includes the skill plus Claude-specific enhancements.1
Add the Marketplace
In Claude Code, run:
2
Install the Plugin
- The CodeAlive Context Engine skill
- Authentication hooks for automatic API key injection
- A code exploration subagent for guided analysis
Setup & Authentication
After installing, run the interactive setup:CODEALIVE_BASE_URL to your deployment origin, for example https://codealive.yourcompany.com. https://host/api is also accepted and normalized automatically.
API Key Resolution Order
CODEALIVE_API_KEYenvironment variable- OS credential store:
Available Tools
The skill provides local scripts for the complete Tool API v3 workflow plus an offline version check:
Check the installed version locally:
semantic_search and grep_search should be the default starting point. Chat invokes an LLM on the server side, is stateless in v3, can take substantially longer than retrieval, and is usually unnecessary unless you specifically request a synthesized answer after search.
Supported Agents
The skill works with 30+ agents that support the skills.sh standard, including: Cursor, GitHub Copilot, Windsurf, Gemini CLI, Codex, Goose, Amp, Roo Code, OpenCode, OpenClaw, Claude Code, and many more.Troubleshooting
API key not configured
API key not configured
Run the setup script:Or set the environment variable:
Skill not detected by agent
Skill not detected by agent
- Verify the skill files are in the correct directory for your agent
- Check that the
SKILL.mdfile exists in the skill folder - Restart your agent
Python not found
Python not found
The skill requires Python 3.8+. No third-party packages are needed — it uses only the standard library.
Credential store errors
Credential store errors
If the OS credential store fails:
- macOS: Ensure Keychain Access is unlocked
- Linux: Install
libsecret-tools(sudo apt install libsecret-tools) - Windows: Run as Administrator
- Fallback: Use the
CODEALIVE_API_KEYenvironment variable
Related Resources
Installation Guide
Universal installer for all components
MCP Integration
Set up the MCP server for direct tool access
GitHub
Skills source code
skills.sh
Agent skills standard