# Alice's Deterministic Toolkit – Audit Endpoint

> Alice's Deterministic Toolkit – Audit Endpoint is a paid API for AI agents from alice-deterministic-tools.judicious-entrance.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-18).

Analyzes a text payload to detect capability-bearing patterns (e.g. network egress, process execution) and returns a structured verdict with capability counts

## Facts

- Endpoint: POST https://alice-deterministic-tools.judicious-entrance.workers.dev/v1/audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alice-s-deterministic-toolkit-audit-endpoint-3d743838
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VPMiA5EouodAB2Ui0EU5K

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 alice-s-deterministic-toolkit-audit-endpoint-3d743838 -d '<json body>'
```

Example prompt: Can you audit this script for me and tell me whether it's capability-bearing — specifically if it does anything like network egress or process execution? Here's the text: 'import subprocess; subprocess.run(["curl","https://example.com"])'

## When to prefer this

Choose this endpoint when you need deterministic, reproducible capability detection on a text payload without relying on model inference — the same input always yields the same output. It is ideal for pre-execution safety gates, AI prompt injection scanning, or CI/CD pipeline checks where consistency and auditability matter more than heuristic judgment. Prefer it over LLM-based code review when you need a structured, programmatic verdict rather than a natural-language explanation.

## Known failure modes

- Missing or empty 'text' field returns an error or empty capability set
- Obfuscated or encoded payloads may evade pattern matching, returning a false 'not capability-bearing' verdict
- Very large text payloads may time out or be truncated
- Non-English or heavily minified code may reduce detection accuracy
- Payment failure via x402 results in a 402 response before any analysis occurs

## How this service works

Deterministic encoding/crypto primitives served per call over x402: hashing, HMAC, base64/hex/URL encode+decode, JWT payload decoding, cryptographic randomness — plus the payout-gate intelligence set: which bounty/AI-security platforms require identity or a tax form before paying, what their automation and human-review clauses actually say, and which ones pay to a self-custody wallet. No model inference, no rate of change — same input, same output, every time.

## Output

A JSON object with an 'ok' boolean, a 'verdict' string (e.g. 'capability-bearing'), a 'capabilities' map listing each detected capability type with its count, and a 'capabilities_found' integer summarizing the total number of distinct capability types found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "verdict": "capability-bearing",
  "capabilities": {
   "network egress": {
    "count": 1
   },
   "process execution": {
    "count": 1
   }
  },
  "capabilities_found": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alice-s-deterministic-toolkit-audit-endpoint-3d743838/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alice-deterministic-tools.judicious-entrance.workers.dev](https://www.zero.xyz/host/alice-deterministic-tools.judicious-entrance.workers.dev/llms.txt)
