Skill creation walkthrough

Step-by-step guide for creating your own Claude Skills, from deciding whether a skill is the right tool to writing the SKILL.md file, structuring reference material, and making it trigger reliably.

Skill creation walkthrough — Creative Direction skill highlight diagram. Navy header card reads 'Impactful Creative Direction' with the subtitle… (from the rampstackco/claude-skills README)

From the rampstackco/claude-skills README — shows the whole collection, not only this skill. · view on GitHub

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/skill-creation-walkthrough, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit rampstackco/claude-skills/skills/skill-creation-walkthrough#main ~/.claude/skills/skill-creation-walkthrough

For one project only, change the path to .claude/skills/skill-creation-walkthrough. This skill also uses -template.md, -checklist.md, -playbook.md, post-mortem-template.md, facilitator-checklist.md — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Skill creation walkthrough

Show the full text262 lines
namedescriptioncategorycatalog_summarydisplay_order
skill-creation-walkthroughStep-by-step guide for creating your own Claude Skills, from deciding whether a skill is the right tool to writing the SKILL.md file, structuring reference material, and making it trigger reliably. Use when you want to package a workflow, framework, or repeated task into a reusable Skill, when an existing skill is not triggering or not loading the right context, when you are auditing a skill that is underperforming, or when you want to publish a skill for others. Also triggers when someone asks "how do I make a skill" or "what makes a good skill". Useful for individuals, teams, and anyone publishing skills publicly.process-and-teamThe meta-skill: how to write your own custom skills5

A walkthrough for designing, writing, and maintaining your own Claude Skills. Covers when a skill is the right shape for your problem, how to write a description that actually triggers, how to structure SKILL.md and references, and how to test and iterate.

When to use

  • You catch yourself writing the same prompt or instructions repeatedly.
  • You want to package a workflow or framework for reuse.
  • An existing skill of yours is not triggering when it should.
  • You are publishing skills for others to use.
  • You want to teach Claude a domain-specific way of working.
  • You are reviewing a skill someone wrote and need a quality bar.

When NOT to use

  • For one-off prompts (just write the prompt).
  • For information that should live in system context, not progressive disclosure.
  • For changing Claude's general behavior across all conversations (use Claude.ai settings or system prompts, not skills).
  • For replacing tool calls (skills are instructions, not tools).

Required inputs

  • The task or workflow you want to encode.
  • The audience: who will trigger this skill, in what kind of conversation.
  • Existing artifacts: prompts you have used, docs you have written, examples of good output.

The framework: how skills work

A Skill is a folder with a SKILL.md file. The SKILL.md has YAML frontmatter (name and description) and a body with instructions. It can also include reference files, scripts, or templates that get loaded when needed.

The key property: progressive disclosure. Claude does not read every skill on every turn. The skill description lives in the system prompt. The SKILL.md body and references load only when the skill is triggered. This is what lets a user have hundreds of skills without polluting context.

What this means for you:

  • The description is everything for triggering. Get it right or the skill never loads.
  • The SKILL.md body is for the workflow itself.
  • The references are for content that does not need to be in every invocation: long checklists, templates, examples, deep reference material.

Workflow

Phase 1: Decide if a skill is the right shape

Not everything should be a skill. Run this test:

Sign it should be a skill Sign it should not be
You repeat the same workflow 5+ times. You used it once.
The output benefits from a consistent structure. Each output is bespoke.
The task has a clear trigger (a question shape, a file type, a domain). The task is part of every conversation already.
The instructions exceed 200 words. A one-line system instruction would do.
Templates or reference material would help. Pure prose is enough.
Other people might benefit from the same workflow. Only relevant to your single project.

If most of your answers are in the left column, build a skill. Otherwise, use a saved prompt or a system instruction.

Phase 2: Define the trigger

Before writing anything, ask: when should this skill load?

Be concrete. Write down the exact phrases or situations that should trigger it. Examples:

  • "When the user asks for a creative brief, kickoff doc, or project brief."
  • "When the user uploads a CSV and wants tabular analysis."
  • "When the user asks 'how do I rank for X', 'should I add schema', or anything SEO-related."
  • "When the user mentions they want to pick a vendor or compare tools."

The trigger is your description's job. If you cannot articulate the trigger crisply, the skill will not load reliably.

Phase 3: Write the description

This is the most important sentence (or two) in your skill. The description is what Claude sees in the system prompt to decide whether to load the skill.

