# think.agentutil.net Post-Action Verification Review

> think.agentutil.net Post-Action Verification Review is a paid API for AI agents from think.agentutil.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Generates a post-action verification checklist confirming rollback readiness, stakeholder notification, monitoring, and compliance after a high-risk action has been completed

## Facts

- Endpoint: POST https://think.agentutil.net/v1/review
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/think-agentutil-net-eaafd87e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zm8qMH9IICRnF8pRH35VD

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability think-agentutil-net-eaafd87e -d '<json body>'
```

Example prompt: I just finished updating the load balancer traffic routing rules to redirect 10% of traffic to a new backend service in the infrastructure-management domain — can you run a post-action verification review to confirm rollback readiness, monitoring, and compliance steps?

## When to prefer this

Use this endpoint after an AI agent or automated system has completed a high-risk action and needs structured confirmation that all post-action responsibilities (rollback readiness, monitoring, stakeholder notification, compliance) have been considered. Prefer this over manual checklists or pre-flight-only tools when you need specific, severity-ranked verification items tailored to what was actually done, not just what was planned.

## Known failure modes

- Missing required fields (domain, description, action_completed) returns a validation error
- Vague or empty action description may produce generic or low-quality checklist items
- Payment failure (x402) returns a 402 Payment Required response before processing
- Network timeout if the service is temporarily unavailable

## How this service works

Intent security — post-action verification checklist to confirm rollback readiness, stakeholder notification, monitoring, and compliance after a high-risk action

## Output

Returns a structured post-action review with a risk level classification, action type, a summary, and a detailed verification checklist. Each checklist item includes a specific check to perform, the reason why it matters, a category (e.g. scope, rollback, monitoring), and a severity rating. Also includes related service suggestions.

## Example request

```json
{
 "domain": "infrastructure-management",
 "description": "Completed a database migration from PostgreSQL 12 to PostgreSQL 14 on the staging environment. The migration included schema validation, data integrity checks, and performance benchmarking. All tests passed successfully.",
 "action_completed": "database version upgrade from PostgreSQL 12 to PostgreSQL 14"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Business domain"
  },
  "description": {
   "type": "string",
   "description": "Natural language description of what was done"
  },
  "action_completed": {
   "type": "string",
   "description": "What action was just completed"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "service",
  "request_id",
  "related_services"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "summary",
    "risk_level",
    "action_type",
    "verification_checklist"
   ],
   "properties": {
    "summary": {
     "type": "string"
    },
    "risk_level": {
     "type": "string"
    },
    "action_type": {
     "type": "string"
    },
    "verification_checklist": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "why",
       "check",
       "category",
       "severity"
      ],
      "properties": {
       "why": {
        "type": "string"
       },
       "check": {
        "type": "string"
       },
       "category": {
        "type": "string"
       },
       "severity": {
        "type": "string"
       }
      }
     }
    }
   }
  },
  "service": {
   "type": "string"
  },
  "request_id": {
   "type": "string"
  },
  "related_services": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "name",
     "description"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "description": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/think-agentutil-net-eaafd87e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from think.agentutil.net](https://www.zero.xyz/host/think.agentutil.net/llms.txt)
