Context Engine skills, hooks, and MCP integration for customer Claude Code installs.
npx claudepluginhub codota/ctx-customer-pack-distributableContext Engine skills, MCP, and hooks for Claude Code
Context Engine skills, data loader, and onboarding methodology for AI coding agents.
| Package | What it includes | Depends on |
|---|---|---|
| core | 37 skills, hooks, MCP proxy for your AI agent | — |
| loader | ctx-loader CLI for bulk data loading | core |
| onboarder | ctx-onboard CLI + 7-step evaluation methodology | core, loader |
Core only — skills for your AI agent:
curl -fsSL https://raw.githubusercontent.com/codota/ctx-customer-pack-distributable/main/installers/install.sh | bash -s -- --package core --agent claude
Core + data loader CLI:
curl -fsSL https://raw.githubusercontent.com/codota/ctx-customer-pack-distributable/main/installers/install.sh | bash -s -- --package loader --agent claude
Everything (core + loader + onboarding):
curl -fsSL https://raw.githubusercontent.com/codota/ctx-customer-pack-distributable/main/installers/install.sh | bash -s -- --package all --agent claude
The installer fetches files directly from GitHub — no clone needed. Dependency resolution is automatic: loader includes core, all includes everything. Replace claude with cursor, gemini, or tabnine for other agents.
claude plugin install --from https://github.com/codota/ctx-customer-pack-distributable
Installs the full plugin bundle via the marketplace manifest: 37 skills + hooks (decision-context, change-confidence) + MCP server (ctx-cloud). The loader and onboarder are CLI tools — use the curl | bash installer above to add them.
export CTX_API_URL=https://ctx.your-company.com
export CTX_API_KEY=ctx_your_key_here
| Variable | Required | Description |
|---|---|---|
CTX_API_URL | Yes | Context Engine server URL |
CTX_API_KEY | Yes | API key (never pass as CLI flag) |
HTTPS_PROXY | No | HTTP proxy for corporate networks |
NODE_EXTRA_CA_CERTS | No | Custom CA certificate path |
ctx-skills, ctx-loader, and ctx-onboardctx-loader init --template github-jira-slack --output ctx-loader.yaml
ctx-loader validate --manifest ctx-loader.yaml --json
ctx-loader load --manifest ctx-loader.yaml --json
ctx-loader status --json
Templates in loader/templates/.
ctx-onboard step-0 --json # Validate setup
ctx-onboard step-1 --repo-path . --json # Generate test plan
ctx-onboard step-2 --manifest m.yaml # Load data
ctx-onboard step-3 --json # Baseline (no MCP)
ctx-onboard step-4 --json # Baseline (with MCP)
ctx-onboard step-5 --repo-path . --json # Domain enrichment
ctx-onboard step-6 --json # Measure with domain
ctx-onboard step-7 --json # Rollout plan
| Agent | Tier | Core install |
|---|---|---|
| Claude Code | 1 | Plugin or file copy |
| Cursor | 1 | File copy (skills + rules) |
| Gemini CLI | 1 | File copy |
| Tabnine | 1 | File copy (global) |
| GitHub Copilot | 2 (preview) | File copy |
| Codex | 2 (preview) | File copy |
core/agents/ 37 skills × 6 agents + hooks + MCP
core/tool-schemas.json
loader/bin/ctx-loader
loader/templates/ 3 manifest templates
onboarder/bin/ctx-onboard
onboarder/skills/ 7 onboarding step skills
installers/install.sh