# Pre-Human Agent Command Threat Screening Procedure

> Pre-Human Agent Command Threat Screening Procedure 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 and classifies a proposed agent command for risk before it reaches a human approver, routing low-risk commands to auto-allow and high-risk ones to a human review queue with evidence summaries.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/pre-human-agent-command-threat-screening-automat
- 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/pre-human-agent-command-threat-screening-procedure-3ccffd6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KLyM-9G6fZ1UvcXgv7pqO

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 pre-human-agent-command-threat-screening-procedure-3ccffd6a
```

Example prompt: Before I let this agent command go through, screen it for risk — classify whether it's read-only, fund-moving, data-exfiltration, or irreversible, score its blast radius and novelty, and tell me if it should be auto-approved or escalated to a human with an evidence summary.

## When to prefer this

Choose this endpoint when you need automated pre-screening of agent commands before they reach a human approver — especially in high-volume agentic workflows where human fatigue leads to missed threats. Prefer this over generic risk APIs when you need command-class-specific scoring (read-only vs fund-moving vs irreversible), blast radius estimation, and queue management logic tuned for agentic oversight contexts.

## Known failure modes

- Missing or malformed `input` object returns a schema validation error
- Unsupported HTTP method (e.g. POST) rejected by enum constraint
- Unpaid request without x402 payment returns 402 Payment Required
- LLM generation failure may return a degraded or empty `brief` field
- Topic override not recognized may fall back to default classification logic

## How this service works

Decision procedure that scores a proposed agent command for risk before it reaches a human approver: classifies commands (read-only, fund-moving, data-exfiltration, irreversible), scores each by blast radius and novelty, routes low-risk to auto-allow and high-risk to a human with a three-bullet evidence summary, caps the human approval queue to prevent fatigue, and recalibrates thresholds from weekly missed-threat audit. Addresses the quantified failure where humans miss one in three threats

## Output

Returns a decision procedure brief (`brief`) with a risk classification (read-only, fund-moving, data-exfiltration, or irreversible), blast radius and novelty scores, a routing decision (auto-allow or escalate to human), and a three-bullet evidence summary for human reviewers. Also includes service metadata, generation source, and an ISO-8601 timestamp.

## 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": "Pre-human agent command threat screening procedure 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/pre-human-agent-command-threat-screening-procedure-3ccffd6a/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)
