
Cyoda
- 1 repo stars
- Updated July 1, 2026
- Cyoda-platform/cyoda-skills
Manage agent workflows and task orchestration with the Cyoda platform.
About
Cyoda-skills provides workflow and task management integrations for Cyoda. Developers use it to orchestrate complex agent workflows and manage project execution.
- Workflow orchestration and task management
- Agent integration with Cyoda platform
Cyoda by the numbers
- Data as of Jul 8, 2026 (Skillselion catalog sync)
/plugin marketplace add Cyoda-platform/cyoda-skills/plugin install cyoda@cyodaAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Last updated | July 1, 2026 |
| Repository | Cyoda-platform/cyoda-skills ↗ |
What it does
Manage agent workflows and task orchestration with the Cyoda platform.
README.md
Cyoda Plugin for Claude Code
Helps you build applications on Cyoda — an Entity Database Management System (EDBMS).
Skills
| Skill | Purpose |
|---|---|
/cyoda:app |
Start here if you're new — walks the full journey |
/cyoda:setup |
Install cyoda-go locally or connect to Cyoda Cloud |
/cyoda:auth |
Authenticate to Cyoda Cloud (obtain JWT) |
/cyoda:design |
Brainstorm entities and workflows for your app |
/cyoda:build |
Incrementally build and register entity models and workflows |
/cyoda:compute |
Implement compute node processors via gRPC |
/cyoda:test |
Smoke-test your running Cyoda instance |
/cyoda:debug |
Diagnose failures and browse entity history |
/cyoda:migrate |
Lift-and-shift from local cyoda-go to Cyoda Cloud |
/cyoda:docs |
Look up Cyoda documentation |
/cyoda:status |
Check connection status |
Connection Config
Skills share connection state via ~/.config/cyoda/cyoda-plugin-config.json — a home-directory file that is never git-tracked:
{
"active": "default",
"profiles": {
"default": {
"endpoint": "http://localhost:8080",
"env": "development"
},
"prod": {
"endpoint": "https://client-abc123-prod.eu.cyoda.net",
"token": "eyJ...",
"env": "production"
}
}
}
The "active" key controls which profile all skills use. token is absent for local cyoda-go (mock auth).
Run /cyoda:setup then /cyoda:auth to create a profile and set it as active.