Overview
Thecodika plugin gives AI coding agents direct access to the Codika platform. Once installed, your agent can scaffold use cases, validate workflows, deploy to production, trigger executions, debug failures, and autonomously build entire use cases from your business requirements.
It ships as a single Open Plugin v1-conformant repo at codika-io/plugin, so you install it once and the CLI wires it into every compatible host (Claude Code, Cursor, …).
| Component | What it adds |
|---|---|
| Skills (25) | /codika:* commands that wrap the codika CLI — deploy, verify, trigger, fetch, manage integrations, and more |
| Agents (4) | Autonomous agents that design, build, modify, and test use cases. Invoked via the Task tool with subagent_type: "codika:<agent>" |
Prerequisites
- A supported agent host (Claude Code, Cursor, …) 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)
/codika:setup-codika skill after installing the plugin.
Install
The
plugins CLI auto-detects which agent tools are installed on your machine (Claude Code, Cursor, …) and installs into all of them.Claude Code native alternative. If you prefer Claude Code’s built-in marketplace flow, run:Both paths produce the same
/codika:* skills and agents.You should see skills prefixed with
codika: (e.g., codika:deploy-use-case, codika:trigger-workflow) and the builder agents (codika:use-case-builder, codika:use-case-modifier, codika:n8n-workflow-builder, codika:use-case-tester).Authenticate
Before using any platform operations, authenticate the CLI:What you can do
CLI skills
Ask your agent naturally — it picks the right skill automatically.| Ask the agent 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
For more complex tasks, the agent delegates to specialized sub-agents (invoked via Task tool withsubagent_type: "codika:<name>"):
| Ask the agent to… | Sub-agent used |
|---|---|
| ”Build a use case that processes invoices from email” | codika:use-case-builder |
| ”Add Slack notifications to this use case” | codika:use-case-modifier |
| ”Build a workflow that calls the Tavily API” | codika:n8n-workflow-builder |
| ”Deploy and test this use case, fix any issues” | codika:use-case-tester |
codika:discover-codika-guides skill), so they always follow current patterns for triggers, placeholders, credentials, and mandatory nodes.
Example session
Updating
To get the latest skills and agents:plugins add on the same repo pulls the latest version. In Claude Code native:
Uninstalling
Troubleshooting
Plugins don't appear after installation
Plugins don't appear after installation
In Claude Code, run
/reload-plugins to force a rediscovery. You should see a count of plugins, skills, and agents in the output. Other hosts usually refresh on the next session restart.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
codika:discover-codika-guides skill must be available. Verify the codika plugin is installed by asking your agent “which skills do you have?”. You should see codika:discover-codika-guides in the list.Deploy or verify commands fail
Deploy or verify commands fail
Make sure the
codika CLI is installed globally (npm install -g codika). The skills shell out to the CLI — without it, none of the platform operations work.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.