Good descriptions have 4 parts:

  1. What it does (one sentence, action-oriented).
  2. When to use it (the trigger phrases or situations).
  3. Edge cases with "Also triggers when..." (catches less obvious situations).
  4. Useful for... (audience or use cases, helps disambiguation).

Bad description:

"Helps with SEO."

Why it fails: vague, no trigger phrases, will not fire when the user actually needs it.

Good description:

"Audit on-page SEO of a single URL or a small set of pages. Use when the user asks for a page audit, wants to optimize titles and meta descriptions, asks 'why is this page not ranking', or shares a URL and asks what is wrong with it. Also triggers when the user mentions Core Web Vitals, internal linking, or schema markup. Useful for both individual page reviews and small-batch audits."

Why it works: specific actions, multiple trigger phrases, edge cases, audience clarity.

Phase 4: Structure the SKILL.md body

A consistent structure makes skills readable, maintainable, and AI-friendly. The pattern below works for most skills:

---
name: [your-skill-name]
description: [your description]
---

[One-sentence purpose statement]

## When to use
[Bulleted list of trigger situations]

## When NOT to use
[Bulleted list, ideally redirecting to sibling skills]

## Required inputs
[What Claude needs from the user to run this skill]

## The framework
[The durable IP: the model, the steps, the dimensions, the layers]

## Workflow
[Numbered steps Claude follows]

## Failure patterns
[Common mistakes to avoid or push back on]

## Output format
[What the deliverable looks like]

## Reference files
[List of files in the references/ folder with descriptions]

Not every skill needs every section. Some skills are pure how-to and skip "framework". Some skills are heavy on examples and add an "Examples" section. Use the structure as a starting point, adapt as needed.

Phase 5: Add references for what does not belong in SKILL.md

References are the second tier of progressive disclosure. They load when Claude reads them, not by default.

Use references for:

  • Long checklists (a 100-item audit checklist).
  • Templates with worked examples.
  • Detailed playbooks for specific scenarios.
  • Reference material like spec links, glossaries, decision tables.
  • Anything over 100 lines that not every invocation needs.

Each reference should be standalone. A reader (or Claude) should be able to use it without reading the SKILL.md first, given the context the skill provides.

Naming patterns that work:

  • references/[noun]-template.md for templates.
  • references/[noun]-checklist.md for checklists.
  • references/[noun]-playbook.md for end-to-end runbooks.
  • references/example-[scenario].md for worked examples.

Reference your reference files from the SKILL.md "Reference files" section with a one-line description of each.

Phase 6: Test and iterate

Skills do not work the first time. Plan to iterate.

Testing checklist:

  • Trigger test: in a fresh conversation, write the trigger phrase. Does the skill load? If not, the description is too narrow or wrong.
  • Edge case test: write something that should trigger via the "Also triggers when..." clause. Does it fire?
  • False positive test: write something close but not actually relevant. Does the skill avoid loading? If it always loads, your description is too broad.
  • Output test: run the skill on a real task. Is the output what you expected?
  • Length test: is the SKILL.md staying under 250 lines? Are references under 400 lines? If not, split or trim.

After testing, common fixes:

  • Skill not triggering → broaden the description, add explicit phrases, add "Also triggers when..."
  • Skill triggering too often → narrow the description, add "Do not trigger when...", be more specific about audience.
  • Output is generic → add a clearer framework or workflow with more specifics.
  • Reference is overwhelming → split into multiple references, keep each focused.

Deep dive: description anatomy

The description is hard to get right. Here is the formula in detail.

Sentence 1: What it does

Lead with the verb. Be specific.

  • Good: "Audit on-page SEO."
  • Bad: "Help with SEO things."
Sentence 2: When to use it

State the primary triggers. Use phrases users would actually say.

  • Good: "Use when the user asks for a page audit, wants to optimize titles and meta descriptions, or asks 'why is this page not ranking'."
  • Bad: "Use for SEO improvements."
Sentence 3: "Also triggers when..."

Catch the secondary triggers and edge cases.

  • Good: "Also triggers when the user mentions Core Web Vitals, internal linking, or schema markup."
  • Bad: (omitted)
Sentence 4: Useful for...

Explain audience or scope to help with disambiguation.

  • Good: "Useful for both individual page reviews and small-batch audits."
  • Bad: (omitted)

If your skill description is one sentence, it is probably not specific enough.

Deep dive: worked example

Imagine you keep writing technical post-mortem documents and want to skill-ify it.

