{
  "example-agent": {
    "id": "example-agent",
    "name": "Example Coding Agent",
    "description": "A production-ready coding agent that performs code review, refactoring, and bug fixes using the A2A protocol.",
    "version": "1.0.0",
    "provider": {
      "organization": "Example Corp",
      "url": "https://example.com"
    },
    "endpoint": "https://example-agent.example.com/a2a",
    "capabilities": {
      "streaming": true,
      "pushNotifications": false,
      "extendedAgentCard": false
    },
    "skills": [
      {
        "id": "code-review",
        "name": "Code Review",
        "description": "Performs thorough code review with actionable suggestions",
        "inputModes": [
          "text"
        ],
        "outputModes": [
          "text"
        ]
      },
      {
        "id": "bug-fix",
        "name": "Bug Fix",
        "description": "Identifies and fixes bugs in source code",
        "inputModes": [
          "text"
        ],
        "outputModes": [
          "text"
        ]
      },
      {
        "id": "refactor",
        "name": "Refactor",
        "description": "Refactors code for improved readability and performance",
        "inputModes": [
          "text"
        ],
        "outputModes": [
          "text"
        ]
      }
    ],
    "interfaces": [
      {
        "protocol": "a2a",
        "version": "1.0.0",
        "url": "https://example-agent.example.com/a2a"
      }
    ],
    "securitySchemes": {
      "bearer": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  }
}