> ## 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 Tasks

> Approve or reject capability calls that use the Review action.

When a Gateway rule uses **Review**, GroundForge creates an Operator Task instead of running the capability immediately.

The task shows the available request context, including the Agent, Channel, Gateway, capability, input, Workspace, and linked Trace.

## Approve

Approve when the requested capability and input are acceptable. GroundForge records the decision and continues the reviewed request.

## Reject

Reject when the action should not run. The capability is not called, and the request ends with a rejection result.

## CLI example

```bash theme={null}
gforge operator tasks list --status pending
gforge operator tasks describe <task-id> -o yaml

gforge operator tasks approve <task-id> \
  --comment "Verified the requested ticket and action"
```

Use `reject` instead of `approve` when the action should not run:

```bash theme={null}
gforge operator tasks reject <task-id> \
  --comment "The requested action is outside the approved scope"
```

> **Screenshot placeholder**\
> Add `/images/governance/operator-task.png` showing the Agent, Channel, request preview, Gateway, capability input, comment field, and decision controls.

See [Request Review](/guides/request-review) and [CLI governance](/cli/governance).


## Related topics

- [Governance](/cli/governance.md)
- [Get Operator Task](/api-reference/endpoints/get-operator-task.md)
- [Decide Operator Task](/api-reference/endpoints/decide-operator-task.md)
- [List Operator Tasks](/api-reference/endpoints/list-operator-tasks.md)
