From create-workflow
Generate .claude/skills/ definitions — the capability layer of the workflow system. Identifies recurring workflows and creates SKILL.md files that agents execute and workflows compose. Invoked by scaffold or standalone via /generate-skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/create-workflow:generate-skillsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produce `.claude/skills/<name>/SKILL.md` files for recurring workflows identified during the grill.
Produce .claude/skills/<name>/SKILL.md files for recurring workflows identified during the grill.
Skills are the capabilities — the procedures that agents execute and workflows compose into pipelines. Each skill is a reusable building block. Agents use skills to accomplish their responsibilities. Workflows chain skills into end-to-end automation.
Skills (capabilities)
← Identified from grill decisions + workflow design
→ Executed by Agents (specialist knowledge)
→ Composed by Workflows (pipeline steps)
→ Triggered by Users (slash commands)
Scan results, grill decisions, and the workflow design that determines what capabilities the system needs. Read .claude/scaffold-decisions.md if it exists — this is the primary source for resolved grill decisions. Skills emerge from:
During the grill, listen for:
Each skill at .claude/skills/<name>/SKILL.md:
---
name: <kebab-case-name>
description: <what the skill does and when to use it — max 1024 chars>
---
Body follows progressive disclosure:
disable-model-invocation: true for skills with side effects (deploy, publish, etc.)$ARGUMENTS for skills that accept input| Pattern | Example | Triggers |
|---|---|---|
| Verify/validate | /verify — run all checks before commit | User says "before I commit I always..." |
| Deploy | /deploy-staging — deploy to staging env | User describes deployment process |
| Review | /review — structured code review checklist | User has specific review criteria |
| Generate | /generate-component — scaffold new component | User has boilerplate patterns |
| Debug | /debug-<system> — systematic debugging for specific system | User describes recurring debug patterns |
/generate-skills — scan + grill + generate skills.
$ARGUMENTS:
--list — List candidate skills without generating--name=verify,deploy — Generate only specified skills--quick-grill — Abbreviated interrogation (3-5 questions)npx claudepluginhub zpankz/create-workflow --plugin create-workflowCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.