Agent Skills
› TangleML/tangle-ui
› list-skills
list-skills
GitHub列出项目中所有自定义技能和斜杠命令,展示名称、描述及类型(手动触发或自动触发),用于帮助用户了解可用功能。
Trigger Scenarios
用户询问有哪些可用的命令或技能
用户希望查看当前项目定义的所有技能列表
Install
npx skills add TangleML/tangle-ui --skill list-skills -g -y
SKILL.md
Frontmatter
{
"name": "list-skills",
"description": "List all available custom slash commands and skills. Use when the user asks what commands are available or wants to see all skills.",
"allowed-tools": "Bash(find *), Read, Glob, Grep",
"disable-model-invocation": true
}
List Skills
List all custom skills defined in this project.
Process
- Find all skill files:
find .claude/skills -name 'SKILL.md' -type f
-
For each skill, extract:
- Name from the
name:frontmatter field - Description from the
description:frontmatter field - Type: If
disable-model-invocation: trueis set, the skill is a slash command (user-invocable via/name). Otherwise it's an auto-triggered skill that fires automatically based on context.
- Name from the
-
Present the results in two groups:
Slash Commands
These are invoked manually by typing /<name>:
| Command | Description |
|---|
Auto-Triggered Skills
These activate automatically when relevant to the task:
| Skill | Description |
|---|
Sort alphabetically within each group.
Version History
- d7768e8 Current 2026-09-02 20:59


