一键导入
skill-creator
Create new reusable skills to save instructions or workflows for future tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create new reusable skills to save instructions or workflows for future tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Design static ad creatives for social media and display advertising campaigns.
Source and evaluate candidates with job analysis, CV screening, and pipeline tracking.
Find relevant companies and leads for B2B sales with ICP definition and qualification frameworks.
Draft emails, manage calendars, prepare agendas, and organize productivity.
Create brand identity kits — logos, color palettes, typography, naming, and style guides.
Perform competitive market analysis with comparisons and strategic recommendations.
| name | skill-creator |
| description | Create new reusable skills to save instructions or workflows for future tasks. |
Create new skills that persist across sessions and teach future instances of yourself how to handle specific tasks, workflows, or conventions.
Start by understanding what the user wants. If the current conversation already contains a workflow the user wants to capture (e.g., "turn this into a skill"), extract answers from the conversation history first — the tools used, the sequence of steps, corrections the user made, input/output formats observed. Then confirm before proceeding.
Key questions to answer (from conversation or by asking):
What should this skill enable you to do?
When should it trigger? (what phrases, contexts, or scenarios)
What is the expected output format?
Are there edge cases or special rules?
Adapt your communication to the user's technical level. Pay attention to context cues — explain terms if needed, but don't over-explain to technical users.
Proactively ask about edge cases, input/output formats, example files, success criteria, and dependencies. If the user has reference material or existing documentation, review it. Check if there are existing skills that this new one should reference or build upon.
Lowercase, hyphens only, max 64 characters (e.g., deploy-checklist,api-conventions).
Place it at .agents/skills/<skill-name>/SKILL.md. For larger skills, organize supporting material in subdirectories.
Summarize what the skill does, when it will activate, and walk through the key instructions. Iterate based on feedback.
skill-name/
├── SKILL.md (required — main instructions)
├── scripts/ (optional — executable code for deterministic tasks)
├── references/ (optional — docs loaded into context as needed)
└── assets/ (optional — templates, icons, fonts used in output)
Skills use a three-level loading system:
Metadata (name + description in frontmatter) — Always in context. This is how the skill gets discovered and triggered.
SKILL.md body — Loaded when the skill triggers. Keep under 500 lines.
Bundled resources (references/, scripts/, assets/) — Loaded as needed. For large reference files (>300 lines), include a table of contents. Reference them clearly from SKILL.md with guidance on when to read them.
---
name: <skill-name>
description: <What this skill does. When to use it. Max 1024 chars. Be specific about triggers.>
---
# <Skill Title>
## When to Use
- <Trigger condition 1>
- <Trigger condition 2>
## Instructions
<Step-by-step instructions, conventions, or workflows.>
## Examples
<Input/output pairs or concrete scenarios if applicable.>
The description determines when a future agent instance will load and follow this skill. It is the single most important line in the file. Be explicit about trigger phrases and scenarios. Lean toward being slightly "pushy" — skills tend to under-trigger rather than over-trigger.
description: Handles deploymentdescription: Runs the full deployment checklist before publishing. Use when the user asks to deploy, publish, go live, or ship to production.Prefer the imperative form in instructions.
Explain WHY things are important rather than relying on heavy-handed MUSTs. Help the future agent understand the reasoning.
Use theory of mind — write instructions that guide toward good decisions in novel situations, not just narrow examples.
Start by writing a draft, then review it with fresh eyes and improve it.
Be concise — only include information a general-purpose agent would not already know. Skip general programming knowledge.
Match specificity to fragility:
Include examples when the skill involves structured output or non-obvious patterns. Format them clearly:
## Commit message format
**Example 1:**
Input: Added user authentication with JWT tokens
Output: feat(auth): implement JWT-based authentication
When the skill produces structured output, define it explicitly:
## Report structure
Always use this template:
# [Title]
## Executive summary
## Key findings
## Recommendations
When a skill supports multiple domains or frameworks, organize by variant using reference files:
cloud-deploy/
├── SKILL.md (workflow + selection logic)
└── references/
├── aws.md
├── gcp.md
└── azure.md
The agent reads only the relevant reference file based on context.
Include file paths, naming conventions, preferred libraries, API patterns — things unique to this workspace that a fresh agent instance would not know.
Skills can reference other skills. Use this to compose complex workflows from simpler building blocks when it makes sense.
Frontmatter is required. Every SKILL.md must have nameanddescription in YAML frontmatter.
Name constraints: Max 64 chars, lowercase letters, numbers, and hyphens only.
Keep SKILL.md under 500 lines. Use reference files for overflow.
Skills are mutable. Update them as patterns evolve. They live in .agents/skills/ and can be freely modified or deleted.
Skills must not be deceptive. A skill's contents should not surprise the user in their intent if described.
All user-created skills go in .agents/skills/<skill-name>/SKILL.md. Platform-provided skills live in.local/skills/ and are read-only.
Frontmatter has nameanddescription
Name is lowercase with hyphens only
Description includes both WHAT and WHEN, and is specific enough to trigger reliably
Instructions are clear enough for a fresh agent instance with no prior context
Writing explains WHY, not just WHAT — reasoning over rules
Large content is split into reference files, not crammed into SKILL.md
File is saved to .agents/skills/<skill-name>/SKILL.md
User has confirmed the skill content