# Microgram: loop-governor

`station__algovigilance__microgram-loop-governor` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Loop Governor: transforms scorecard-compound governor signals into loop control. Maps HALT/CONSOLIDATE/CONTINUE to loop-compatible halt decisions. Designed to be the feedback node in a looped chain — it reads the compound verdict and decides whether to keep iterating.

## Agent metadata

- `idempotent`: true
- `read_only`: true
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `governor_signal` *string* — Governor signal from scorecard-compound: starts with HALT, CONSOLIDATE, or CONTINUE
- `compound_verdict` *string* — Compound verdict from scorecard-compound
- `persistence_ratio` *number* — Fraction of sessions reaching L4+
- `iteration` *number* — Current loop iteration (injected by looper)

## Example call

```json
POST /api/mcp
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-loop-governor",
    "arguments": {}
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-loop-governor](/tools/algovigilance__microgram-loop-governor) — HTML page
- [/tools/algovigilance__microgram-loop-governor/json](/tools/algovigilance__microgram-loop-governor/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
