What are Codika skills?
Codika skills are self-contained documentation files (SKILL.md) that teach AI coding agents (Claude Code, Cursor, Windsurf) how to use thecodika-helper CLI. When an agent has the Codika plugin installed, it can autonomously:
- Set up authentication and manage profiles
- Create projects on the platform
- Scaffold new use case folders
- Validate workflows against Codika patterns
- Deploy use cases to production
- Trigger workflows and debug executions
Installation
Add the Codika marketplace
Install the Codika plugin
Once the marketplace is added, thecodika plugin is available with all 8 skills.
Available skills
| Skill | Maps to CLI commands | What it teaches agents |
|---|---|---|
| setup-codika | login, whoami, use, logout, config | Install CLI, authenticate, manage profiles |
| create-project | project create | Create platform projects with org-aware metadata |
| init-use-case | init | Scaffold use case folders with template workflows |
| verify-use-case | verify use-case, verify workflow | Validate workflows and auto-fix issues |
| deploy-use-case | deploy use-case | Deploy with version management and archival |
| fetch-use-case | get use-case | Download deployed use cases from the platform |
| trigger-workflow | trigger | Execute workflows with payload and polling |
| get-execution | get execution | Debug executions with recursive sub-workflow details |
How skills work
Each skill is a Markdown file that contains:- When to use — trigger conditions for the agent
- Prerequisites — what must be in place before using the skill
- Commands — exact CLI commands with all flags and options
- Examples — real-world usage patterns
- Error handling — common failures and fixes
- Output format — what the command returns
Typical agent workflow
An agent orchestrating a full deployment would use skills in this order:Design principles
- No secrets — skills never contain API keys, internal URLs, or credentials
- CLI-first — skills reference CLI commands and flags, not internal implementation
- Self-contained — each skill has all context needed; no cross-skill dependencies
- Fail-safe — skills guide agents to check prerequisites and handle errors
- Org-aware — skills explain multi-profile, multi-org workflows