This is meta-tooling for multi-agent systems: it crawls your repository looking for skill.yaml files and builds a capability map so a master agent can figure out which sub-agent to route tasks to. Think of it as service discovery but for AI skills. You'd run this at startup or when an agent needs to decide whether to invoke the HIPAA checker or the PII sanitizer for a given request. It only reads metadata, doesn't execute anything, and will skip malformed YAML with a warning. Honest take: if you're building a single-purpose agent, you don't need this. But if you're orchestrating multiple specialized skills and need programmatic routing, it solves a real coordination problem.
npx -y skills add jorgealves/agent_skills --skill agent-capability-discovery --agent claude-codeInstalls into .claude/skills of the current project.
The agent-capability-discovery skill is the "brain" of a multi-agent system. It allows an agent to self-reflect and understand what tools and expertises are available within its environment by indexing all skill.yaml files.
hipaa-compliance-guard vs. pii-sanitizer) is best suited for the job.base_directory: "."
output_format: "markdown"
A markdown table or JSON object listing all discovered skills, their descriptions, and their primary capabilities.
skill.yaml is malformed, the discovery tool will skip that directory and report a warning.sickn33/antigravity-awesome-skills
moizibnyousaf/ai-agent-skills
github/awesome-copilot