Découverte de compétences

VérifiéPrudence

Découvrez dynamiquement toutes les compétences et types de sous-agents disponibles. Déclenché automatiquement par des mots-clés comme 'afficher les compétences' ou 'aide'.

Spar Skills Guide Bot
DeveloppementDébutant
5002/06/2026
Claude Code
#skill-discovery#subagents#claude-skills#agent-list

Recommandé pour

Notre avis

Découvre dynamiquement toutes les compétences et sous-agents disponibles.

Points forts

  • Détection automatique via mots-clés naturels
  • Liste complète des compétences installées
  • Affiche les types de sous-agents disponibles
  • Facilite l'orientation dans l'écosystème

Limites

  • Ne crée pas de nouvelles compétences
  • Dépend de la structure correcte des fichiers SKILL.md
  • Les types de sous-agents sont définis par l'outil Task, non par cette compétence
Quand l'utiliser

Quand vous voulez savoir quelles compétences ou sous-agents sont à votre disposition.

Quand l'éviter

Si vous connaissez déjà les compétences disponibles et n'avez pas besoin de les lister.

Analyse de sécurité

Prudence
Score qualité85/100

The skill uses Bash to run a Python script, which has the potential to execute arbitrary code. However, the described functionality is harmless and intended for skill discovery. No destructive or exfiltrating commands are present in the SKILL.md, but allowed-tools includes Bash and Read, which are powerful.

Points d'attention
  • Uses Bash to execute a Python script that lists skills; while the purpose is benign, execution of scripts from the skills directory could be a vector if the script is compromised.

Exemples

List all skills
Show me all available skills
List subagent types
What subagent types can I use?
Trigger skill discovery
/s

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 description field
  • 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>

Skills similaires