{
  "description": "Describes what an agent can do, for supervisor routing.\n\nAttributes:\n    name: Agent name.\n    description: One-line capability description.\n    tags: Capability tags (e.g. ``[\"qa\", \"retrieval\"]``).\n    tools: Tool names available to the agent.",
  "properties": {
    "name": {
      "title": "Name",
      "type": "string"
    },
    "description": {
      "title": "Description",
      "type": "string"
    },
    "tags": {
      "items": {
        "type": "string"
      },
      "title": "Tags",
      "type": "array"
    },
    "tools": {
      "items": {
        "type": "string"
      },
      "title": "Tools",
      "type": "array"
    }
  },
  "required": [
    "name",
    "description"
  ],
  "title": "CapabilityManifest",
  "type": "object"
}
