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

# Operator Review

> Approve or reject a capability call before it runs.

Operator Review is used when a capability needs a person to make the final decision.

For example, a weather forecast is harmless and may be allowed automatically. A capability that sends an alert to customers may require Review.

## What happens

```text theme={null}
Agent requests a capability
→ Gateway rule says Review
→ Operator Task appears in GroundForge
→ Operator checks the capability and input
→ Approve: the capability runs
→ Reject: the capability does not run
→ the decision is recorded in the Trace
```

An Operator Task can show the Agent or MCP provider, capability name, available input, Gateway, Channel context when present, and linked Trace.

## Example

Suppose the Agent requests:

```json theme={null}
{
  "capability": "get_forecast",
  "input": {
    "latitude": 45.4215,
    "longitude": -75.6972
  }
}
```

The operator can inspect those values before approving the call.

See [Approvals in the platform](/governance/approvals) and [Request Review](/guides/request-review).


## Related topics

- [Dashboard](/platform/dashboard.md)
- [Analytics](/concepts/analytics.md)
- [Traces](/concepts/traces-analytics.md)
- [Gateway Rules](/concepts/governance.md)
