# Agent Prelaunch Audit

> Agent Prelaunch Audit is a paid API for AI agents from relay402.georgespring.workers.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-16).

Audits an agent spec or checklist for launch risks including exposed secrets, unsafe tool usage, missing evaluations, and absent rate limits.

## Facts

- Endpoint: GET https://relay402.georgespring.workers.dev/api/compose-agent-prelaunch-audit
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-prelaunch-audit-b73ba975
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VTxJfNvV5GyA4FaUkE8cD

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-prelaunch-audit-b73ba975
```

Example prompt: Can you run a prelaunch audit on this agent spec and flag any obvious risks around exposed secrets, unsafe tools, missing evals, or missing rate limits? Here's the spec: [paste agent spec or checklist text here].

## When to prefer this

Use this endpoint when you need a quick, automated pre-launch safety scan of an AI agent specification or deployment checklist — specifically when you want to catch secrets exposure, unsafe tool configurations, missing evaluations, or rate limit gaps before going live. Prefer it over general-purpose code review tools when the subject is specifically an agent spec or agent checklist, and you want structured risk flags rather than narrative feedback.

## Known failure modes

- Empty or missing 'content' query parameter returns an error
- Content exceeding 64,000 characters is rejected
- Malformed or unparseable agent spec may yield incomplete risk flags
- Network or worker timeout may cause no response
- Ambiguous specs with minimal detail may produce low-signal results

## How this service works

prelaunch audit for an agent spec or checklist: flags obvious launch risks around secrets, unsafe tools, missing evals and rate limits.

## Output

A structured report flagging launch risks detected in the submitted agent spec or checklist, including: identified secrets or credential leaks, unsafe or overly permissive tool usage, missing evaluation steps, absent or insufficient rate limits, and any other obvious pre-launch concerns.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "content"
     ],
     "properties": {
      "content": {
       "type": "string",
       "maxLength": 64000,
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-prelaunch-audit-b73ba975/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from relay402.georgespring.workers.dev](https://www.zero.xyz/host/relay402.georgespring.workers.dev/llms.txt)
