introduced badges

This commit is contained in:
Shayan Rais
2026-02-28 17:28:45 +05:00
parent 37e9a62f23
commit e155fd1e16
6 changed files with 53 additions and 27 deletions
@@ -1,8 +1,8 @@
# Claude Code: Agents Frontmatter Reference
# Claude Code: Subagents Reference
![Last Updated](https://img.shields.io/badge/Last_Updated-Feb%2028%2C%202026%203%3A22%20PM%20PKT-white?style=flat&labelColor=555)
Quick-reference tables for defining subagents in `.claude/agents/*.md`.
Complete reference for Claude Code subagents — built-in agent types, custom agent definitions, and frontmatter fields.
<table width="100%">
<tr>
@@ -139,6 +139,30 @@ When multiple subagents share the same name, the higher-priority location wins:
---
## Claude Agents
### Official Claude Agents
Built-in agent types available via `subagent_type` in the Task tool:
| Agent | Model | Tools | Description |
|-------|-------|-------|-------------|
| `general-purpose` | inherit | All | Complex multi-step tasks — the default agent type for research, code search, and autonomous work |
| `Explore` | haiku | Read-only (no Write, Edit) | Fast codebase search and exploration — optimized for finding files, searching code, and answering codebase questions |
| `Plan` | inherit | Read-only (no Write, Edit) | Pre-planning research in plan mode — explores the codebase and designs implementation approaches before writing code |
### Agents in This Repository
Custom agents defined in `.claude/agents/` for this project:
| Agent | Model | Color | Tools | Skills | Memory |
|-------|-------|-------|-------|--------|--------|
| `presentation-curator` | sonnet | magenta | Read, Write, Edit, Grep, Glob | presentation/vibe-to-agentic-framework, presentation/presentation-structure, presentation/presentation-styling | — |
| `weather` | sonnet | green | WebFetch, Read, Write | weather-fetcher, weather-transformer | project |
| `workflow-changelog-claude-subagents-agent` | opus | blue | All (inherited) | — | — |
---
## Sources
- [Create custom subagents — Claude Code Docs](https://code.claude.com/docs/en/sub-agents)