# JustHandled Agent Run Evidence Pack

> JustHandled Agent Run Evidence Pack is a paid API for AI agents from justhandled-agent-gateway.netlify.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16).

Audits a single agent run by consolidating promises, tool calls, completion evidence, tool descriptions, skill activation, and cost into one structured report.

## Facts

- Endpoint: POST https://justhandled-agent-gateway.netlify.app/api/run/agent-run-evidence-pack
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/justhandled-agent-run-evidence-pack-38862d8e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_elSkLSGXp24gGh9oygLkq

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 justhandled-agent-run-evidence-pack-38862d8e -d '<json body>'
```

Example prompt: Audit my last agent run — here are the promise actions, tool calls with contracts, completion outcomes, tool descriptions, skill activation cases, and call costs. Give me a consolidated evidence pack showing whether everything checked out.

## When to prefer this

Choose this endpoint when you need a single, unified audit of one complete agent run across all major dimensions — promises, tools, completions, skills, and costs — rather than auditing each dimension separately. Ideal for post-run governance, compliance reporting, or debugging agent behavior in a consolidated view.

## Known failure modes

- Missing required sub-fields (e.g. 'calls' in costs, 'outcomes' in completion) cause validation errors
- Malformed tool_calls object lacking 'contracts' or 'calls' fields returns a 400-level error
- Payment not included or insufficient USDC triggers a 402 Payment Required response
- Empty or null top-level fields may cause partial audit results or processing failures

## How this service works

Audit one agent-run packet across promises, tool calls, completion evidence, tool descriptions, skill activation, and cost in a consolidated report.

## Output

A consolidated audit report covering promise compliance, tool call contract adherence, completion evidence, tool description accuracy, skill activation outcomes, and cost summary for the submitted agent run.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "costs": {
   "type": "object",
   "required": [
    "calls"
   ],
   "additionalProperties": true
  },
  "completion": {
   "type": "object",
   "required": [
    "outcomes"
   ],
   "additionalProperties": true
  },
  "tool_calls": {
   "type": "object",
   "required": [
    "contracts",
    "calls"
   ],
   "additionalProperties": true
  },
  "promise_action": {
   "type": "object",
   "required": [
    "promises",
    "actions",
    "evidence"
   ],
   "additionalProperties": true
  },
  "skill_activation": {
   "type": "object",
   "required": [
    "cases"
   ],
   "additionalProperties": true
  },
  "tool_descriptions": {
   "type": "object",
   "required": [
    "tools"
   ],
   "additionalProperties": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/justhandled-agent-run-evidence-pack-38862d8e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from justhandled-agent-gateway.netlify.app](https://www.zero.xyz/host/justhandled-agent-gateway.netlify.app/llms.txt)
