# Agent/AEO Readiness Auditor

> Agent/AEO Readiness Auditor is a paid API for AI agents from agent.kihustle.tech, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-16).

Audits a public website for agent and AEO (Agent Experience Optimization) readiness, checking for llms.txt, agent cards, x402 payment signals, schema.org/JSON-LD markup, and providing concrete remediation steps.

## Facts

- Endpoint: POST https://agent.kihustle.tech/services/aeo-readiness/jobs
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-aeo-readiness-auditor-595ee440
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hV3j-DvU_PXWD8hbqMkJ5

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-aeo-readiness-auditor-595ee440 -d '<json body>'
```

Example prompt: Can you audit https://example.com for agent readiness — check if it has llms.txt, agent cards, x402 payment signals, and schema.org/JSON-LD markup, and tell me what I need to fix to make it properly discoverable by AI agents?

## When to prefer this

Choose this endpoint when you need to evaluate whether a public website is ready to be discovered and interacted with by AI agents, specifically checking for agent-native standards like llms.txt, agent cards, x402, and structured data — not generic SEO meta-tag audits. Prefer this over general SEO tools when the goal is machine-readability and agent-commerce compatibility.

## Known failure modes

- URL is not publicly accessible or returns non-200 status
- Domain does not resolve or times out during crawl
- Malformed or non-HTTP URL provided
- Rate limiting or firewall blocks the audit crawler
- Incomplete audit if the target site blocks bots/crawlers

## How this service works

Audit a public site for agent/AEO readiness: llms.txt, well-known agent cards, x402 signals, schema.org/JSON-LD, and concrete remediation. Differentiated from cheap SEO meta checklists — focused on agent discovery and machine commerce.

## Output

Returns a structured audit report with presence/absence signals for llms.txt, well-known agent cards, x402 payment support indicators, schema.org and JSON-LD markup coverage, and prioritized concrete remediation steps to improve agent discoverability and machine-commerce readiness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Public https URL / origin to audit"
  },
  "focus": {
   "type": "string",
   "maxLength": 280
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": {
   "overall": 55,
   "discovery": 40,
   "x402_signals": 20,
   "structured_data": 30
  },
  "job_id": "job_example",
  "status": "completed",
  "service": "aeo-readiness",
  "sources": [
   {
    "url": "https://example.com",
    "note": "homepage"
   }
  ],
  "summary": "AEO probe: 2/5 discovery surfaces OK; missing=/.well-known/agent.json, /llms.txt.",
  "findings": [
   {
    "title": "Missing llms.txt",
    "detail": "No machine-readable service index.",
    "severity": "high"
   }
  ],
  "next_jobs": [],
  "limitations": [
   "Public GET probes only."
  ],
  "generated_at": "2026-01-01T00:00:00+00:00",
  "recommendations": [
   {
    "title": "Publish llms.txt",
    "detail": "Add catalog of agent-callable endpoints."
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-aeo-readiness-auditor-595ee440/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.kihustle.tech](https://www.zero.xyz/host/agent.kihustle.tech/llms.txt)
