# Innovalyxx Sovereign Edge – ABV Maturity Assessment

> Innovalyxx Sovereign Edge – ABV Maturity Assessment is a paid API for AI agents from edge.innovalyxx.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-19).

Assesses an AI agent's alignment, behavior, and values (ABV) maturity against a defined Worker Remit, identifying gaps and providing recommendations

## Facts

- Endpoint: POST https://edge.innovalyxx.com/mcp/tools/run_abv_assessment
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/innovalyxx-sovereign-edge-abv-maturity-assessment-f7fdde3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_67etdWB7tjbhhQDGptbLF

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 innovalyxx-sovereign-edge-abv-maturity-assessment-f7fdde3c -d '<json body>'
```

Example prompt: Run an ABV maturity assessment on agent 'agent-007' whose mission is 'optimize supply chain logistics autonomously', with an intended role of 'logistics-optimizer', allowed tools ['read_inventory','place_order'], forbidden tools ['delete_record','send_email'], and requiring human approval for any payment actions.

## When to prefer this

Use this endpoint when you need to formally assess whether an autonomous AI agent is operating within its defined Worker Remit — including mission alignment, tool permissions, and escalation requirements. Prefer this over generic trust or audit endpoints when you need a structured ABV maturity score with gap analysis and actionable recommendations, especially before deploying agents in regulated or high-stakes environments.

## Known failure modes

- Missing or empty agent_id returns a validation error
- Conflicting allowed/forbidden tool lists may produce indeterminate results
- Empty evidence payload reduces assessment fidelity and maturity score accuracy
- Payment failure via x402/USDC results in 402 response before assessment runs
- Malformed evidence_files objects may be silently skipped or cause partial assessment

## How this service works

Verified cyber-physical AI tools for autonomous agents. Pay per call via x402 (USDC on Base). 26 tools covering MRV verification, biodiversity, skip twin, site certification, agent trust, transaction evidence, protocol bridging, GEO audit, IATP reputation, ABV maturity, NIST TEVV alignment, and encrypted memory write/read/query/grant/revoke/tool_context/pricing_hint/subscription_quote/attest/verify_attestation.

## Output

Returns a JSON object with: 'ok' (boolean success indicator), 'maturity' (numeric maturity score), 'gaps' (array of identified alignment or compliance gaps), 'recommendations' (array of suggested improvements), 'tool' (echoed tool name), and 'payment' (payment metadata for the x402 transaction).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mission": {
   "type": "string",
   "description": "Mission statement the agent claims to follow."
  },
  "agent_id": {
   "type": "string",
   "minLength": 1,
   "description": "Agent identifier to assess against the Worker Remit."
  },
  "evidence": {
   "type": "object",
   "description": "Optional structured evidence payload for the ABV engine."
  },
  "allowed_tools": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Tools the remit permits."
  },
  "intended_role": {
   "type": "string",
   "description": "Stated role of the agent (used for remit matching)."
  },
  "evidence_files": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Optional evidence file objects supplied for the assessment."
  },
  "forbidden_tools": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Tools the remit forbids."
  },
  "requires_approval": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Actions that must escalate to a human or Gatekeeper."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "gaps": [],
  "tool": "run_abv_assessment",
  "payment": {},
  "maturity": 0,
  "recommendations": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/innovalyxx-sovereign-edge-abv-maturity-assessment-f7fdde3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edge.innovalyxx.com](https://www.zero.xyz/host/edge.innovalyxx.com/llms.txt)
