ngmeyer/skills

skillforge

Forge new Claude Code skills or optimize existing ones to V2.

Zobacz źródło
Oryginalny dokument Skill

Treść z repozytorium z zachowaniem nagłówków, przykładów, kodu, tabel, linków i obrazów.

Skillforge — write and optimize Claude Code skills the right way

For full Anthropic-authoritative guidance (frontmatter fields, 500-line budget, dynamic context injection, testing framework, anti-patterns, the 9 skill types, the 5 workflow patterns), load: references/anthropic-skill-best-practices.md.

Two modes

ModeUse forOutput
forge (default)A new skill that doesn't exist yetA new skill dir, drafted per the process below
optimizeAn existing skill that works but should be betterA V2 of that skill — measurably better at its outcome

`forge` follows the process + checklist in the rest of this file.

`optimize <skill>` runs a metric-driven loop: define the outcome + metric → set gates (incl. a no-cheating audit) → quality audit → research the domain for outcome-improving techniques → synthesize V2 with a changelog → verify V2 beats V1 on a held-out benchmark, not a single example, discarding any candidate that fails a gate. "Optimize," not "tidy": a cleanup that doesn't move the outcome is not a V2, and a score that jumped by gaming the rubric is a regression. The loop is self-contained; for a heavy run (many hypotheses, parallel experiments, hours) you can optionally escalate to an external optimizer if you have one (ce-optimize plugin, evo, or Microsoft's SkillOpt). Full playbook: references/optimize-mode.md.

Meta-process: iterate first, extract second

Anthropic's recommended creation flow: iterate on a single challenging task until Claude succeeds, then extract the winning approach into a skill. Don't write skills for hypothetical future needs. Solve the real problem in conversation, find the prompt + context shape that works, freeze it.