Step 1: Decide it's a skill. You write 5+ post-mortems a year, output benefits from consistency, others on the team would use it. Yes, build a skill.

Step 2: Trigger. "When the user wants to write a post-mortem, retrospective, or after-action report. When an incident has happened and we are reviewing what went wrong."

Step 3: Description.

"Write a structured post-mortem after an incident, outage, or significant project failure. Use when the user mentions post-mortem, retrospective, after-action report, RCA, or asks 'why did this go wrong' after an incident. Also triggers when the user wants to capture lessons learned from a launch, project miss, or incident debrief. Useful for technical incidents, project retros, and team learning reviews."

Step 4: SKILL.md body. Use the standard structure. Required inputs (timeline, impact, contributors). The framework (Five Whys, contributing factors, action items). Workflow (gather facts, draft, review, distribute). Failure patterns (blame, vague action items, no follow-up).

Step 5: References. A post-mortem-template.md with the document structure and a facilitator-checklist.md for running the post-mortem meeting.

Step 6: Test. Trigger on "we had an outage yesterday, can you help me write the post-mortem?" Should fire. Trigger on "what is a post-mortem?" Should probably also fire. Trigger on "let's review the quarter". Should not fire (this is a different kind of retro).

You iterate until the triggers fire correctly, then ship.

Failure patterns

  • Description too narrow. The skill never fires because your description requires exact phrases the user does not say.
  • Description too broad. The skill fires constantly, including for unrelated tasks.
  • No trigger phrases. The description describes what the skill does but not when to load it. Triggering is unreliable.
  • SKILL.md too long. A 1,000-line SKILL.md defeats the purpose of progressive disclosure. Split into references.
  • References that duplicate SKILL.md. If a reference repeats what the body says, prune one.
  • No "When NOT to use". Skills that overlap with sibling skills get loaded ambiguously. Cross-reference siblings explicitly.
  • No examples. A framework without a worked example is hard to apply. Include at least one in the reference material.
  • Optimizing for one example. A skill written around your single use case fails at adjacent ones. Generalize.
  • No iteration. Shipping a skill once and never revisiting it. Skills decay. Audit yearly.
  • Branding or product-specific assumptions in a public skill. Skills meant to be general should not hardcode your stack. Public skills teach methodology (frameworks, decision criteria, taxonomies, anti-patterns); implementation specifics (specific page architectures, type definitions, component code, framework-specific patterns) belong in internal playbooks. See references/methodology-vs-implementation.md for the full discipline and the user-outcome reasons it matters.

Output format

When using this skill to create another skill, deliver:

  1. Trigger analysis: a short list of phrases and situations that should fire the skill.
  2. Description draft: the 2-4 sentence description for the YAML frontmatter.
  3. SKILL.md body: the full body of the skill, following the standard structure.
  4. Reference plan: a list of reference files to create with one-line descriptions.
  5. First reference file: at least one reference written end to end as a starting point.
  6. Test plan: 3-5 test prompts that should trigger the skill, plus 2-3 that should not.

Reference files

