First Workflow¶
If you are new to ORCA Framework, do not start by learning every command.
Start with this one path:
orca-onboardorca-specorca-planorca-buildorca-review
mermaid
flowchart LR
A["orca-onboard"] --> B["orca-spec"]
B --> C["orca-plan"]
C --> D["orca-build"]
D --> E["orca-review"]
That is the default ORCA Framework intro workflow.
These names are ORCA workflow commands and the install now provides matching orca-* shims in the installed bin/ directory.
If your host does not provide native orca-* slash commands, use the shipped shims or orca run <command> --print to reuse the exact workflow prompt.
This path is also the teaching path. It is meant to show a new user how the framework works while still being a real production path they can keep using later.
What Each Step Does¶
1. orca-onboard¶
Turn a vague task into a clear work item with constraints, intent, and scope.
2. orca-spec¶
Write the contract for what should happen and what should not.
3. orca-plan¶
Break the spec into a concrete execution path.
4. orca-build¶
Implement the approved plan.
5. orca-review¶
Check for bugs, regressions, and obvious quality risks before going wider.
Why This Path Exists¶
Most agent frameworks fail new users by showing a giant command catalog before they show a usable path.
ORCA Framework should do the opposite:
- one work item
- one path
- one command per stage
- one clear next move
What To Do After This¶
Only after this five-command path should you branch into:
orca-test-blindfor first-look QAorca-goalfor bounded long-running workorca-backgroundfor unattended progressorca-demofor a low-input personalized showcase that turns into a real/goalorca-ideafor upstream ideation instead of implementationorca-legacyfor inherited or fragile codebases