| name | create-skill |
| description | Scaffold, write, and validate a new Claude Code skill — enforces quality standards derived from 250+ review comments |
| argument-hint | <skill-name> (kebab-case, e.g. deploy-check) |
| allowed-tools | Bash, Read, Write, Edit, Glob, Grep |
/create-skill — Skill Factory
Create a new Claude Code skill with correct structure, robust bash, and built-in quality gates. This skill encodes lessons from 250+ Greptile review comments to prevent the most common skill authoring mistakes.
Arguments
$ARGUMENTS must contain the skill name in kebab-case (e.g. deploy-check)
- If
$ARGUMENTS is empty, ask the user for a skill name before proceeding
Set SKILL_NAME to the provided name. Validate it is kebab-case (^[a-z][a-z0-9]*(-[a-z0-9]+)*$). Reject otherwise.
Phase 0 — Discovery & Pre-flight
Pre-flight: Verify required tools and environment:
for tool in git mktemp; do
command -v "$tool" > /dev/null 2>&1 || { echo "ERROR: required tool '$tool' not found"; exit 1; }
done
git rev-parse --show-toplevel > /dev/null 2>&1 || { echo "ERROR: not in a git repository — run /create-skill from the repo root"; exit 1; }
Parse $ARGUMENTS per the Arguments section above. If validation fails, abort with a clear error.
Discovery: Before writing anything, gather requirements interactively. Ask the user these questions (all at once, not one-by-one):
- Purpose — What does this skill do? (one paragraph)
- Arguments — What CLI arguments should it accept? (e.g.
--fix, --dry-run, <path>)
- Phases — What are the major steps? (bullet list of 3-8 phases)
- Tools needed — Which tools does it need? (Bash, Read, Write, Edit, Glob, Grep, Agent)
- Artifacts — Does it produce output files? If so, where and what format?
- Dangerous operations — Does it modify code, push to git, call external APIs, or delete files?
- Resume/skip support — Should it support
--start-from or --skip-* flags for long-running pipelines?
Wait for the user's answers before proceeding. Do not guess or assume.
Exit condition: Pre-flight passed (git repo confirmed, skill name validated). All 7 questions have answers. Purpose, arguments, phases, tools, artifacts, dangerous ops, and resume support are defined.
Phase 1 — Scaffold
Idempotency guard: Before writing, check for an existing skill:
if [ -f ".claude/skills/$SKILL_NAME/SKILL.md" ]; then
echo "WARN: .claude/skills/$SKILL_NAME/SKILL.md already exists."
echo "Proceeding will overwrite it. Confirm (y) or abort (n)."
fi
Create the skill directory and SKILL.md with frontmatter:
mkdir -p ".claude/skills/$SKILL_NAME"
Write the SKILL.md file starting with this structure:
---
name: $SKILL_NAME
description: <one-line from user's purpose>
argument-hint: "<from user's argument design>"
allowed-tools: <from user's tool list>
---
# /$SKILL_NAME — <Title>
<Purpose paragraph from Phase 0>
## Arguments
- `$ARGUMENTS` parsing rules here
- Set state variables: `DRY_RUN`, `AUTO_FIX`, etc.
## Phase 0 — Pre-flight
```bash
for tool in git mktemp; do # replace with the actual shell commands your skill uses (e.g. jq, python, curl)
# > /dev/null 2>&1: suppress command path on success and shell's "not found" on failure — the || clause provides the error message
command -v "$tool" > /dev/null 2>&1 || { echo "ERROR: required tool '$tool' not found"; exit 1; }
done
# > /dev/null 2>&1: suppress git's own "fatal: not a git repository" — our || message is more actionable
git rev-parse --show-toplevel > /dev/null 2>&1 || { echo "ERROR: not in a git repository"; exit 1; }
```
1. Confirm environment (repo root, required runtime/toolchain version, required tools)
2. Parse `$ARGUMENTS` into state variables
3. Validate preconditions
**Exit condition:** <What must be true before Phase 1 starts, e.g. "git repo confirmed, arguments validated, all required tools present">
## Phase N — <Name>
<Steps>
**Exit condition:** <What must be true before the next phase starts>
## Examples
- <Usage examples showing common invocations and expected behavior>
## Rules
- <Hard constraints>
Structural requirements to include in every skill:
- Phase 0 always exists — pre-flight checks, argument parsing, environment validation
- Every phase has a clear exit condition — what must be true before moving to the next phase
- Arguments section — explicit parsing of
$ARGUMENTS into named state variables
- Rules section — hard constraints at the bottom, kept in sync with the procedure
- Examples section — usage examples showing common invocations and expected behavior
- Artifact definitions — if the skill produces files, specify path, format, and schema
Exit condition: .claude/skills/$SKILL_NAME/SKILL.md exists with valid frontmatter, Phase 0, Arguments section, and Rules section.
Phase 2 — Write the Skill Body
Write each phase following these 17 mandatory patterns (derived from Greptile review findings across 250+ comments):
Pattern 1: No shell variables across code fences
Each fenced code block is a separate shell invocation. Variables set in one block do not exist in the next.
Wrong:
```bash
WORK_DIR=$(mktemp -d)
```
Later:
```bash
rm -rf $WORK_DIR # BUG: $WORK_DIR is empty here
```
Correct: Persist state to a file (use your actual skill name, not a variable).
First ensure the directory exists:
```bash
mkdir -p .codegraph/deploy-check
mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX" > .codegraph/deploy-check/.tmpdir
```
Later:
```bash
rm -rf "$(cat .codegraph/deploy-check/.tmpdir)"
```
Or keep everything in a single code block if the operations are sequential.
Pattern 2: No silent failures
Never use 2>/dev/null without documenting the skip path. Every command that can fail must either:
- Have explicit error handling (
|| { echo "ERROR: ..."; exit 1; })
- Be documented as intentionally tolerant ("this may fail on X, which is acceptable because Y")
Wrong:
```bash
git show HEAD:$FILE 2>/dev/null | codegraph where --file -
```
Correct:
```bash
PREV_FILE=$(mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX.js") # adjust extension to match the language of $FILE; template syntax is portable (macOS + Linux)
trap 'rm -f "$PREV_FILE"' EXIT
# $FILE is expected to be set by the surrounding loop, e.g. for FILE in $(git diff --name-only HEAD); do ... done
# 2>/dev/null: suppress git's "fatal: Path X does not exist in HEAD" — the else branch already warns the user
if git show HEAD:"$FILE" > "$PREV_FILE" 2>/dev/null; then
codegraph where --file "$PREV_FILE"
else
echo "WARN: $FILE is new or unreadable in HEAD — skipping before/after comparison"
fi
rm -f "$PREV_FILE"
trap - EXIT
```
Pattern 3: Temp files need extensions
Codegraph's language detection is extension-based. Temp files passed to codegraph must have the correct extension:
mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX.js"
Pattern 4: No hardcoded temp paths
Use mktemp for temp files, never hardcoded paths like /tmp/skill-output.json. Concurrent sessions or re-runs will collide.
Pattern 5: Stable cross-references
When referencing other steps, use phase names, not numbers. Numbers break when steps are inserted.
Wrong: "Use the results from Step 2"
Correct: "Use the diff-impact results from Phase: Impact Analysis"
Pattern 6: No undefined placeholders
Every variable or placeholder in pseudocode must have a preceding assignment. If a value requires detection, write the explicit detection script — do not use <detected-value> placeholders.
Wrong: "Run <detected-test-command>"
Correct:
Detect the test runner and run in a single block:
```bash
if [ -f "pnpm-lock.yaml" ]; then TEST_CMD="pnpm test"
elif [ -f "yarn.lock" ]; then TEST_CMD="yarn test"
elif [ -f "package.json" ]; then TEST_CMD="npm test"
else echo "WARN: No recognised test runner found — skipping tests"; TEST_CMD="true"; fi
$TEST_CMD
```
Pattern 7: No internal contradictions
Each decision (pass/fail, rollback/continue, skip/run) must be defined in exactly one place. If two sections describe the same decision path, consolidate them and reference the single source.
Pattern 8: Rules ↔ Procedure sync
Every codegraph command or tool invocation in the procedure must be permitted by the Rules section. Every exception in the Rules must correspond to an actual procedure step. After writing, cross-check both directions.
Pattern 9: No command redundancy
If a phase runs a codegraph command and stores the result, later phases must reference that result — not re-run the command. Add a note like: "Using impact_report from Phase: Impact Analysis".
Pattern 10: Skip/resume flag validation
If the skill supports --start-from or --skip-*:
- Skipping a phase must NOT skip its artifact validation
- Add a pre-validation table listing which artifacts are required for each entry point
- Each skip path must be explicitly tested in Phase: Self-Review
Pattern 11: Progress indicators
For any phase that takes longer than ~10 seconds (file iteration, API calls, batch operations), emit progress:
echo "Processing file $i/$total: $FILE"
Never leave the user staring at a silent terminal during long operations.
Pattern 12: Artifact reuse
Before running expensive operations (codegraph build, embedding generation, batch analysis), check if usable output already exists (replace deploy-check with your actual skill name):
```bash
if [ -f ".codegraph/deploy-check/results.json" ]; then
echo "Using cached results from previous run"
else
# run expensive operation
fi
```
This supports both idempotent re-runs and resume-after-failure.
Pattern 13: Platform portability
Avoid shell constructs that behave differently across platforms:
- Use
find ... -name "*.ext" | grep -q . instead of find ... -quit (non-portable) or glob expansion (ls *.ext) which differs between bash versions
- Use
mktemp with template syntax (mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX.ext") — GNU flags like --suffix and -p are not available on macOS BSD mktemp
- Use
sed -i.bak instead of sed -i '' (GNU vs BSD incompatibility)
- Document any platform-specific behavior with a comment:
# NOTE: requires GNU coreutils
Pattern 14: Trap-based cleanup
Any phase that creates temp files or modifies repo state must set a cleanup trap. Without it, errors mid-phase leak temp files or leave dirty state:
TMPFILE=$(mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX.json")
trap 'rm -f "$TMPFILE"' EXIT
trap - EXIT
For phases that cd into a temp directory, clean up both the directory and the working directory change:
WORK_DIR=$(mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX")
trap 'cd - > /dev/null 2>&1; rm -rf "$WORK_DIR"' EXIT
cd "$WORK_DIR"
cd - > /dev/null 2>&1
rm -rf "$WORK_DIR"
trap - EXIT
Pattern 15: Git stash safety
Never rely on $? or stash@{0} after git stash push — modern git (2.16+) returns 0 even when nothing was stashed, and other operations may push to the stash stack between your push and pop.
Wrong:
```bash
git stash push -- package.json
# ... operations ...
git stash pop # BUG: pops wrong entry if stash was no-op or stack changed
```
Correct: Use a named stash with STASH_REF lookup — keep push and pop in one block or persist the ref to a file if other work must happen in between.
Single-block approach (push and pop bracket the work):
```bash
git stash push -m "deploy-check-backup" -- package.json package-lock.json
STASH_REF=$(git stash list --format='%gd %s' | grep 'deploy-check-backup' | head -1 | awk '{print $1}')
# STASH_REF is non-empty only if a stash entry was actually created.
# ... work here ...
[ -n "$STASH_REF" ] && git stash pop "$STASH_REF"
```
If the pop must happen in a later code fence, persist the ref to a file (per Pattern 1):
```bash
mkdir -p .codegraph/deploy-check
git stash push -m "deploy-check-backup" -- package.json package-lock.json
git stash list --format='%gd %s' | grep 'deploy-check-backup' | head -1 | awk '{print $1}' > .codegraph/deploy-check/.stash-ref
```
Later:
```bash
STASH_REF=$(cat .codegraph/deploy-check/.stash-ref)
[ -n "$STASH_REF" ] && git stash pop "$STASH_REF"
rm -f .codegraph/deploy-check/.stash-ref
```
Pattern 16: Division-by-zero guards
Every arithmetic division or percentage computation must guard against zero denominators. Common in benchmark comparisons, complexity deltas, and ratio calculations:
Wrong:
```bash
DELTA=$(( (CURRENT - BASELINE) * 100 / BASELINE ))
```
Correct:
```bash
# $BASELINE and $CURRENT are expected to be set by the surrounding context (e.g. from codegraph stats output)
if [ "$BASELINE" -gt 0 ]; then
DELTA=$(( (CURRENT - BASELINE) * 100 / BASELINE ))
else
DELTA=0 # no baseline — treat as no change
fi
```
Pattern 17: DRY_RUN consistency
If the skill supports --dry-run, every destructive operation must check the flag at the point of action — not just at phase entry. A single phase often mixes reads (always run) and writes (skip in dry-run):
Wrong:
```bash
# Phase skips entirely in dry-run — but the analysis part is useful
if [ "$DRY_RUN" = "true" ]; then exit 0; fi
# ... 50 lines of analysis ...
rm -rf "$OUTPUT_DIR"
```
Correct:
```bash
# $DRY_RUN is expected to be parsed from $ARGUMENTS in Phase 0; $OUTPUT_DIR is set earlier in this phase
# Analysis always runs
codegraph audit --quick src/
# Only the destructive part checks DRY_RUN
if [ "$DRY_RUN" = "true" ]; then
echo "[DRY RUN] Would remove $OUTPUT_DIR"
else
rm -rf "$OUTPUT_DIR"
fi
```
Exit condition: Every phase body in the SKILL.md follows all 17 patterns. No wrong/correct examples remain as actual instructions — only the correct versions.
Phase 3 — Dangerous Operation Guards
If the skill performs dangerous operations (from Phase 0 discovery), add explicit guards:
For git modifications:
- Stage only named files (never
git add . or git add -A)
- Include rollback instructions: "To undo:
git reset HEAD~1" or similar
- For destructive operations (force-push, reset, clean): require explicit confirmation
For file deletions:
- List what will be deleted before deleting
- Use
rm -i or prompt for confirmation in non---force mode
For external API calls:
- Handle network failures gracefully (don't crash the pipeline)
- Add timeout limits
For code modifications:
Exit condition: Every dangerous operation identified in Phase: Discovery has a corresponding guard in the SKILL.md.
Phase 4 — Self-Review Checklist
Before finalizing, audit the SKILL.md against every item below. Do not skip any item. Fix violations before proceeding.
Structure checks:
Anti-pattern checks (all 17 patterns):
Robustness checks:
Completeness checks:
Safety checks:
Read through the entire SKILL.md one more time after checking all items. Fix anything found.
Exit condition: All checklist items pass. The SKILL.md has no unresolved structure, anti-pattern, robustness, completeness, or safety violations.
Phase 5 — Smoke Test
The self-review is purely theoretical — most real issues (wrong paths, shell syntax, missing tools, argument parsing bugs) only surface when you actually try to run the code. Before finalizing, execute these validation steps:
Automated validation
Run both validation scripts against the generated SKILL.md:
LINT_RC=0
bash .claude/skills/create-skill/scripts/lint-skill.sh ".claude/skills/$SKILL_NAME/SKILL.md" || LINT_RC=$?
SMOKE_RC=0
bash .claude/skills/create-skill/scripts/smoke-test-skill.sh ".claude/skills/$SKILL_NAME/SKILL.md" || SMOKE_RC=$?
if [ "$LINT_RC" -ne 0 ] || [ "$SMOKE_RC" -ne 0 ]; then
echo "Validation failed — fix ERRORs before proceeding"; exit 1
fi
lint-skill.sh checks for cross-fence variable bugs, bare 2>/dev/null, hardcoded npm test / npm run test / npm run lint / yarn test / yarn run test / yarn run lint / pnpm test / pnpm run test / pnpm run lint, git add . / git add -- ., missing frontmatter (including name matching directory name), missing Phase 0 / Rules / Examples, missing exit conditions, GNU-only find -quit, hardcoded /tmp/ paths, and sed -i portability issues.
smoke-test-skill.sh extracts every bash code block (skipping example regions inside quadruple backticks) and runs bash -n syntax checking on each.
Fix all ERROR findings. Review WARN findings — fix or annotate with justification.
Phase 0 dry-run
Run the skill's Phase 0 (pre-flight) logic in a temporary test directory to verify:
- Argument parsing works for valid inputs and rejects invalid ones
- Tool availability checks actually detect missing tools (temporarily rename one to confirm)
- Environment validation produces clear error messages on failure
TEST_DIR=$(mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX")
trap 'cd - > /dev/null 2>&1; rm -rf "$TEST_DIR"' EXIT
cd "$TEST_DIR"
git init --quiet
cd - > /dev/null 2>&1
rm -rf "$TEST_DIR"
trap - EXIT
Idempotency check
Mentally trace a second execution of the skill on the same state:
- Does Phase 0 handle pre-existing artifacts (skip, warn, overwrite)?
- Do file-creation steps fail if the file already exists?
- Are
mktemp paths unique across runs (they should be by default)?
Document any idempotency fix applied.
Exit condition: All bash blocks pass bash -n syntax check. Phase 0 logic runs without errors in a test directory. Idempotency is confirmed or fixed.
Phase 6 — Finalize
- Read the final SKILL.md end-to-end and confirm it passes all Phase: Self-Review Checklist checks and Phase: Smoke Test validations
- Show the user the complete skill for review
- Ask: "Ready to commit, or want changes?"
If the user approves:
- Stage only
.claude/skills/$SKILL_NAME/SKILL.md (and any scripts in .claude/skills/$SKILL_NAME/scripts/ if created)
- Commit:
feat(skill): add /$SKILL_NAME skill
Exit condition: User has approved the skill. .claude/skills/$SKILL_NAME/SKILL.md is committed to the repo.
Examples
/create-skill deploy-check — scaffold a deployment validation skill that runs preflight checks before deploying
/create-skill review-pr — scaffold a PR review skill with API calls and diff analysis
/create-skill db-migrate — scaffold a database migration skill with dangerous-operation guards and rollback paths
Rules
- Never write the skill without Phase 0 discovery answers. The user must describe what they want before you write anything.
- Never skip the self-review checklist or smoke test. Phase: Self-Review Checklist and Phase: Smoke Test are both mandatory, not optional.
- Phase names over step numbers. All cross-references in the generated skill must use phase names.
- One skill = one concern. If the user's requirements span multiple unrelated workflows, suggest splitting into separate skills.
- No co-author lines in commit messages.
- No Claude Code references in commit messages or the skill body.
- Persist temp state to files, not shell variables when it must survive across code fences.
- Test commands must be detected, not assumed. Never hardcode
npm test, npm run test, npm run lint, yarn test, yarn run test, yarn run lint, pnpm test, pnpm run test, or pnpm run lint — detect the package manager first.
- Every
2>/dev/null needs a justification comment in the generated skill.