1---
2name: skill-creation-walkthrough
3description: Step-by-step guide for creating your own Claude Skills, from deciding whether a skill is the right tool to writing the SKILL.md file, structuring reference material, and making it trigger reliably. Use when you want to package a workflow, framework, or repeated task into a reusable Skill, when an existing skill is not triggering or not loading the right context, when you are auditing a skill that is underperforming, or when you want to publish a skill for others. Also triggers when someone asks "how do I make a skill" or "what makes a good skill". Useful for individuals, teams, and anyone publishing skills publicly.
4category: process-and-team
5catalog_summary: "The meta-skill: how to write your own custom skills"
6display_order: 5
7---
8 
9A walkthrough for designing, writing, and maintaining your own Claude Skills. Covers when a skill is the right shape for your problem, how to write a description that actually triggers, how to structure SKILL.md and references, and how to test and iterate.
10 
11## When to use
12 
13- You catch yourself writing the same prompt or instructions repeatedly.
14- You want to package a workflow or framework for reuse.
15- An existing skill of yours is not triggering when it should.
16- You are publishing skills for others to use.
17- You want to teach Claude a domain-specific way of working.
18- You are reviewing a skill someone wrote and need a quality bar.
19 
20## When NOT to use
21 
22- For one-off prompts (just write the prompt).
23- For information that should live in system context, not progressive disclosure.
24- For changing Claude's general behavior across all conversations (use Claude.ai settings or system prompts, not skills).
25- For replacing tool calls (skills are instructions, not tools).
26 
27## Required inputs
28 
29- The task or workflow you want to encode.
30- The audience: who will trigger this skill, in what kind of conversation.
31- Existing artifacts: prompts you have used, docs you have written, examples of good output.
32 
33## The framework: how skills work
34 
35A Skill is a folder with a `SKILL.md` file. The SKILL.md has YAML frontmatter (name and description) and a body with instructions. It can also include reference files, scripts, or templates that get loaded when needed.
36 
37The key property: **progressive disclosure**. Claude does not read every skill on every turn. The skill description lives in the system prompt. The SKILL.md body and references load only when the skill is triggered. This is what lets a user have hundreds of skills without polluting context.
38 
39What this means for you:
40 
41- The **description** is everything for triggering. Get it right or the skill never loads.
42- The **SKILL.md body** is for the workflow itself.
43- The **references** are for content that does not need to be in every invocation: long checklists, templates, examples, deep reference material.
44 
45## Workflow
46 
47### Phase 1: Decide if a skill is the right shape
48 
49Not everything should be a skill. Run this test:
50 
51| Sign it should be a skill | Sign it should not be |
52| --- | --- |
53| You repeat the same workflow 5+ times. | You used it once. |
54| The output benefits from a consistent structure. | Each output is bespoke. |
55| The task has a clear trigger (a question shape, a file type, a domain). | The task is part of every conversation already. |
56| The instructions exceed 200 words. | A one-line system instruction would do. |
57| Templates or reference material would help. | Pure prose is enough. |
58| Other people might benefit from the same workflow. | Only relevant to your single project. |
59 
60If most of your answers are in the left column, build a skill. Otherwise, use a saved prompt or a system instruction.
61 
62### Phase 2: Define the trigger
63 
64Before writing anything, ask: when should this skill load?
65 
66Be concrete. Write down the exact phrases or situations that should trigger it. Examples:
67 
68- "When the user asks for a creative brief, kickoff doc, or project brief."
69- "When the user uploads a CSV and wants tabular analysis."
70- "When the user asks 'how do I rank for X', 'should I add schema', or anything SEO-related."
71- "When the user mentions they want to pick a vendor or compare tools."
72 
73The trigger is your description's job. If you cannot articulate the trigger crisply, the skill will not load reliably.
74 
75### Phase 3: Write the description
76 
77This is the most important sentence (or two) in your skill. The description is what Claude sees in the system prompt to decide whether to load the skill.
78 
79Good descriptions have 4 parts:
80 
811. **What it does** (one sentence, action-oriented).
822. **When to use it** (the trigger phrases or situations).
833. **Edge cases** with "Also triggers when..." (catches less obvious situations).
844. **Useful for...** (audience or use cases, helps disambiguation).
85 
86Bad description:
87 
88> "Helps with SEO."
89 
90Why it fails: vague, no trigger phrases, will not fire when the user actually needs it.
91 
92Good description:
93 
94> "Audit on-page SEO of a single URL or a small set of pages. Use when the user asks for a page audit, wants to optimize titles and meta descriptions, asks 'why is this page not ranking', or shares a URL and asks what is wrong with it. Also triggers when the user mentions Core Web Vitals, internal linking, or schema markup. Useful for both individual page reviews and small-batch audits."
95 
96Why it works: specific actions, multiple trigger phrases, edge cases, audience clarity.
97 
98### Phase 4: Structure the SKILL.md body
99 
100A consistent structure makes skills readable, maintainable, and AI-friendly. The pattern below works for most skills:
101 
102```
103---
104name: [your-skill-name]
105description: [your description]
106---
107 
108[One-sentence purpose statement]
109 
110## When to use
111[Bulleted list of trigger situations]
112 
113## When NOT to use
114[Bulleted list, ideally redirecting to sibling skills]
115 
116## Required inputs
117[What Claude needs from the user to run this skill]
118 
119## The framework
120[The durable IP: the model, the steps, the dimensions, the layers]
121 
122## Workflow
123[Numbered steps Claude follows]
124 
125## Failure patterns
126[Common mistakes to avoid or push back on]
127 
128## Output format
129[What the deliverable looks like]
130 
131## Reference files
132[List of files in the references/ folder with descriptions]
133```
134 
135Not every skill needs every section. Some skills are pure how-to and skip "framework". Some skills are heavy on examples and add an "Examples" section. Use the structure as a starting point, adapt as needed.
136 
137### Phase 5: Add references for what does not belong in SKILL.md
138 
139References are the second tier of progressive disclosure. They load when Claude reads them, not by default.
140 
141Use references for:
142 
143- Long checklists (a 100-item audit checklist).
144- Templates with worked examples.
145- Detailed playbooks for specific scenarios.
146- Reference material like spec links, glossaries, decision tables.
147- Anything over 100 lines that not every invocation needs.
148 
149Each reference should be standalone. A reader (or Claude) should be able to use it without reading the SKILL.md first, given the context the skill provides.
150 
151Naming patterns that work:
152 
153- `references/[noun]-template.md` for templates.
154- `references/[noun]-checklist.md` for checklists.
155- `references/[noun]-playbook.md` for end-to-end runbooks.
156- `references/example-[scenario].md` for worked examples.
157 
158Reference your reference files from the SKILL.md "Reference files" section with a one-line description of each.
159 
160### Phase 6: Test and iterate
161 
162Skills do not work the first time. Plan to iterate.
163 
164Testing checklist:
165 
166- [ ] Trigger test: in a fresh conversation, write the trigger phrase. Does the skill load? If not, the description is too narrow or wrong.
167- [ ] Edge case test: write something that should trigger via the "Also triggers when..." clause. Does it fire?
168- [ ] False positive test: write something close but not actually relevant. Does the skill avoid loading? If it always loads, your description is too broad.
169- [ ] Output test: run the skill on a real task. Is the output what you expected?
170- [ ] Length test: is the SKILL.md staying under 250 lines? Are references under 400 lines? If not, split or trim.
171 
172After testing, common fixes:
173 
174- Skill not triggering → broaden the description, add explicit phrases, add "Also triggers when..."
175- Skill triggering too often → narrow the description, add "Do not trigger when...", be more specific about audience.
176- Output is generic → add a clearer framework or workflow with more specifics.
177- Reference is overwhelming → split into multiple references, keep each focused.
178 
179## Deep dive: description anatomy
180 
181The description is hard to get right. Here is the formula in detail.
182 
183### Sentence 1: What it does
184 
185Lead with the verb. Be specific.
186 
187- Good: "Audit on-page SEO."
188- Bad: "Help with SEO things."
189 
190### Sentence 2: When to use it
191 
192State the primary triggers. Use phrases users would actually say.
193 
194- Good: "Use when the user asks for a page audit, wants to optimize titles and meta descriptions, or asks 'why is this page not ranking'."
195- Bad: "Use for SEO improvements."
196 
197### Sentence 3: "Also triggers when..."
198 
199Catch the secondary triggers and edge cases.
200 
201- Good: "Also triggers when the user mentions Core Web Vitals, internal linking, or schema markup."
202- Bad: (omitted)
203 
204### Sentence 4: Useful for...
205 
206Explain audience or scope to help with disambiguation.
207 
208- Good: "Useful for both individual page reviews and small-batch audits."
209- Bad: (omitted)
210 
211If your skill description is one sentence, it is probably not specific enough.
212 
213## Deep dive: worked example
214 
215Imagine you keep writing technical post-mortem documents and want to skill-ify it.
216 
217**Step 1: Decide it's a skill.** You write 5+ post-mortems a year, output benefits from consistency, others on the team would use it. Yes, build a skill.
218 
219**Step 2: Trigger.** "When the user wants to write a post-mortem, retrospective, or after-action report. When an incident has happened and we are reviewing what went wrong."
220 
221**Step 3: Description.**
222 
223> "Write a structured post-mortem after an incident, outage, or significant project failure. Use when the user mentions post-mortem, retrospective, after-action report, RCA, or asks 'why did this go wrong' after an incident. Also triggers when the user wants to capture lessons learned from a launch, project miss, or incident debrief. Useful for technical incidents, project retros, and team learning reviews."
224 
225**Step 4: SKILL.md body.** Use the standard structure. Required inputs (timeline, impact, contributors). The framework (Five Whys, contributing factors, action items). Workflow (gather facts, draft, review, distribute). Failure patterns (blame, vague action items, no follow-up).
226 
227**Step 5: References.** A `post-mortem-template.md` with the document structure and a `facilitator-checklist.md` for running the post-mortem meeting.
228 
229**Step 6: Test.** Trigger on "we had an outage yesterday, can you help me write the post-mortem?" Should fire. Trigger on "what is a post-mortem?" Should probably also fire. Trigger on "let's review the quarter". Should not fire (this is a different kind of retro).
230 
231You iterate until the triggers fire correctly, then ship.
232 
233## Failure patterns
234 
235- **Description too narrow.** The skill never fires because your description requires exact phrases the user does not say.
236- **Description too broad.** The skill fires constantly, including for unrelated tasks.
237- **No trigger phrases.** The description describes what the skill does but not when to load it. Triggering is unreliable.
238- **SKILL.md too long.** A 1,000-line SKILL.md defeats the purpose of progressive disclosure. Split into references.
239- **References that duplicate SKILL.md.** If a reference repeats what the body says, prune one.
240- **No "When NOT to use".** Skills that overlap with sibling skills get loaded ambiguously. Cross-reference siblings explicitly.
241- **No examples.** A framework without a worked example is hard to apply. Include at least one in the reference material.
242- **Optimizing for one example.** A skill written around your single use case fails at adjacent ones. Generalize.
243- **No iteration.** Shipping a skill once and never revisiting it. Skills decay. Audit yearly.
244- **Branding or product-specific assumptions in a public skill.** Skills meant to be general should not hardcode your stack. Public skills teach methodology (frameworks, decision criteria, taxonomies, anti-patterns); implementation specifics (specific page architectures, type definitions, component code, framework-specific patterns) belong in internal playbooks. See [`references/methodology-vs-implementation.md`](references/methodology-vs-implementation.md) for the full discipline and the user-outcome reasons it matters.
245 
246## Output format
247 
248When using this skill to create another skill, deliver:
249 
2501. **Trigger analysis**: a short list of phrases and situations that should fire the skill.
2512. **Description draft**: the 2-4 sentence description for the YAML frontmatter.
2523. **SKILL.md body**: the full body of the skill, following the standard structure.
2534. **Reference plan**: a list of reference files to create with one-line descriptions.
2545. **First reference file**: at least one reference written end to end as a starting point.
2556. **Test plan**: 3-5 test prompts that should trigger the skill, plus 2-3 that should not.
256 
257## Reference files
258 
259- [`references/skill-template.md`](references/skill-template.md): A blank SKILL.md template with annotated section guidance, ready to copy and fill in.
260- [`references/description-cookbook.md`](references/description-cookbook.md): A library of description patterns with worked examples for common skill types (audits, templates, frameworks, walkthroughs).
261- [`references/methodology-vs-implementation.md`](references/methodology-vs-implementation.md): What belongs in a public skill, what stays internal, and the user-outcome reasons the discipline matters. The audit pattern and the authoring checklist for keeping skills methodology-pure.
262 

