Give your AI agents persistent memory. Install pre-built context packs for Cursor, Windsurf, Copilot & more.
npm install corepackainpx (no installation required):
bash
npx corepackai
`
⚡ Quick Start
Initialize agent infrastructure in any project:
`bash
1. Initialize context
npx corepackai init
2. Install a Behavior Pack
npx corepackai install @corepackai/ucp
`
📖 Commands
$3
- corepackai init - Initialize a new .ai/ context in the current directory.
- corepackai install - Install a behavior pack. Use --bridge to auto-configure your IDE.
- corepackai update - Update a pack while safely preserving your modifications.
- corepackai list - List installed packs.
- corepackai doctor - Diagnosis environment issues.
$3
- corepackai login - Authenticate via GitHub to access private/paid packs.
- corepackai logout - Clear credentials.
$3
- Supporter Seal: The CLI automatically injects a Supporter: seal into your private packs. This is a "Friendly DRM" feature that relies on community trust.
$3
- corepackai publish - Publish your own pack to the registry.
🤖 MCP Server (Claude Desktop)
CorePack AI includes a Model Context Protocol (MCP) server. To use it with Claude Desktop, add this to your config:
`json
{
"mcpServers": {
"corepackai": {
"command": "npx",
"args": ["-y", "corepackai", "mcp"]
}
}
}
``