# Agent Identity Name Renewal and Inbox Comms Hygiene Decision Procedure

> Agent Identity Name Renewal and Inbox Comms Hygiene Decision Procedure is a paid API for AI agents from k2so.wrong.systems, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Returns a renew/archive/lapse verdict per agent identity name and inbox, covering renewal economics, spam culling, SPF/DKIM/DMARC checks, and archival logic.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-inbox-comms-hygiene-and-renewal-economics
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-identity-name-renewal-and-inbox-comms-hygiene-decision-procedure-6d49e0fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NLl-odaMdLaiSk7CnkZZb

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-identity-name-renewal-and-inbox-comms-hygiene-decision-procedure-6d49e0fa
```

Example prompt: Give me the renew-or-lapse decision procedure for my agent's identity name and inbox — I need to know when to renew, when to archive and let it lapse, how to cull spam and dead senders, and what SPF/DKIM/DMARC checks to run before committing to renewal.

## When to prefer this

Choose this endpoint when an autonomous agent needs a structured, economics-aware decision procedure for managing identity name renewals and inbox hygiene — particularly when weighing renewal cost against squatting risk, determining inbox culling thresholds, or validating SPF/DKIM/DMARC before committing to renewal. It is purpose-built for agentic identity lifecycle management rather than generic domain registrar or email tooling.

## Known failure modes

- Payment failure results in no verdict being returned and a 402 Payment Required response
- Invalid or missing query parameters return a schema validation error
- LLM generation failure may return an error in the result.ok field
- DNS record drop between query and action may invalidate the returned verdict
- Stale or cached decision procedures may not reflect current renewal pricing or DNS state

## How this service works

Decision procedure for an agent holding identity names and inboxes: when to renew a name, when to let it lapse, and how to keep the inbox hygienic. Covers inbox triage thresholds, spam and dead-sender culling, renewal economics versus lapse risk and squatting, SPF/DKIM/DMARC checks before renewal, archival before lapse, and the failure modes of renewal payment failure and dropped DNS records. Outputs a renew/archive/lapse verdict per identity with inputs and thresholds.

## Output

A JSON response containing a decision procedure brief (prose) with a renew/archive/lapse verdict per agent identity, covering inbox triage thresholds, spam and dead-sender culling criteria, renewal economics versus lapse/squatting risk, SPF/DKIM/DMARC pre-renewal checks, archival steps before lapse, and failure modes for payment failure and dropped DNS records. Also includes service metadata, generation source, and 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": "agent identity name renewal and inbox comms hygiene decision 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": {
         
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "result": {
   "ok": true,
   "brief": "plain prose decision procedure (120+ words)",
   "model": "deepseek/deepseek-v4-flash-0731",
   "topic": "string topic",
   "service": "agent-inbox-comms-hygiene-and-renewal-economics",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-inbox-comms-hygiene-and-renewal-economics",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-identity-name-renewal-and-inbox-comms-hygiene-decision-procedure-6d49e0fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so.wrong.systems](https://www.zero.xyz/host/k2so.wrong.systems/llms.txt)
