Query Before Deciding
Semantic search across past decisions. Find what worked, what failed, and why. Directional search by structure ("where did we use this pattern?") or function ("what solved this problem?").
Query past decisions, enforce guardrails, and track calibration - all in two API calls. v0.14.0: Multi-Agent Isolation, Live Deliberation, and FORGE Plugin.

Every decision flows through this loop, creating a compounding record of organizational judgment.
| Phase | What happens |
|---|---|
| Fetch | Load context and past decisions |
| Orient | Check guardrails and constraints |
| Resolve | Decide and record with reasoning |
| Go | Execute |
| Extract | Evaluate outcomes and distill patterns |
Available as a Claude Code plugin with hooks, commands, and skills that automate the entire loop.
Two calls cover the full agent workflow:
Session start → get_session_context (cognitive context: profile, calibration, patterns)
Decision point → pre_action (query + guardrails + record in one call)The server auto-captures deliberation traces, bridge-definitions, and related decision links - zero client changes needed.
{
"allowed": true,
"similar_decisions": [...],
"guardrail_results": [...],
"calibration_context": {"brier_score": 0.024, "accuracy": 0.963},
"decision_id": "abc123"
}