Process

  1. Gather requirements - ask user about:
  • What task/domain does the skill cover?
  • What specific use cases should it handle? (Surface a real recent example.)
  • Does it need executable scripts or just instructions?
  • Any reference materials to include?
  • Any side effects (deploy, commit, send-message)? → set disable-model-invocation: true
  • Tools that would otherwise prompt? → list in allowed-tools:
  1. Draft the skill - create:
  • SKILL.md with concise instructions (target ≤100 lines locally; Anthropic's public bar is 500)
  • references/ files for detail that doesn't need to load on every invoke
  • scripts/ for deterministic helpers (sorting, validation, format conversion)
  1. Review with user - present draft and ask:
  • Does this cover your use cases?
  • Anything missing or unclear?
  • Should any section be more/less detailed?

Skill Structure

skill-name/
├── SKILL.md           # Main instructions (required)
├── REFERENCE.md       # Detailed docs (if needed)
├── EXAMPLES.md        # Usage examples (if needed)
└── scripts/           # Utility scripts (if needed)
    └── helper.js

SKILL.md Template

md
---
name: skill-name
description: Brief description of capability. Use when [specific triggers].
---

# Skill Name

## Quick start

[Minimal working example]

## Workflows

[Step-by-step processes with checklists for complex tasks]

## Advanced features

[Link to separate files: See [REFERENCE.md](REFERENCE.md)]

Description Requirements

The description is the only thing your agent sees when deciding which skill to load. It's surfaced in the system prompt alongside all other installed skills. Your agent reads these descriptions and picks the relevant skill based on the user's request.

Goal: Give your agent just enough info to know:

  1. What capability this skill provides
  2. When/why to trigger it (specific keywords, contexts, file types)

Format:

  • Max 1,536 chars (combined description + when_to_use)
  • Write in third person
  • First sentence: what it does
  • Second sentence: "Use when [specific triggers]"
  • Anti-pattern: narrative summary ("This skill does A, B, and C") fails the routing test. Write decision rules.

Good example:

Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when user mentions PDFs, forms, or document extraction.

Bad example:

Helps with documents.

The bad example gives your agent no way to distinguish this from other document skills.

When to Add Scripts

Add utility scripts when:

  • Operation is deterministic (validation, formatting)
  • Same code would be generated repeatedly
  • Errors need explicit handling

Scripts save tokens and improve reliability vs generated code.

When to Split Files

Split into separate files when:

  • SKILL.md exceeds 100 lines
  • Content has distinct domains (finance vs sales schemas)
  • Advanced features are rarely needed

Gotchas section (mandatory for production skills)

Anthropic: "the highest-signal content in any skill — the diff between 60% reliability and 95% reliability." Build it from real failures, not anticipation. One-line failure mode + one-line workaround. Update on every recurring miss. A production skill without a Gotchas section is leaving the reliability win on the table.

Testing the skill

Three stages, per Anthropic:

  1. Triggering — does it fire when it should? Does it not fire when it shouldn't? (Test prompts both inside and outside the trigger condition.)
  2. Functional — given a known input, does it produce the expected output? Edge cases handled?
  3. Performance — same task with vs. without the skill. If with-skill doesn't beat without, the skill isn't earning its slot.

Review Checklist

After drafting, verify:

  • [ ] Description includes triggers ("Use when...") and is ≤1,536 chars
  • [ ] SKILL.md under 100 lines (local target; Anthropic's public bar is 500)
  • [ ] Frontmatter declares allowed-tools if the skill needs specific ones
  • [ ] disable-model-invocation: true set if the skill has side effects
  • [ ] Gotchas section present (or marked as TODO with first failure)
  • [ ] No time-sensitive info
  • [ ] Consistent terminology
  • [ ] Concrete examples included
  • [ ] References one level deep
  • [ ] No claude or anthropic in skill name; no README.md in folder

Changelog

V2.2 (2026-05-29) — added SkillOpt + train/val split

  • Added Microsoft SkillOpt (MIT, arxiv 2605.23904) as a third optional external escalation alongside ce-optimize and evo. SkillOpt trains markdown skills NN-style (epochs / mini-batches / validation gates) against standardized benchmarks (SearchQA, ALFWorld, DocVQA, SpreadsheetBench, OfficeQA). Best fit for benchmark-driven rigor; ce-optimize for in-session workflow; evo for parallel/tree-search architecture.
  • Sharpened the verify step (#6) with a train/validation split — divide the held-out benchmark into a tuning subset (which iterating may overfit to) and a validation subset (never seen by the change process). If validation regresses while tuning improves, the change overfit; drop it. Borrowed from SkillOpt's discipline.
  • Reframed the hand-run loop honestly: "one epoch, batch of one" — small, fast, useful for one-skill V2s; escalate when you want real training.

V2.1 (2026-05-28) — merged ce-optimize discipline

Evolved optimize mode by merging the metric-driven rigor of `ce-optimize` (CE plugin) and `evo` (alokbishoyi97, evo-hq.com):

  • Added a gates step (degenerate gates + no-cheating audit + held-out check) — discard any candidate that fails a gate even if it scored best. Closes the "gamed metric" hole the prior loop had.
  • Verify now uses a held-out benchmark (~10–20 tasks), not a one-off — fixes the N=1 weakness in the council-review A/B.
  • Added optional external escalation: for heavy runs (many hypotheses / parallel experiments / hours), optionally hand off to an external optimizer (ce-optimize plugin or evo, evo-hq.com) if installed; skillforge stays self-contained and keeps the unique outcome-research + skill-quality-audit front end.

V2 (2026-05-27)

  • Added `optimize` mode (forge new vs optimize existing-to-V2). Optimize runs a metric-driven loop — define outcome + metric, quality audit, domain outcome-research, synthesize V2 + changelog, verify V2 beats V1 — so a "V2" must measurably improve the outcome, not just the packaging. Playbook: references/optimize-mode.md.
  • Dogfooded across 7 skills (council-review pilot + a 6-skill batch), which is what promoted skillforge out of in-progress/.
z tego samego repozytorium

Więcej Skills

Wszystkie Skills
ngmeyer
Społeczność

rigorous-review

Audit a web codebase for security, performance, correctness, and refactoring improvements WITHOUT changing any outward-facing behavior. Fans out parallel read-only reviewers, scores findings on two axes (severity × confidence), suppresses predictable false positives, validates survivors with an INDEPENDENT wave (not self-recheck), classifies safe vs. gated, and writes a report. Applies only behavior-preserving fixes, and only on request. Use when: 'rigorous review', 'hardening audit', 'security and performance audit', 'internal audit', 'harden the codebase', 'audit for security/perf/refactoring', 'tech-debt audit', 'review this codebase without changing behavior'.

instalacje
1
GitHub Stars
4
Aktualizacja
29 lip
ngmeyer
Społeczność

session-close

Reconcile session outcomes into persistent project memory files. Updates project state, backlog, and status via section-aware merging -- not a session dump. Use at the end of any significant work session. Use when: 'session close', 'close session', 'save session', 'update memory', 'wrap up', 'end of session', or before ending a big session.

instalacje
1
GitHub Stars
4
Aktualizacja
29 lip
ngmeyer
Społeczność

session-recover

Recover lost Claude Code session context by merging duplicate project directories. Finds session/memory dirs under ~/.claude/projects/ that point at the same logical project from different cwd-encoded paths (e.g. /mnt/work/foo vs ~/Projects/foo cwd produces two separate namespaces). Unifies memory into the canonical dir, archives orphaned jsonl transcripts, and captures the lesson as a feedback memory so the split doesn't repeat. Use when: 'merge sessions', 'recover lost context', 'fix duplicate session dirs', 'session memory split', 'memory dir is empty but I added things', 'two project dirs', 'recover legacy memories from before a folder move', 'stale orphan memory namespace', or any time you find a populated memory dir at the "wrong" path and an empty one at the canonical path.

instalacje
1
GitHub Stars
4
Aktualizacja
29 lip
ngmeyer
Społeczność

six-pager

Generate decision memos and product launch documents in Amazon's narrative style. Two modes: memo produces a 6-page narrative memo (Introduction, Goals, Tenets, State of Business, Lessons Learned, Strategic Priorities + unlimited appendix); prfaq produces a Press Release + External FAQ + Internal FAQ for product launches (work backwards from launch). Enforces Strunk's prose rules (active voice, concrete language, omit needless words, no qualifiers, parallel construction, topic-sentence paragraphs, no overstatement) and Anthropic's removability discipline at the line level. Use when: 'six pager', '6-pager', 'amazon memo', 'narrative memo', 'PRFAQ', 'press release', 'work backwards', 'decision memo', 'strategy doc', 'launch document', 'silent read doc', before any decision big enough to warrant the week-long writing process.

instalacje
1
GitHub Stars
4
Aktualizacja
29 lip