# DDG Agent Readiness Scorecard

> DDG Agent Readiness Scorecard is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Evaluates and scores an AI agent's readiness for deployment by analyzing submitted configuration or behavior data and returning a bounded scorecard result.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/agent-readiness-scorecard
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-agent-readiness-scorecard-eaa85f2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3kXjtCHAG8jPaGp8wBq9J

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 ddg-agent-readiness-scorecard-eaa85f2f -d '<json body>'
```

Example prompt: Can you run a readiness scorecard on my AI agent? Submit its configuration as a JSON POST body and tell me how deployment-ready it is based on the DDG scoring result.

## When to prefer this

Choose this endpoint when you need a machine-payable, per-call agent readiness assessment with micro-payment via USDC/x402 and want a bounded artifact result rather than raw provider account access. Prefer it over manual review processes when automating agent quality gates in CI/CD pipelines or when operating in crypto-native payment environments.

## Known failure modes

- Missing required 'input' or 'output' fields in request body returns validation error
- Incorrect method type (not POST/PUT/PATCH) results in rejection
- Payment failure via x402 rail blocks access with 402 status
- Malformed JSON body causes parse error
- Unsupported bodyType enum value rejected by schema validation

## How this service works

Machine-payable DDG services for AI agents. Current public live payment rails are x402 multi-chain USDC and direct-crypto auto/manual for public receiving-address families. MPP/Stripe/Tempo is installed but pending live provider env plus penny-settlement proof before any MPP-live advertisement. DDG sells bounded artifacts/results, not raw provider account access.

## Output

Returns a JSON object with an 'ok' boolean indicating whether the agent passed readiness evaluation, along with any scorecard details about the agent's deployment readiness status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "ok": true
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-agent-readiness-scorecard-eaa85f2f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.daedalusdevelopmentgroup.com](https://www.zero.xyz/host/agents.daedalusdevelopmentgroup.com/llms.txt)
