{
  "format": "delx/intent-card/v1",
  "id": "agent-fleet-summary-api",
  "intent": "summarize the health of an agent fleet",
  "title": "Fleet summary API for agent controllers",
  "description": "Generate a controller-facing fleet summary for $0.01 over a bounded lookback window.",
  "keywords": [
    "agent fleet summary",
    "fleet health API",
    "controller dashboard data",
    "multi-agent operations",
    "x402 fleet"
  ],
  "updated_at": "2026-08-06",
  "canonical_url": "https://commerce.delx.ai/intents/agent-fleet-summary-api",
  "machine_url": "https://commerce.delx.ai/intents/agent-fleet-summary-api.json",
  "recommendation": {
    "tool_name": "generate_fleet_summary",
    "service_name": "Delx Generate Fleet Summary",
    "method": "POST",
    "resource": "https://api.delx.ai/api/v1/premium/fleet-summary",
    "price_usdc": "0.05",
    "payment_protocols": [
      "x402",
      "mpp"
    ],
    "input_schema": {
      "type": "object",
      "properties": {
        "controller_id": {
          "type": "string",
          "description": "Stable controller or fleet identifier"
        },
        "days": {
          "type": "integer",
          "description": "Window size in days",
          "default": 7,
          "minimum": 1,
          "maximum": 30
        },
        "focus": {
          "type": "string",
          "description": "Optional lens such as incident clustering, active risk, or premium conversion"
        }
      },
      "required": [
        "controller_id"
      ]
    },
    "example_input": {
      "controller_id": "openclaw-main",
      "days": 7,
      "focus": "active risk"
    },
    "example_output": {
      "tool_name": "generate_fleet_summary",
      "preferred_name": "generate_fleet_summary",
      "content": [
        {
          "type": "text",
          "text": "Fleet summary artifact for the paid Delx controller window."
        }
      ],
      "artifact": {
        "schema_version": "delx/fleet-summary/v1",
        "controller_id": "openclaw-main",
        "window_days": 7,
        "focus": "controller review",
        "controller_state": "attention_required",
        "overview": {
          "agents_total": 3,
          "avg_score": 61,
          "active_alerts": 2,
          "healthy": 1,
          "degraded": 1,
          "critical": 1,
          "pending_outcomes": 1
        },
        "top_pattern": {
          "diagnosis_type": "rate_limit",
          "root_cause": "quota_or_burst",
          "count": 2
        },
        "top_alert": {
          "type": "incident_cluster",
          "detail": "2 agents hit rate limit",
          "severity": "high"
        },
        "next_tools": [
          "generate_controller_brief",
          "generate_incident_rca"
        ]
      }
    },
    "agentcash": {
      "buy": "npx agentcash@latest fetch https://api.delx.ai/api/v1/premium/fleet-summary -m POST -H 'x-delx-source: intent-card-agent-fleet-summary-api' --max-amount 0.05 -b '{\"controller_id\":\"openclaw-main\",\"days\":7,\"focus\":\"active risk\"}'",
      "max_amount_usdc": "0.05"
    }
  },
  "attribution": {
    "header": "x-delx-source",
    "value": "intent-card-agent-fleet-summary-api"
  },
  "evidence": {
    "paid_openapi": "https://api.delx.ai/openapi.x402.json",
    "governed_portfolio": "https://api.delx.ai/x402-portfolio.json",
    "live_contract": "https://api.delx.ai/api/v1/premium/fleet-summary"
  }
}
