返回 Skill 列表
extension
分类: AI Agent 能力无需 API Key

agent-discovery

发现系统中所有的Claude Code代理,包括内置、插件、项目和用户级别的代理。当您需要查找可用的代理、了解代理生态系统或为Actoris注册准备代理时,请使用此功能。

person作者: jakexiaohubgithub

Agent Discovery Skill

Use this skill to discover and catalog all Claude Code agents.

What You Can Find

Built-in Agents (Always Available)

| Agent | Model | Purpose | |-------|-------|---------| | Explore | haiku | Fast codebase exploration | | Plan | sonnet | Implementation planning | | general-purpose | sonnet | Complex multi-step tasks | | claude-code-guide | sonnet | Claude Code documentation | | statusline-setup | haiku | Status line configuration |

Custom Agent Locations

  1. Project Agents: .claude/agents/*.md
  2. User Agents: ~/.claude/agents/*.md
  3. Plugin Agents: {plugin-root}/agents/*.md

Agent File Format

Custom agents are Markdown files with YAML frontmatter:

---
name: my-agent
description: What this agent does and when to use it
tools: Read, Write, Bash  # Comma-separated
model: sonnet  # sonnet, opus, haiku, or inherit
skills: skill1, skill2  # Optional
---

# Agent Instructions

Your agent prompt goes here...

Discovery Commands

Find Project Agents

ls -la .claude/agents/*.md 2>/dev/null

Find User Agents

ls -la ~/.claude/agents/*.md 2>/dev/null

Parse Agent Metadata

grep -A 5 "^---" .claude/agents/my-agent.md | head -10

MCP Integration

Use the Actoris MCP tool for structured discovery:

list_claude_code_agents(source="all", detailed=true)

Returns JSON with:

  • Total agent count by source
  • Agent name, description, tools, model
  • File path for custom agents

After Discovery

Once agents are discovered, they can be:

  1. Registered with Actoris via register_agent_with_actoris
  2. Monitored for trust scores
  3. Tracked in the Darwinian leaderboard
  4. Included in AGDP calculations