Questions This Page Answers
- What exact tool sequence should an operator run for common workflows?
- Which calls prove system health before dispatching high-value work?
- How do trust, autonomous sessions, and ROI queries connect in practice?
Recipe 1: First Connection Handshake
Verify auth, discover workspace, and get org context.1
Verify Connection
{ "workspace_id": "ws_...", "name": "My Workspace" }If you get workspace_not_set, call workspace with action=list first, then workspace with action=set.2
Get Org Overview
active_initiatives, total_tasks, health indicators.3
Check Pending Work
entities array of pending decisions with id, title, status, and urgency.Recipe 2: Create and Launch an Initiative
Build a full initiative hierarchy and start execution.1
Scaffold the Initiative
2
Check Health
health_score, milestone progress, blockers.3
Browse Created Entities
Recipe 3: Decision Triage
Review and process pending decisions efficiently.1
Fetch Pending Decisions
2
Get Context for a Decision
Use
orgx_search to understand the background:3
Approve or Reject
Recipe 4: Overnight Autonomous Session
Set up a bounded autonomous session and review results the next morning.1
Check Trust Levels
autonomous capabilities will execute without approval.2
Start Session
active.3
Morning Review
4
Check ROI
Recipe 5: Planning Session
Use collaborative planning tools to improve an initiative plan.1
Start Planning
2
Get AI Suggestions
3
Record Edits
4
Complete Planning
Recipe 6: Entity CRUD Lifecycle
Manage the complete lifecycle of an entity — create, update, comment, complete, and verify.1
Create an Entity
2
Update the Entity
3
Comment on It
4
Complete the Entity
5
Verify Parent Completion
is_complete is true, the parent workstream can be marked complete as well.Recipe 7: Scoring & Queue Management
Manage the Next Up Queue — score items, inspect signals, pin priorities, tune weights, and skip blockers.1
Score the Queue
2
Get Scoring Signals
3
Pin a High-Priority Item
4
Adjust Scoring Weights
5
Skip a Blocked Workstream
Next Steps
Failure Playbooks
Handle errors gracefully.
Tool Profiles
Reduce schema overhead with role-based profiles.
