Help us improve
Share bugs, ideas, or general feedback.
From a2a-multi-agent
Creates and configures A2A Agent Cards—JSON discovery documents detailing agent identity, capabilities, skills, authentication schemes, and endpoints for agent-to-agent delegation.
npx claudepluginhub orcaqubits/agentic-commerce-skills-plugins --plugin a2a-multi-agentHow this skill is triggered — by the user, by Claude, or both
Slash command
/a2a-multi-agent:a2a-agent-cardThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Fetch live docs**:
Designs an A2A Agent Card (.well-known/agent.json) manifest describing agent capabilities, skills, authentication, and content types for multi-agent discovery and orchestration.
A2A agent card JSON templates with schema validation and examples for different agent types. Use when creating agent cards, implementing A2A protocol discovery, setting up agent metadata, configuring authentication schemes, defining agent capabilities, or when user mentions agent card, agent discovery, A2A metadata, service endpoint configuration, or agent authentication setup.
Agent-to-Agent (A2A) protocol implementation patterns for Google ADK - exposing agents via A2A, consuming external agents, multi-agent communication, and protocol configuration. Use when building multi-agent systems, implementing A2A protocol, exposing agents as services, consuming remote agents, configuring agent cards, or when user mentions A2A, agent-to-agent, multi-agent collaboration, remote agents, or agent orchestration.
Share bugs, ideas, or general feedback.
Fetch live docs:
https://a2a-protocol.org/latest/specification/ and look for the Agent Card schema sectionsite:github.com a2aproject A2A agent card schema for the JSON Schema definitionsite:github.com a2aproject a2a-samples agent-card for real-world Agent Card examplesThe Agent Card is a JSON document that describes an A2A agent to potential clients. It's the discovery and capability advertisement mechanism — analogous to an OpenAPI spec for REST APIs, but for agent-to-agent communication.
By convention, Agent Cards are served at:
{agent_base_url}/.well-known/agent-card.json
Agents can also be discovered via:
Declares what protocol features the agent supports:
message/stream?Array of skills (capabilities) the agent offers:
Skills help client agents understand what tasks they can delegate.
Declares required authentication via two top-level fields:
apiKey, http with scheme: bearer, oauth2, openIdConnect)[{ "schemeName": [] }])text/plain, application/json, image/png)/.well-known/agent-card.json is accessible from client agentsFetch the specification for the exact Agent Card JSON Schema, all field types, and required vs optional fields before implementing.