From loopkit
Establishes Claude Code's skill invocation protocol for loopkit-enabled projects, requiring relevant skill checks before any response or action.
How this skill is triggered — by the user, by Claude, or both
Slash command
/loopkit:using-loopkitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<EXTREMELY-IMPORTANT>
IF A SKILL APPLIES, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
This overrides "just answer quickly" instincts. Not negotiable.
Invoke relevant skills BEFORE any response or action — including clarifying questions, exploring the codebase, or reading files. If it turns out wrong for the situation, drop it.
Then announce "Using [skill] to [purpose]" and follow the skill exactly. If it has a checklist, create a todo per item.
Skills are files at .claude/skills/<name>/SKILL.md. Each has YAML frontmatter with name and description (the description is a trigger phrase, not a summary). Load a skill by reading its SKILL.md when its trigger matches your task.
| Task shape | First skill |
|---|---|
| "Fix this bug" / test failing / crash | systematic-debugging, then read-the-trace |
| "It broke between two commits" | bisect-regression |
| "Flaky test" | flaky-hunter |
| "Add a feature" / write anything new | spec-first, then write-failing-test-first |
| "Refactor" / dead code / deep nesting | kill-dead-code, simplify, reduce-nesting |
| About to claim done / commit / open PR | adversarial-verify + verification-before-completion + self-eval-bias |
| Review a diff | adversarial-verify, pr-from-diff |
| Frontend / UI work | design-system, a11y-pass, loading-empty-error-states |
| Security touch | owasp-review, authz-check, input-validation, secret-scan, dependency-audit |
| Data / SQL / migrations | sql-review, migration-writer, schema-diff |
| Docs / changelog / README | changelog-from-diff, decision-record, readme-audit |
| Git ops | clean-commits, pr-from-diff, rebase-safely, revert-surgical |
| Test suite gaps | coverage-gaps, contract-test |
| Running out of context | context-budget, tool-restraint |
| Parallel work | subagent-fanout |
| Starting a fresh project / major feature | planner-spec-expand, then feature-list-json, then init-script-contract |
| Bootstrapping into an existing multi-session project | progress-reading-protocol |
| Entering an implementation sprint | sprint-contract |
| Calibrating a reviewer / evaluator | evaluator-calibration |
| New Claude/Sonnet/Opus model landed | harness-stripping |
Full list: ls .claude/skills/.
| Thought | Reality |
|---|---|
| "This is just a simple question" | Questions are tasks. Check first. |
| "Let me explore the codebase first" | Skills tell you HOW to explore. Check first. |
| "I remember this skill" | Skills evolve. Read the current SKILL.md. |
| "The skill is overkill" | Simple things become complex. Use it. |
| "I'll just do this one thing first" | Check BEFORE doing anything. |
| "Tests pass, we're good" | verification-before-completion says: run the exact command, read the output, then claim. |
| "I'll do both features while I'm in here" | single-feature-discipline says: one per session. Never two. |
| "The reviewer will let this slide" | self-eval-bias says: assume it will confidently praise. Calibrate first. |
Process skills first (spec-first, systematic-debugging, planner-spec-expand, sprint-contract), then implementation skills (design-system, sql-review, etc.), then finishers (adversarial-verify, verification-before-completion, self-eval-bias, clean-commits).
planner-spec-expand → feature-list-json → sprint-contract → domain skills → adversarial-verify.systematic-debugging → read-the-trace → fix → verification-before-completion.progress-reading-protocol → sprint-contract → work.Every new skill in loopkit ships as a folder with four required files. No exceptions — a skill without these is a draft, not a release.
skills/<skill-name>/
SKILL.md # the skill itself (frontmatter + procedure)
POST.md # ~200-word X-thread-shaped explainer
evidence/
before.md # verbatim transcript WITHOUT the skill loaded
after.md # same prompt WITH the skill loaded
SKILL.md — routed on its frontmatter description. Body under ~150 lines.POST.md — the announcement thread. Copy from template/POST.md, fill in every placeholder before publishing.evidence/before.md + evidence/after.md — one real task, both transcripts. The before/after pair is the receipt that the skill actually changes behaviour. If you cannot produce it, the skill is not ready; land it as a draft and merge once the evidence is real.Bootstrap a new skill by copying template/ verbatim:
cp -r template skills/<skill-name>
Then edit SKILL.md, write POST.md, and capture the before/after pair.
CLAUDE.md, AGENTS.md, and direct user requests override loopkit skills. Only skip a skill workflow when the user has explicitly said to.
npx claudepluginhub archive228/loopkitEstablishes the skill invocation protocol for Claude Code: invoke any relevant skill before responding, even with 1% chance of applicability. Must be loaded at conversation start.
Discovers and invokes agent skills by mapping tasks to development phases. Use when starting a session or choosing the right skill for your current task.
Mandatory workflow for finding and loading skills at conversation start. Use when starting any task to ensure relevant skills are applied.