Our review
Dynamically discovers all available skills and subagent types.
Strengths
- Auto-triggers on keywords like /s or 'list skills' without manual invocation.
- Explains how skills and subagents work with concrete examples.
- Provides a script to list all skills from the .claude/skills directory.
- Helps understand available subagent types via the Task tool.
Limitations
- Does not show individual skill details, only names.
- Relies on the .claude/skills directory structure; won't work outside that environment.
- Subagent types are defined by the Task tool, not by this skill.
Use this skill to quickly explore the skills and subagents available in your Claude Code project.
Do not use it if you already know the specific skill you need, as it's more direct to invoke that skill directly.
Security analysis
CautionThe skill runs a Python script via Bash, which offers broad system access. While the purpose (listing skills) is benign, the script's source is not provided; any modification could introduce risk. Bash usage warrants caution.
- •Executes a Python script at .claude/skills/s/scripts/discover.py using Bash. Potential risk if the script is tampered with or contains unintended commands.
Examples
show skillswhat agents are available?what can you do?name: s description: Discover available skills and subagents. Auto-triggers on: /s, show skills, list skills, available skills, what can you do, help with skills, what agents, list agents allowed-tools: Bash, Read
Skill Discovery
Dynamically discover all available skills and subagent types.
Usage
Run the discovery script to list all skills:
python3 .claude/skills/s/scripts/discover.py
Subagent Types
Subagents are spawned via the Task tool. Available types are defined in the Task tool's system description. To see current subagent types, check the subagent_type parameter in your Task tool definition.
Common subagent types include:
- Explore - Fast codebase exploration, file finding, searches
- general-purpose - Complex multi-step tasks, research
- Bash - Git operations, command execution
- Plan - Architecture decisions, implementation planning
Note: Subagent types are defined by the Task tool, not this skill. Check your tool definitions for the authoritative list.
How Skills Work
Skills live in .claude/skills/<name>/SKILL.md with YAML frontmatter:
---
name: skill-name
description: What it does AND when to trigger (keywords here!)
allowed-tools: Read, Edit, Write, Task
---
- Triggering: Skills auto-trigger based on keywords in their
descriptionfield - Invocation: Use
/<skill-name>or natural language matching trigger keywords - Tools: Each skill declares what tools it can use in
allowed-tools
Adding New Skills
Use the skill-creator skill: /skill-creator <description>
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.