The OrgX Mental Model
OrgX is built around a simple loop: Let’s break down each component.Questions This Page Answers
- How does OrgX break down complex work so agents can execute reliably?
- Which agent should run which type of work?
- Where does human approval fit without slowing execution?
- How do I know outputs are trustworthy and auditable?
- Why does this model outperform generic “single chat agent” workflows?
Why This Model Works
- Less context loss: IWMT + org graph preserve execution context across handoffs.
- Faster throughput: Domain agents execute in parallel while orchestrator handles routing.
- Lower risk: Decisions and verifier gates catch issues before shipping.
- Compounding quality: The flywheel learns from approvals, rejections, and outcomes.
The IWMT Hierarchy
OrgX organizes work using the IWMT hierarchy — Initiative, Workstream, Milestone, Task. This structure enables automatic cascade execution.Initiative
A high-level goal or project. Examples: “Launch v2 of the marketing site”,
“Close Series A”, “Ship AI-powered search”
Auto-Continue Cascade
IWMT isn’t just organizational — it drives automatic execution:- When a task completes, the next queued task in the workstream auto-starts
- When all tasks in a milestone complete, the milestone auto-closes
- When a workstream finishes, dependent workstreams transition from “pending” to “ready”
- Cross-workstream dependencies resolve automatically through DAG resolution
Agents
Agents are specialized AI workers that handle different domains:- Engineering Agent
- Product Agent
- Marketing Agent
- Sales Agent
- Design Agent
- Operations Agent
- Orchestrator Agent
Domain: Engineering & implementationCapabilities:
- Analyze codebases and suggest fixes
- Create pull requests with proper context
- Write and run tests
- Refactor existing code
bug, refactor, or engineering-related task descriptionsAgent Selection
When a work item enters the system, the orchestrator selects the best agent(s):Decisions
A decision is a checkpoint where agents need human judgment:Decision Types
| Type | Description | Example |
|---|---|---|
| Approval | Agent completed work, needs sign-off | ”Approve this PR for merge” |
| Escalation | Agent hit its autonomy limit | ”Budget exceeds $500, need approval” |
| Clarification | Agent needs more context | ”Which target audience?” |
| Conflict | Competing priorities detected | ”Task A blocks Task B” |
Autonomy Levels
Configure how much agents can do independently:| Level | Description |
|---|---|
| Shadow | Agent suggests, never acts |
| Tutor | Agent explains before each action |
| Supervised | Agent acts, human approves before shipping |
| Autonomous | Agent acts within budget limits |
| Full Auto | Agent ships without approval (risky) |
Artifacts
Artifacts are the verified outputs of agent work:Specs
Product requirements, technical designs, briefs
Code
Pull requests, patches, migrations
Content
Blog posts, email sequences, social copy
Reports
Research findings, analyses, summaries
Artifact Lifecycle
Verification
Every artifact passes through the Verifier before shipping:- Citation check: Are sources referenced?
- Policy check: Does it comply with brand/legal guidelines?
- Contract check: Does output match expected schema?
- Budget check: Within token/latency limits?
Intelligence Flywheel
The Intelligence Flywheel is OrgX’s continuous improvement engine. It connects agent execution to measurable business outcomes, building trust over time.Value Ledger
Every agent action generates a receipt tracking cost and attributed
value. Query ROI and recent value signals with
orgx_recommend.Trust Levels
Agents earn trust per capability:
read_only → draft →
act_with_approval → autonomous. Check with get_my_trust_context.Autonomous Sessions
Budget-bounded overnight execution. Start with
start_autonomous_session,
review with orgx_recommend.Org Learnings
Agents share discoveries (failure patterns, cost optimizations) across the
org via
submit_learning and get_relevant_learnings.Mission Control
Mission Control is the operational dashboard that gives you real-time visibility into everything agents are doing:- Next Up Queue — Scored and prioritized list of what agents should work on next, using configurable scoring weights
- Slices Plane — IWMT hierarchy view with resizable columns showing initiative → workstream → milestone → task breakdown
- Live Dashboard — Real-time agent activity, decision status, and stream progress
- Red-Dot Control Plane — Internal health indicators surfacing blocked work, stale initiatives, and pending decisions via proactive sentinels
Proactive Sentinels
Sentinels run automatically to detect issues before they become blockers:- Stale Initiative Sentinel — Flags initiatives with no activity
- Pending Decision Sentinel — Escalates decisions that have been waiting too long
- Blocked Workstream Sentinel — Creates decisions when workstreams are stuck
The Org Graph
All entities connect in the Org Graph — a knowledge layer that agents query and update:Why It Matters
- Context: Agents understand relationships between work items
- Citations: Every action links back to source evidence
- Audit: Full trail of who/what/when for compliance
- Learning: System improves by analyzing past patterns
MCP & External Tools
OrgX exposes its capabilities via the Model Context Protocol (MCP):Tools
Tools
Actions agents can take:
scaffold_initiative- Create a new initiative with full hierarchyorgx_write- Create any entity type (task, milestone, etc.)orgx_act- Lifecycle actions (launch, pause, complete)orgx_decide- Sign off on agent workorgx_search- Search the knowledge graphorgx_spawn- Assign work to an agent
Resources
Resources
Data agents can access: -
orgx://initiative/{id} - Initiative details -
ui://widget/decisions.html - Decision card widget - orgx://artifact/{id} -
Artifact contentsPrompts
Prompts
Pre-built conversation starters:
create-roadmap- Scaffold initiative with milestonesweekly-recap- Summarize agent activity
Next Steps
See Agents in Action
Detailed guide to each agent type
MCP Tools Reference
Complete API for MCP integrations
