用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/adamrdrew/claude-code-patterns --skill skill-create命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | skill-create |
| description | A description of how to create skills in the correct way for this project |
To create a new skill use the TodoWrite tool to create a todo list and execute this process in order:
Descide on a name for your skill. The name must start with buddy- examples: buddy-list-processes buddy-find-port buddy-list-directories.
Also decide on a description. It should be descriptive enough and long enough that you can tell exactly what the skill does and when to do it, but not too long. No more than a paragraph.
For the remainer of thi procedure we will refer to those as $skill_name and $skill_description.
Use the Bash tool to create .claude/skills/$skill_name and .claude/skills/$skill_name/SKILL.md
Use the Edit tool to fill .claude/skills/$skill_name/SKILL.md with the skill definitions. Skill files are Markdown with YAML frontmatter.
Template:
---
name: $skill_name
description: $skill_description
---
Detailed skill instructions written in a sequential Todo list format.
Example:
---
name: buddy-list-process
description: Get the process list. Show all running processes on the sysem
---
# List Processes
Use the TodoWrite tool to create a Todo list and exeute the following procedure
## Todo 1: Get the Process List
Use the Bash tool to run `ps aux`
## Todo 2: Report Back
Report the result of running the command back to the user. Do not alter or summarize it, unless asked to by the user.
Follow this procedure and you'll have a new skill to work with!