Official agent plugin for the Codika platform. Installs CLI skills + autonomous builder agents so any compatible coding agent (Claude Code, Cursor, …) can create projects, design n8n workflows, deploy use cases, and manage the platform end-to-end.
Conforms to the Open Plugin Specification v1.0.
npx plugins add codika-io/pluginThe plugins CLI auto-detects which agent tools are installed and installs to all of them.
/plugin marketplace add codika-io/plugin
/plugin install codika@plugin
npm install -g codika
codika loginThen run /codika:setup-codika once per machine to complete authentication inside the agent.
One plugin, codika, with 26 skills + 4 autonomous agents.
Pure documentation-based skills that wrap the codika CLI. No code, no secrets.
Setup & auth
| Skill | What it does |
|---|---|
auth-codika |
OTP-based CLI signup/login — agent provisions a fresh cko_ API key from the terminal in two commands + a 6-digit code from email. No browser. Preferred for first-time setup. |
setup-codika |
Install the CLI and manage profiles (switch, list, logout). Use when the user already has a cko_ to paste, or for profile management. |
discover-codika-guides |
Locate and list the bundled platform documentation |
Organizations & projects
| Skill | What it does |
|---|---|
create-organization |
Create a new organization |
create-organization-key |
Create an organization API key |
update-organization-key |
Update an organization API key |
create-project |
Create a new project |
list-projects |
List all projects |
get-project |
Fetch project details |
Use cases — build & deploy
| Skill | What it does |
|---|---|
init-use-case |
Scaffold a new use case |
verify-use-case |
Validate workflows without deploying |
deploy-use-case |
Validate then deploy via codika verify + codika deploy |
rerun-deployment |
Rerun an existing deployment with refreshed credentials and parameter changes |
publish-use-case |
Publish a deployment to production |
fetch-use-case |
Download a deployed use case |
deploy-documents |
Upload stage documents |
deploy-data-ingestion |
Deploy data ingestion config |
Execution & operations
| Skill | What it does |
|---|---|
trigger-workflow |
Trigger a workflow |
get-execution |
Fetch execution details |
list-executions |
List recent executions |
list-instances |
List all process instances |
get-instance |
Fetch instance details |
instance-activate |
Activate or deactivate instances |
manage-integrations |
Configure, list, and delete integrations |
manage-notes |
Manage project notes |
get-skills |
List available platform skills |
Autonomous agents that read the bundled platform documentation to design, build, test, and debug Codika use cases. The user provides a goal — the agents study the guides to figure out the best architecture.
| Agent | What it does |
|---|---|
use-case-builder |
Reads documentation, designs architecture from requirements, creates config.ts, delegates workflow creation, validates |
use-case-modifier |
Reads an existing use case (config.ts + all workflows), reads docs, makes targeted modifications |
n8n-workflow-builder |
Builds individual n8n workflow JSON files following Codika patterns |
use-case-tester |
Runs deploy-trigger-inspect-fix loops to test and debug use cases automatically |
Usage examples:
- "Create a use case for invoice processing with PDF upload and AI extraction" → invokes
codika:use-case-builder - "Add a Slack notification to the invoice-processor use case" → invokes
codika:use-case-modifier - "Build an HTTP-triggered workflow for document classification" → invokes
codika:n8n-workflow-builder - "Test and fix the invoice-processor use case" → invokes
codika:use-case-tester
Self-contained: All platform documentation ships with the plugin under skills/discover-codika-guides/references/ (main use-case guide + 11 specific guides + 19 integration guides + plan examples). Agents read these directly — no need to clone codika-processes-lib.
Codika is a multi-tenant SaaS platform for building, deploying, and managing business process automations powered by n8n workflows. Users describe what they need, AI agents create the workflows, and the platform handles deployment, credential management, and execution tracking.
See CLAUDE.md for conventions and instructions on adding new skills or agents.
- v3.0.0 — Renamed
redeploy-use-case→rerun-deploymentandcodika redeploy→codika rerun deployment(verb-noun subcommand) to eliminate persistent agent confusion withdeploy-use-case. The "rerun" verb is lexically distinct from "deploy", so agents stop pattern-matching the two skills as a pair. Backend Cloud FunctionredeployDeploymentInstanceis unchanged.
MIT