一键导入
skill-authoring
Author, activate, and manage reusable instruction sets called skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Author, activate, and manage reusable instruction sets called skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | skill-authoring |
| description | Author, activate, and manage reusable instruction sets called skills. |
| allowed_tools | skill-activate skill-list skill-read bash |
This skill teaches you how to author, activate, and manage skills.
A skill is a directory containing a SKILL.md file (and optional supporting files)
that describes a specialized workflow. Skills live under /home/user/skills/{name}/.
Once activated, a skill's index entry appears in every turn's context, and its SKILL.md
body is injected as a system message when a task specifies "skill": "{name}".
Every skill must have a SKILL.md with valid YAML frontmatter:
---
name: skill-name # Required. Must match the directory name exactly.
description: One sentence describing what this skill does.
allowed_tools: tool1 tool2 # Optional. Space-delimited tool names.
compatibility: agent/1.0 # Optional. Version compatibility string.
---
See references/format-reference.md for the full schema.
skill-activate {name} — activate a skill from /home/user/skills/{name}/SKILL.mdskill-list — list active skills (name, status, activations, last used, description)skill-list --status retired — show retired skills onlyskill-list --verbose — include allowed_tools, compatibility, content_hashskill-read {name} — view SKILL.md content with status and telemetry header/home/user/skills/{name}/SKILL.md with valid frontmatterreferences/, scripts/)skill-activate {name} to make it activeskill-list and skill-read {name}name in frontmatter must match the directory name exactlydescription is requiredCall skill-activate {name} again. The skill transitions from retired → active.