Shadow Mode
Shadow Mode implements a progressive autonomy model for AI agents. Instead of granting full autonomy on day one, agents earn independence by demonstrating alignment with human decisions over time. The model has three levels:
Every agent starts at Shadow. Graduation to higher levels requires meeting quantitative gates — not just vibes.
Creating Shadow Sessions
A shadow session tracks one specific capability being evaluated. You define the skill (what the agent can do) and the decision class (what type of decision it involves).
A session is scoped to one skill + decision class combination. An agent can have multiple active sessions — for example,
incident_response/escalation at Supervised while deployment/approval is still in Shadow.
Agreement Tracking
During a shadow session, every decision point follows the same flow:1
Agent recommends
The agent analyzes the situation and records what it would recommend. In Shadow mode, this recommendation is silent — the human never sees it. In Supervised mode, the recommendation is shown to the human.
2
Human decides
The human makes the actual decision independently (Shadow) or in response to the agent’s recommendation (Supervised).
3
System compares
The platform compares the agent’s recommendation against the human’s decision and records the outcome: agree or disagree.
Graduation Gates
Graduation from one level to the next requires meeting three quantitative requirements simultaneously:
A critical miss is a disagreement where the agent’s recommendation, if followed, would have caused significant harm — as determined by the human reviewer when recording the decision.
Checking Eligibility
Promoting
Graduation is an explicit action — it never happens automatically. When all gates are met, the owner promotes the session:When to Use Shadow Mode
Shadow Mode is most valuable in four situations:New Skills
When an agent gains a new capability (e.g., you add a deployment tool), start that skill in Shadow. Let the agent build a track record before it acts independently.High-Risk Decision Classes
For decisions with significant consequences — production deployments, access grants, financial transactions — Shadow Mode provides a safety net even for well-established agents.Post-Incident Recovery
After an agent makes a mistake, demote the relevant skill back to Shadow. Rebuild confidence through measured agreement before restoring autonomy.New Agent Versions
When you update the underlying model or significantly change the agent’s prompts, re-enter Shadow Mode for critical skills. Model updates can change behavior in unexpected ways.Integration
The agent plugin reports recommendations and receives human decisions through the shadow session API.Plugin-Side Flow
- Agent encounters a decision point during normal operation
- Agent computes its recommendation and submits it to the session
- If in Shadow mode: recommendation is recorded silently, human decides independently
- If in Supervised mode: recommendation is shown to the human in the AgentVault dashboard
- Human decision is recorded via the API
- System compares and updates the agreement rate