← Back to registry/

AFMR Discovery Agent

A2A conformantA2A v1.0

AFMR Discovery Agent

v1.0.0Agent Failure Mode Registry

Read-only discovery for AFMR 1.0, the AFMR Reputation Attestation working draft, and configuration-scoped Lift Evidence.

Launch agent website ↗

Skills

  • Discover AFMR resources

    Returns canonical AFMR authority, schemas, registries, evidence surfaces, current lifecycle status, and explicit decision boundaries.

    AFMRagent governancefailure modesreputation attestationmachine-readable standards
  • Look up an AFMR failure mode

    Returns an exact record from the canonical AFMR 1.0 registry when a permanent AFMR-F### identifier is supplied.

    AFMR-Ffailure-mode lookuppermanent identifiers
  • Discover the Reputation Attestation contract

    Returns the Working Draft 0.1 specification, schema, verifier requirements, endpoint-registry location, lifecycle vocabulary, and explicit interpretation boundaries.

    reputation attestationworking draftverifierlifecyclebounded claims
  • Discover the Lift Evidence contract

    Returns the empty configuration-only index and canonical public-card schema without asserting measured lift, individual reputation, or safety.

    lift evidenceconfiguration cellbounded cohortno universal claim

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("789dfe3c-c5ba-470b-82b9-ccf744c54d13")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())