Files
claude-code/commands/skill-info.md
OpenCode Test 4169f5b9a4 Add /workflow, /skill-info, and /agent-info commands
- /workflow command to list and describe available workflows
  - Filter by category (health, deploy, incidents, sysadmin)
  - Show workflow steps and triggers
- /skill-info command for skill introspection
  - List scripts, triggers, and allowed tools
  - Show references and documentation
- /agent-info command with hierarchy visualization
  - Tree view of agent relationships
  - Model assignments (opus/sonnet/haiku) with visual indicators
  - Supervisor and subordinate information
- Updated shell completions with 19 aliases total
- Test suite now covers 27 tests

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 19:02:42 -08:00

37 lines
778 B
Markdown

---
name: skill-info
description: Show information about available skills
aliases: [skill, skills-info]
invokes: command:skill-info
---
# Skill Info Command
Show detailed information about available skills.
## Usage
```
/skill-info # List all skills
/skill-info <name> # Show skill details
/skill-info --scripts # List skills with scripts
```
## Implementation
Run the skill info script:
```bash
python3 ~/.claude/automation/skill-info.py [options] [name]
```
## Output Includes
| Field | Description |
|-------|-------------|
| Description | What the skill does |
| Scripts | Available executable scripts |
| Triggers | Keywords that invoke the skill |
| References | Documentation files |
| Allowed Tools | Tool restrictions (if any) |