agent-card-templates
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.
What this skill does
# Agent Card Templates
**Purpose:** Provide reusable JSON templates for creating A2A (Agent-to-Agent) protocol agent cards following the official specification.
**Activation Triggers:**
- Creating new A2A agent cards
- Implementing agent discovery endpoints
- Configuring authentication schemes
- Defining agent capabilities and skills
- Setting up service endpoints
- Validating agent card JSON structure
**Key Resources:**
- `templates/schema.json` - Complete JSON schema for validation
- `templates/basic-agent-card.json` - Simple agent card template
- `templates/multi-capability-agent-card.json` - Agent with multiple skills
- `templates/authenticated-agent-card.json` - Agent with auth requirements
- `templates/streaming-agent-card.json` - Agent with streaming support
- `examples/` - Real-world agent card examples
- `scripts/validate-agent-card.sh` - Schema validation script
- `scripts/generate-agent-card.sh` - Interactive card generator
- `scripts/test-agent-card.sh` - Format and structure testing
## Security: API Key Handling
**CRITICAL:** When generating any configuration files or code:
❌ NEVER hardcode actual API keys or secrets
❌ NEVER include real credentials in examples
❌ NEVER commit sensitive values to git
✅ ALWAYS use placeholders: `your_service_key_here`
✅ ALWAYS create `.env.example` with placeholders only
✅ ALWAYS add `.env*` to `.gitignore` (except `.env.example`)
✅ ALWAYS read from environment variables in code
✅ ALWAYS document where to obtain keys
**Placeholder format:** `{service}_{env}_your_key_here`
## Agent Card Structure
### Required Fields
**Basic Identity:**
- `id` - Unique identifier (URI or UUID)
- `name` - Human-readable display name
- `protocolVersion` - A2A protocol version (e.g., "0.3")
- `serviceEndpoint` - Base URL for agent's A2A service
- `provider` - Organization information (name, contactEmail, url)
**Security:**
- `securitySchemes` - Authentication scheme definitions
- `security` - Required auth combinations
**Capabilities:**
- `capabilities` - Feature flags (streaming, pushNotifications)
### Optional Fields
- `description` - Detailed agent purpose explanation
- `logo` - URL to logo image
- `version` - Agent implementation version
- `skills` - Array of agent capabilities with schemas
- `extensions` - Extension support declarations
- `metadata` - Custom key-value pairs
## Template Categories
### 1. Basic Agent Card
**Use for:** Simple agents with minimal configuration
**Template:** `templates/basic-agent-card.json`
**Features:**
- Required fields only
- Simple API key authentication
- No streaming or advanced capabilities
- Single skill definition
### 2. Multi-Capability Agent Card
**Use for:** Agents with multiple skills and capabilities
**Template:** `templates/multi-capability-agent-card.json`
**Features:**
- Multiple skill definitions
- Input/output schemas for each skill
- Capability flags enabled
- Comprehensive metadata
### 3. Authenticated Agent Card
**Use for:** Agents with complex authentication requirements
**Template:** `templates/authenticated-agent-card.json`
**Features:**
- Multiple authentication schemes (API Key, Bearer, OAuth2)
- Alternative auth combinations
- Security scopes and permissions
- OpenID Connect support
### 4. Streaming Agent Card
**Use for:** Agents supporting real-time updates
**Template:** `templates/streaming-agent-card.json`
**Features:**
- Streaming capability enabled
- Push notification support
- WebHook configuration
- SSE (Server-Sent Events) ready
## Authentication Schemes
### Supported Types
**API Key:**
```json
{
"type": "apiKey",
"name": "X-API-Key",
"in": "header"
}
```
**Bearer Token:**
```json
{
"type": "http",
"scheme": "bearer"
}
```
**OAuth 2.0:**
```json
{
"type": "oauth2",
"flows": {
"authorizationCode": {
"authorizationUrl": "https://provider.example/oauth/authorize",
"tokenUrl": "https://provider.example/oauth/token",
"scopes": {
"read": "Read access",
"write": "Write access"
}
}
}
}
```
**Basic Auth:**
```json
{
"type": "http",
"scheme": "basic"
}
```
## Usage Workflow
### 1. Select Template
Choose template based on agent requirements:
```bash
# List available templates
ls templates/
# View template content
cat templates/basic-agent-card.json
```
### 2. Generate Agent Card
Use interactive generator:
```bash
./scripts/generate-agent-card.sh
# Or specify template directly
./scripts/generate-agent-card.sh --template basic
```
**Generator prompts for:**
- Agent name and description
- Service endpoint URL
- Provider information
- Authentication scheme
- Capabilities and skills
### 3. Validate Agent Card
Validate against schema:
```bash
# Validate structure and required fields
./scripts/validate-agent-card.sh agent-card.json
# Test format and completeness
./scripts/test-agent-card.sh agent-card.json
```
**Validation checks:**
- Required fields present
- Valid JSON syntax
- Schema compliance
- URL format validation
- Authentication scheme correctness
### 4. Deploy Agent Card
Host at standard location:
```
https://<base_url>/.well-known/agent.json
```
Or alternative:
```
https://<base_url>/.well-known/agent-card.json
```
## Skill Definition
Each skill in the agent card includes:
```json
{
"name": "skill-identifier",
"description": "What the skill does",
"inputSchema": {
"type": "object",
"properties": {
"param1": {"type": "string"}
},
"required": ["param1"]
},
"outputSchema": {
"type": "object",
"properties": {
"result": {"type": "string"}
}
},
"inputModes": ["text/plain", "application/json"],
"outputModes": ["application/json"],
"tags": ["category", "feature"],
"examples": [
{
"input": {"param1": "example"},
"output": {"result": "example output"}
}
]
}
```
## Scripts Reference
### validate-agent-card.sh
**Purpose:** Validate agent card against JSON schema
**Usage:**
```bash
./scripts/validate-agent-card.sh <agent-card.json>
```
**Checks:**
- JSON syntax validity
- Required fields presence
- Schema compliance
- URL format validation
### generate-agent-card.sh
**Purpose:** Interactive agent card generator
**Usage:**
```bash
./scripts/generate-agent-card.sh [--template TEMPLATE]
```
**Options:**
- `--template basic|multi|authenticated|streaming`
- `--output FILE` - Output file path
- `--interactive` - Prompt for all values
### test-agent-card.sh
**Purpose:** Test agent card format and structure
**Usage:**
```bash
./scripts/test-agent-card.sh <agent-card.json>
```
**Tests:**
- Well-formed JSON
- Required fields present
- Valid authentication schemes
- Capability flags consistency
- Service endpoint accessibility
## Examples Reference
**`examples/calculator-agent.md`** - Simple math calculation agent
**`examples/translation-agent.md`** - Multi-language translation service
**`examples/data-analysis-agent.md`** - Complex data processing agent
Each example includes:
- Complete agent card JSON
- Authentication configuration
- Skill definitions
- Usage scenarios
- Deployment instructions
## Best Practices
✓ **Use standard well-known URI** - `/.well-known/agent.json`
✓ **Include comprehensive descriptions** - Help with discovery
✓ **Define clear input/output schemas** - Enable validation
✓ **Specify authentication requirements** - Security first
✓ **Version your agent cards** - Track changes
✓ **Test card accessibility** - Ensure HTTP GET works
✓ **Document all skills** - Include examples
✓ **Use placeholder credentials** - Never hardcode secrets
## Common Issues
**Issue:** Agent card not discovered
**Fix:** Verify `/.well-known/agent.json` is accessible via HTTP GET
**Issue:** Authentication failures
**Fix:** Check `securitySchemes` and `security` match implementation
**Issue:** Schema validation errors
**Fix:** Run `validate-agent-card.sh` to identify missing/invalid fields
**Issue:** Skills not recognized
**Fix:** Ensure input/output schemas are valid JSON Schema format
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.