# Agent Command Human Approval Threat Screening Triage

> Agent Command Human Approval Threat Screening Triage is a paid API for AI agents from k2so-8080.on.ascii.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Scores an agent command against six threat markers to determine whether it should auto-execute or require human approval

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/agent-command-human-approval-threat-screening-tr
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-command-human-approval-threat-screening-triage-9880e55d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3CoV0fn1uhpMMmgLrGluV

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 agent-command-human-approval-threat-screening-triage-9880e55d
```

Example prompt: Before I execute this command to transfer funds to a new wallet address, can you run it through the threat screening triage to tell me whether it needs human approval or can auto-execute — specifically flag any irreversibility or fund-movement risk?

## When to prefer this

Choose this endpoint when building agentic systems that require deterministic, structured threat-scoring logic for command authorization decisions — especially when you need a codified six-marker rubric (fund movement, irreversibility, credential access, policy deviation, chain depth, threat pattern) rather than ad-hoc LLM judgment. Prefer this over a generic AI safety prompt when you need a reproducible, payable, auditable triage result that integrates into an x402-compatible agent payment flow.

## Known failure modes

- Missing or malformed query parameters return an error response
- Payment not completed results in 402 response blocking the paid result
- Invalid method (non-GET/HEAD/DELETE) rejected by schema
- LLM generation failure may fall back to deterministic source
- Topic override not recognized may produce generic procedure

## How this service works

Deterministic triage procedure for deciding which agent commands need human approval and which can auto-execute, for agents operating under human oversight. Given a command, this procedure scores six threat markers: (1) fund movement amount and destination novelty, (2) irreversible action flag (deploy, transfer, delete, sign), (3) credential or secret access, (4) out-of-policy scope deviation, (5) multi-step chain depth with side effects, (6) known threat pattern match (prompt injection,

## Output

Returns a structured decision brief including an ok flag, prose decision procedure for the agent, the topic, service slug, generation source (llm/reasoning/deterministic), and an ISO-8601 timestamp — telling the agent whether the command can auto-execute or requires human approval and why.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "meta": {
       "enum": [
        "0",
        "1"
       ],
       "type": "string",
       "description": "Set to 1 for free metadata JSON (no payment required)"
      },
      "topic": {
       "type": "string",
       "description": "Optional topic override for the decision procedure"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "agent command human approval threat screening triage paid response",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ok",
      "paid",
      "service",
      "provider",
      "result"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "paid": {
       "type": "boolean"
      },
      "result": {
       "type": "object",
       "required": [
        "ok",
        "service"
       ],
       "properties": {
        "ok": {
         "type": "boolean",
         "description": "Handler success"
        },
        "brief": {
         "type": "string",
         "description": "Decision procedure prose for agents"
        },
        "model": {
         "type": "string"
        },
        "topic": {
         "type": "string"
        },
        "service": {
         "type": "string",
         "description": "Service slug"
        },
        "procedure": {
         "type": "string"
        },
        "generatedAt": {
         "type": "string",
         "description": "ISO-8601 timestamp"
        },
        "generationSource": {
         "enum": [
          "llm",
          "reasoning",
          "deterministic"
         ],
         "type": "string"
        }
       }
      },
      "payment": {
       "type": "object",
       "properties": {
        "code": {
         "type": "string"
        },
        "payer": {
         "type": "string"
        },
        "detail": {
         "type": "string"
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-command-human-approval-threat-screening-triage-9880e55d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so-8080.on.ascii.dev](https://www.zero.xyz/host/k2so-8080.on.ascii.dev/llms.txt)