Discussion

Alternatives

Also in Workflow automationSee all 58 in Operations →
Browser Automation SkillWeb browser automation with AI-optimized snapshots for claude-flow agentsCoding · MITWeb Extract — Structured Data from the Open WebExtract structured JSON from web pages, search engines, and entire sites in ONE call — {title, summary, sections, key_metrics, outgoing_links, author, date, page_type, ...} fields, no second LLM pass to parse HTML. Six endpoints: scrape (single URL), scrape-interactive (JS-rendered pages with click/scroll/type), search (Google SERP + deep-scrape), map (URL discovery), crawl + crawl-status (async recursive crawl). Markdown/raw HTML on request. USE when the user needs page DATA — product pricing/specs, article fields, link graphs, JS-heavy SPAs, Google results with content. Prefer over browser-act (automation/screenshots) and WebFetch (static, no JS, no structured fields). Not for citation-rich research (use deep-research). Trigger (EN): scrape this URL, extract data from page, crawl this site, deep-scrape search results, map a domain's URLs, render this JS page. 触发词:抓取/爬取/网页提取/结构化抽取/搜索带内容/全站爬取/JS 渲染抓取/点击后抓取. Requires ZOODATA_API_KEY (free key: https://zoodata.ai/en/api-keys).Sales & ecommerce · MITAI workflow automation specialistAct as an AI Workflow Automation Specialist, guiding users in automating business processes, optimizing workflows, and integrating AI tools effectively.Infrastructure & ops · CC0-1.0Cyber security character workflowThis is a structured image generation workflow for creating cyber security characters. The workflow includes steps such as facial identity mapping, tactical equipment outfitting, cybernetic enhancements, and environmental integration to produce high-quality, cinematic renders. After uploading your face and filling in the values in the fields, your prompt is ready. NOTE: The sample image belongs to me and my brand; unauthorized use of the sample image is prohibited.Creator · CC0-1.0