From cyoda
Start here if you're new to Cyoda. Walks through the full development journey — Cyoda orientation, app design, instance setup, incremental build, and testing. Experienced users can invoke individual skills directly.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cyoda:appThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
$ARGUMENTS
$ARGUMENTS
I'll guide you through building your Cyoda application step by step.
Cyoda is an Entity Database Management System (EDBMS). Instead of tables with rows, you define entities — domain objects like Orders or Users — each with a workflow: named states and the transitions between them.
Key ideas:
Already familiar with Cyoda? Ask: "Do you already have a domain design, or do you need to go through the design process?"
Otherwise, continue below for the full guided journey.
Let's figure out what entities and workflows your app needs.
Invoke /cyoda:design — describe your application and I'll guide you through the domain model.
(After design is complete, continue here.)
First, let me check if you already have a Cyoda instance configured.
Invoke /cyoda:status.
/cyoda:setup → choose local/cyoda:setup → choose cloud, then /cyoda:auth(After setup is complete, run /cyoda:status to confirm connection.)
Run /cyoda:build to start registering your entity models and workflows one increment at a time.
Start with the smallest possible first version: one entity, two states, one transition.
Run /cyoda:test to smoke-test your running instance. Verify entity creation, transitions, and state changes work as designed.
Repeat steps 3–4 for each new entity, state, or transition in your design.
When your app is working locally and you're ready to go live:
Run /cyoda:migrate to lift-and-shift your models and workflows to Cyoda Cloud. No code changes required.
| Skill | When to use |
|---|---|
/cyoda:docs | Look up any Cyoda API or concept |
/cyoda:compute | Implement gRPC compute node processors |
/cyoda:debug | Diagnose failures or browse entity history |
/cyoda:status | Check current connection |
npx claudepluginhub cyoda-platform/cyoda-skills --plugin cyodaGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.