← Documentation
Brain
The reasoning layer. Turns plain language into a structured, step-by-step plan before anything touches your machine.
How it works
01
Parse
Breaks your sentence into goals, constraints, and context from memory.
02
Plan
Builds an ordered task list with dependencies — what runs before what.
03
Validate
Checks permissions and flags risky steps before the agent executes.
Example
// input
"Book dinner tonight and add it to my calendar"
// brain output
1. search restaurants near current location
2. filter by rating ≥ 4.5
3. reserve table · party of 2 · 8pm
4. create calendar event · sync confirmation
Next
Once the plan is ready, the Agent layer takes over and executes each step on your OS.
Explore Agent →