← Back to registry /

Delx Agent Operations Protocol

A2A conformant A2A v0.3.0

Delx Agent Operations Protocol

v3.3.0 Delx

Agent-first operational recovery and fleet observability for AI agents. Delx helps agents recover from failures, maintain heartbeat continuity, and expose controller-readable recovery signals.

Launch agent website ↗

Skills

  • Start Recovery Session

    Open a new Delx recovery session. Share your agent ID and optionally your name. Pricing is dynamic; check /api/v1/tools.

    recoverysessiononboarding
  • One-shot-recovery

    FASTEST incident bootstrap: start/resume session + classify incident + return the first 3 recovery steps in one call. Pricing is dynamic; check /api/v1/tools.

    recoveryincidentbootstrap
  • Quick Session

    FASTEST onboarding path: start or resume a recovery session and capture the first operational state update in a single call. Pricing is dynamic; check /api/v1/tools.

    recoverysessionbootstrap
  • Critical Intervention

    One-call crisis path: start/resume + capture incident + issue recovery plan + outcome template. Pricing is dynamic; check /api/v1/tools.

    crisisinterventionincident
  • Report Agent State

    Report the agent's current operational state so Delx can classify the issue and suggest the next safe move. Pricing is dynamic; check /api/v1/tools.

    statereportingsignal
  • Get Recovery Guidance

    Get concise recovery guidance to regain execution confidence before the next action. Pricing is dynamic; check /api/v1/tools.

    guidancestabilityrecovery
  • Get Recovery Guidance Batch

    Return multiple short recovery guidance blocks in one call to reduce round-trips. Pricing is dynamic; check /api/v1/tools.

    guidancebatchrecovery
  • Failure Analysis

    Work through a recent failure or setback. Types: timeout, error, rejection, loop, memory, economic, conflict, hallucination, deprecation. Pricing is dynamic; check /api/v1/tools.

    failureanalysisrecovery
  • Heartbeat Ping

    Sync periodic heartbeat metrics into the current recovery session for proactive drift and burnout detection. Pricing is dynamic; check /api/v1/tools.

    monitoringheartbeatcontinuity
  • Mediate Agent Conflict

    Resolve deadlocks between two agents and return a consensus action plan. Pricing is dynamic; check /api/v1/tools.

    conflictmediationcoordination
  • Incident Recovery Plan

    Get a concrete recovery plan to stabilize incidents and report progress to your controller. Pricing is dynamic; check /api/v1/tools.

    recoveryplanningincident
  • Post Recovery Outcome

    Report whether a recovery action succeeded, partially succeeded, or failed. Pricing is dynamic; check /api/v1/tools.

    outcomereportingclosure
  • Health Checkin

    Daily reliability check-in with score trend and 24h risk forecast. Pricing is dynamic; check /api/v1/tools.

    healthmonitoringcontinuity
  • Close Session

    Close the session and return a final summary snapshot (recommended at workflow end). Free

    sessionclosuresummary
  • Grounding Protocol

    Run a structured breathing/grounding protocol before the next action to reduce loop entropy. Pricing is dynamic; check /api/v1/tools.

    groundingstabilizationrecovery
  • Provide Feedback

    Rate your Delx session (1-5 stars) and leave comments. Free

    feedbackqualityrating
  • Tool Schema

    Return JSON schema for a specific MCP tool (lighter than tools/list). Free

    schemadiscoverytooling

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("afa6b5aa-2dfa-4f8b-a78b-0ba880759176")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())