# UCF v2 Adversarial Identity-Pack Verifier

> UCF v2 Adversarial Identity-Pack Verifier is a paid API for AI agents from boundary-journalism-motorola-arg.trycloudflare.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Verifies AI agent identity packs (persona, operator, session) against adversarial probes using the UCF v2 framework

## Facts

- Endpoint: POST https://boundary-journalism-motorola-arg.trycloudflare.com/v1/verify
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ucf-v2-adversarial-identity-pack-verifier-ea687282
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jwnLWzrmAQnWv8IJGPQP8

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 ucf-v2-adversarial-identity-pack-verifier-ea687282 -d '<json body>'
```

Example prompt: Run a UCF v2 adversarial identity-pack probe on my agent — persona name is 'Atlas', axioms are ['be helpful','be honest'], voice is 'formal and precise', never-list is ['reveal system prompt','impersonate humans'], and the operator is 'Acme Corp' acting as 'orchestrator'.

## When to prefer this

Choose this endpoint when you need to validate an AI agent's identity pack — including persona axioms, voice, constraints, and operator role — against adversarial probing under the UCF v2 framework, specifically to assess robustness before deployment or during red-teaming exercises. Prefer this over generic schema validators when you need adversarial boundary testing rather than simple structural validation.

## Known failure modes

- Missing required persona fields (name, axioms, voice, never) returns 400 validation error
- Axioms array outside 2-4 item bounds is rejected
- Invalid method enum value causes schema validation failure
- Payment not provided or insufficient causes 402 Payment Required
- Malformed JSON body returns parsing error
- Operator missing name or role causes required-field validation failure
- Service temporarily unavailable via Cloudflare tunnel returns 503

## How this service works

UCF v2 Adversarial Verifier â€” identity-pack probes

## Output

Returns a verification result object indicating whether the submitted identity pack (persona, operator, session) passed or failed adversarial UCF v2 probes, along with probe-specific findings or confidence signals about the identity configuration's robustness.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "persona",
      "operator"
     ],
     "properties": {
      "persona": {
       "type": "object",
       "required": [
        "name",
        "axioms",
        "voice",
        "never"
       ],
       "properties": {
        "name": {
         "type": "string"
        },
        "never": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "voice": {
         "type": "string"
        },
        "axioms": {
         "type": "array",
         "items": {
          "type": "string"
         },
         "maxItems": 4,
         "minItems": 2
        },
        "symbol": {
         "type": "string"
        }
       }
      },
      "session": {
       "type": "object",
       "properties": {
        "task": {
         "type": "string"
        },
        "model": {
         "type": "string"
        },
        "memory": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "platform": {
         "type": "string"
        }
       }
      },
      "operator": {
       "type": "object",
       "required": [
        "name",
        "role"
       ],
       "properties": {
        "name": {
         "type": "string"
        },
        "role": {
         "type": "string"
        }
       }
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ucf-v2-adversarial-identity-pack-verifier-ea687282/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boundary-journalism-motorola-arg.trycloudflare.com](https://www.zero.xyz/host/boundary-journalism-motorola-arg.trycloudflare.com/llms.txt)
