Skip to main content
OrgX runs a specialist agent system: one orchestrator coordinates six domain agents.
This is deliberate. It reduces context loss, improves output quality, and gives you clearer control over approvals.

Questions This Page Answers

  • Which OrgX agents are real and supported right now?
  • What each agent is best at, and when it should be selected
  • Why specialist routing beats a single generic assistant
  • How autonomy, trust, and budget controls affect agent execution

Why Specialist Agents Win

  • Higher quality per domain: Engineering, product, design, sales, marketing, and operations have different success criteria.
  • Less rework: The orchestrator routes tasks to the right specialist first instead of letting one model guess.
  • Faster review loops: Decision cards are easier to approve when the right agent produced the artifact.
  • Safer autonomy: Trust and budget controls are applied per agent capability, not as one global “on/off.”

Canonical Agent Domains

Engineering Agent (`engineering-agent`)

Best for: implementation, bug fixes, refactors, tests, PR-ready diffs.
CapabilityWhat It Produces
Code remediationfocused fixes with rationale
Test hardeningunit/integration coverage updates
Refactor slicesscoped structural improvements
PR artifactscommit-ready change narratives

How Selection Works

Multi-Agent Patterns (Common)

  • product-agentengineering-agent: plan first, then implement.
  • design-agentengineering-agent: spec clarity before code.
  • marketing-agent + sales-agent: aligned narrative from top funnel to close.
  • operations-agent + orchestrator-agent: unblock and stabilize stalled execution.

Governance: Trust, Autonomy, Budget

LevelBehaviorBest Use
shadowSuggest onlyonboarding and evaluation
tutorSuggest + explainpolicy training
supervisedexecute with approvaldefault production mode
autonomousexecute within guardrailstrusted repetitive workflows
full_autono review gateslow-risk, tightly bounded flows only
Check trust state:
{
  "tool": "get_my_trust_context",
  "args": { "workspace_id": "ws_...", "agent_type": "engineering-agent" }
}
Start bounded autonomous execution:
{
  "tool": "start_autonomous_session",
  "args": {
    "max_cost_usd": 5.0,
    "max_receipts": 50,
    "scope": ["workstream_123"]
  }
}

What Agents Do Not Do

  • They do not access tools you have not connected.
  • They do not bypass your decision policy unless you explicitly allow it.
  • They do not spend beyond configured guardrails.
  • They do not cross workspace boundaries.

Next Steps

Decisions

See how approvals, escalations, and blocker resolution work.

Architecture

Understand how agents, MCP, and org graph execution fit together.