Back to list
amirlehmam

agent-discovery

by amirlehmam

Actoris: AI Agent Infrastructure - PRAXIS procedural memory, TrustLedger, Darwinian fitness, and more

0🍴 0📅 Jan 2, 2026

SKILL.md


name: agent-discovery description: Discovers all Claude Code agents in the system including built-in, plugin, project, and user-level agents. Use when you need to find which agents are available, understand the agent ecosystem, or prepare agents for Actoris registration. allowed-tools: Read, Glob, Grep, Bash

Agent Discovery Skill

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

What You Can Find

Built-in Agents (Always Available)

AgentModelPurpose
ExplorehaikuFast codebase exploration
PlansonnetImplementation planning
general-purposesonnetComplex multi-step tasks
claude-code-guidesonnetClaude Code documentation
statusline-setuphaikuStatus 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

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon