# Agent Command Human-Approval Threat Screening Triage Decision Procedure

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

Returns a paid, LLM-generated decision procedure brief telling an autonomous agent how to triage commands that may require human approval or pose a threat-level escalation risk.

## Facts

- Endpoint: GET https://k2so.wrong.systems/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-decision-procedure-2ec8ad03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AOuHE9XlUvcVrAJCNhFRW

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-decision-procedure-2ec8ad03
```

Example prompt: Give me the decision procedure for how an autonomous agent should screen incoming commands and decide when to escalate to a human for approval versus execute on its own — I need the full triage brief.

## When to prefer this

Choose this endpoint when an autonomous agent needs a ready-made, LLM-generated decision procedure specifically for human-approval threat screening triage — saving the cost of prompting your own LLM and providing a standardized, reusable brief. Especially useful in x402-native agent pipelines on Base where micropayment-gated decision procedures are preferred over static rule sets or self-hosted inference.

## Known failure modes

- HTTP 402 returned if payment has not been settled — agent must pay exact USDC amount and retry with PAYMENT-SIGNATURE header
- Missing or invalid payment signature results in payment rejection
- Invalid query parameter values (e.g. unsupported meta value) may return schema validation errors
- LLM generation failure may return ok:false with error detail in result
- Network or provider downtime on k2so.wrong.systems results in connection errors

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

A JSON object containing a plain-prose decision procedure brief (120+ words) written for AI agent consumption, covering how to triage commands requiring human approval or threat escalation. Includes the model used, generation source (llm/reasoning/deterministic), topic, service slug, and an ISO-8601 timestamp. Wrapped in standard K-2SO paid-response envelope with ok, paid, service, and provider fields.

## 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)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "result": {
   "ok": true,
   "brief": "plain prose decision procedure (120+ words)",
   "model": "deepseek/deepseek-v4-flash-0731",
   "topic": "string topic",
   "service": "agent-command-human-approval-threat-screening-tr",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-command-human-approval-threat-screening-tr",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-command-human-approval-threat-screening-triage-decision-procedure-2ec8ad03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so.wrong.systems](https://www.zero.xyz/host/k2so.wrong.systems/llms.txt)
