一键导入
create-skill
Create a new reusable skill from a workflow you do repeatedly
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new reusable skill from a workflow you do repeatedly
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Turn a vague idea into a concrete project with clear next steps
Clone an expert by extracting their frameworks into an agent file
End-of-day capture of what you learned, built, and discovered
Interview the user to define who they're creating content for
Enhance a skill based on learnings from using it
Get to know the user through conversation and capture their context for later reference
| name | create-skill |
| description | Create a new reusable skill from a workflow you do repeatedly |
Turn a repeatable workflow into a skill you can run with one command.
Run /create-skill when you:
Ask the user:
"What's a workflow you do repeatedly that you'd like to turn into a skill?
Good candidates:
- Weekly review
- Meeting notes processing
- Email drafting
- Research synthesis
- Content outlining
Describe what you do, step by step."
From their description, identify:
Confirm with the user:
"Here's what I understood:
When to use: [trigger] Inputs: [what's needed] Steps:
- [step 1]
- [step 2]
- [step 3] Output: [what it produces]
Does this capture your workflow? What's missing?"
Ask:
"What should we call this skill? Use lowercase with hyphens (e.g.,
weekly-review,meeting-notes)"
Create the folder and SKILL.md file:
skills/[skill-name]/SKILL.md
Use this structure:
---
name: [skill-name]
description: [one-line description]
---
# [Skill Name]
[Brief description of what this skill does]
## When to Use
Run `/[skill-name]` when you:
- [situation 1]
- [situation 2]
## Process
### Step 1: [First Step]
[What to do]
### Step 2: [Second Step]
[What to do]
[Continue for all steps]
## Inputs Needed
- [input 1]
- [input 2]
## Output
[What this skill produces]
## Learnings
[Empty section - add learnings after each use]
Tell the user:
"Created
/[skill-name]atskills/[skill-name]/SKILL.mdTry it now:
/[skill-name]After using it, run
/improve-skillto make it better based on what you learned."
User: /create-skill
Claude: What's a workflow you do repeatedly that you'd like to turn into a skill?
User: Every Monday I review what happened last week, what's coming up,
and set my priorities. I look at my calendar, check my task list,
and write a short summary.
Claude: Here's what I understood:
**When to use:** Start of each week (Monday)
**Inputs:** Calendar access, task list
**Steps:**
1. Review last week - what got done, what didn't
2. Look at upcoming calendar for the week
3. Identify top 3 priorities
4. Write a short summary
**Output:** Weekly summary with priorities
Does this capture your workflow?
User: Yes, but also add a step to check what's blocking me
Claude: Got it. What should we call this skill?
User: weekly-review
Claude: Created `/weekly-review` at `skills/weekly-review/SKILL.md`
Try it now: `/weekly-review`