Overview
The Codika Claude Code plugins give Claude direct access to the Codika platform. Once installed, Claude can scaffold use cases, validate workflows, deploy to production, trigger executions, debug failures, and even autonomously build entire use cases from your business requirements. Two plugins work together:| Plugin | What it adds |
|---|---|
| codika | 14 CLI skills — deploy, verify, trigger, fetch, manage integrations, and more |
| use-case-builder | 4 autonomous agents that design, build, modify, and test use cases + bundled platform documentation |
Prerequisites
- Claude Code installed and running
- Node.js 22+
- The
codikaCLI installed (npm install -g codika) - A Codika API key (from the dashboard under Organization Settings > API Keys)
setup-codika skill after installing the plugins.
Install the plugins
This adds 14 CLI skills that let Claude run
codika commands on your behalf — deploying use cases, triggering workflows, fetching execution traces, and more.This adds 4 autonomous builder agents and the bundled platform documentation. The builder agents depend on the
codika plugin for all platform operations.You should see skills prefixed with
codika: (e.g., codika:deploy-use-case, codika:trigger-workflow) and the builder agents (use-case-builder, use-case-modifier, n8n-workflow-builder, use-case-tester).Authenticate
Before using any platform operations, authenticate the CLI:What you can do
CLI skills (codika plugin)
Use these by asking Claude naturally — it picks the right skill automatically.| Ask Claude to… | Skill used |
|---|---|
| ”Scaffold a new use case” | codika:init-use-case |
| ”Validate my use case” | codika:verify-use-case |
| ”Deploy this use case” | codika:deploy-use-case |
| ”Trigger the main workflow” | codika:trigger-workflow |
| ”Show me the last execution” | codika:get-execution |
| ”List recent executions” | codika:list-executions |
| ”Publish to production” | codika:publish-use-case |
| ”Download the deployed use case” | codika:fetch-use-case |
| ”Set up the Slack integration” | codika:manage-integrations |
Builder agents (use-case-builder plugin)
For more complex tasks, Claude delegates to specialized agents:| Ask Claude to… | Agent used |
|---|---|
| ”Build a use case that processes invoices from email” | use-case-builder |
| ”Add Slack notifications to this use case” | use-case-modifier |
| ”Build a workflow that calls the Tavily API” | n8n-workflow-builder |
| ”Deploy and test this use case, fix any issues” | use-case-tester |
Example session
Updating plugins
To get the latest skills and agents:Uninstalling
Troubleshooting
Plugins don't appear after installation
Plugins don't appear after installation
Run
/reload-plugins to force Claude Code to rediscover installed plugins. You should see a count of plugins, skills, and agents in the output.Authentication errors
Authentication errors
Run
codika login followed by codika whoami to verify your credentials. If using multiple organizations, make sure the correct profile is active.Builder agents can't find documentation
Builder agents can't find documentation
The
discover-codika-guides skill must be available. Verify the use-case-builder plugin is installed by asking Claude “which skills do you have?”. The skill should appear as use-case-builder:discover-codika-guides.Deploy or verify commands fail
Deploy or verify commands fail
Ensure the
codika plugin is installed — the builder agents depend on it for all CLI operations. Also check that codika CLI is installed globally (npm install -g codika).Next steps
Quickstart
Install the CLI and deploy your first use case.
Builder System
Deep dive into the autonomous builder agents.
CLI Reference
Complete reference for all codika CLI commands.
Agent Skills
Make your workflows discoverable by AI agents.