What is the Builder System?
The Builder System ships inside thecodika-io/plugin agent plugin — an Open Plugin v1-conformant repo installable into any compatible coding agent (Claude Code, Cursor, …) with npx plugins add codika-io/plugin. It gives the agent the ability to autonomously design, build, modify, and test Codika use cases. Instead of manually writing config.ts files and n8n workflow JSON, you describe what you need in plain language and the agents handle the rest.
The system reads the same platform documentation you do, designs the architecture, creates all files, validates them, deploys to the platform, and iteratively fixes any issues — all without requiring you to understand n8n internals or Codika patterns.
How it works
The agents
Four specialized agents work together, each handling a different phase of the lifecycle:
See Builder Agents for detailed documentation on each agent.
The discover-codika-guides skill
All agents rely on a bundled skill calleddiscover-codika-guides that ships with the complete Codika platform documentation. This means agents can read the right guides at runtime without needing access to the codika-processes-lib repository.
The bundled documentation includes:
- Core guides — use-case-guide.md, config-patterns.md, codika-nodes.md
- Trigger-specific guides — HTTP triggers, schedule triggers, third-party triggers, sub-workflows
- Specialized guides — AI nodes, placeholder patterns, deployment parameters, data ingestion, agent skills
- 19 integration guides — Anthropic, OpenAI, Google, Microsoft, Slack, Supabase, and more
Prerequisites
Before using the Builder System:- Install the codika CLI —
npm install -g codika - Authenticate —
codika login - Install the codika plugin — follow the Codika Agent Plugin guide to install via
npx plugins add codika-io/plugin
Architecture
The Builder System ships inside a single agent plugin (codika-io/plugin):
The builder agents call the plugin’s own skills for all platform operations. For example,
codika:use-case-tester calls codika:deploy-use-case to deploy, codika:trigger-workflow to test, and codika:get-execution to inspect results.
Next steps
Builder Agents
Understand each agent’s capabilities and when to use them.
Usage Patterns
See common workflows and tips for writing effective prompts.
Reference
Plugin structure, bundled documentation catalog, and troubleshooting.
First Use Case
Prefer building manually? Follow the step-by-step guide.