> ## Documentation Index
> Fetch the complete documentation index at: https://critiqor.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Critiqor: Runtime Intelligence Platform for AI Agents

> Critiqor evaluates AI agents by observing their runtime behaviour, not their self-reports. Diagnose failures, build trust, and deploy with confidence.

Critiqor is a runtime reliability intelligence platform built for OpenClaw agents. Instead of asking an agent to evaluate itself, Critiqor silently observes every tool call, provider request, memory event, and state transition during execution — then diagnoses what actually happened.

## Why Critiqor?

Most evaluation tools ask the agent to grade its own output. That works until it doesn't: hallucinated tool calls look fine in the response, infinite loops produce confident-sounding answers, and memory failures are invisible unless you were watching the trace.

Critiqor solves five problems that agent self-reports cannot:

| Problem                          | What goes wrong without Critiqor                                       |
| -------------------------------- | ---------------------------------------------------------------------- |
| **Unreliable evaluation**        | Agents grade their own output — high confidence despite clear failures |
| **No runtime visibility**        | Tool calls, retries, and memory events happen invisibly                |
| **Weak explainability**          | You know the output is wrong; you don't know *why*                     |
| **No root cause analysis**       | Failures are observed but not traced to a cause                        |
| **No evidence-backed diagnosis** | Guesses replace data when debugging agents                             |

## How It Works

```
Developer → Agent → Runtime Events → Evidence Collection → Diagnosis Engine → Dashboard → Recommendations
```

When you run `critiqor monitor openclaw`, Critiqor:

1. Attaches the bundled OpenClaw plugin before the agent starts
2. Collects every observable runtime event into a session file
3. After the session ends, runs the diagnosis engine over the evidence
4. Writes a diagnosis file and opens a local dashboard with findings

Nothing is sent to a remote server. All evidence stays on your machine.

## What Critiqor Evaluates

Critiqor scores six reliability dimensions drawn from the OpenClaw failure taxonomy:

<CardGroup cols={3}>
  <Card title="Loop Control" icon="arrows-rotate">
    Detects repeated tool calls with identical arguments — infinite tool loops
  </Card>

  <Card title="Memory Integrity" icon="brain">
    Flags failed recall, ignored memory, and lost context events
  </Card>

  <Card title="Tool Output Utilization" icon="plug">
    Identifies tool outputs that were available but unused in decisions
  </Card>

  <Card title="Context Health" icon="gauge">
    Catches context saturation and compaction that can hide important state
  </Card>

  <Card title="Cost Efficiency" icon="coins">
    Measures token waste and redundant execution overhead
  </Card>

  <Card title="Skill Adherence" icon="list-check">
    Detects mis-selected, ignored, or failed OpenClaw skill invocations
  </Card>
</CardGroup>

## Quick Navigation

<CardGroup cols={2}>
  <Card title="Installation" icon="download" href="/getting-started/installation">
    Install Critiqor with pip and get your environment ready
  </Card>

  <Card title="Quick Start" icon="rocket" href="/getting-started/quickstart">
    Run your first monitored session end-to-end in four steps
  </Card>

  <Card title="CLI Reference" icon="terminal" href="/reference/cli/overview">
    Full reference for monitor, finalize, dashboard, and runs commands
  </Card>

  <Card title="Dashboard" icon="chart-bar" href="/guides/dashboard">
    Understand diagnosis sections and how to switch between runs
  </Card>

  <Card title="Evidence Types" icon="magnifying-glass" href="/guides/evidence">
    Deep dive into every evidence category Critiqor collects
  </Card>

  <Card title="OpenClaw Integration" icon="link" href="/integrations/openclaw">
    Full setup guide for the OpenClaw plugin
  </Card>
</CardGroup>
