Skip to content
Testing
Skill

/skillci-guardrails

Use this skill whenever you create, edit, or review a Claude Skill — any SKILL.md file, or the eval cases/config next to one. Most SKILL.md files today are written or edited by an agent, not typed by hand, so this closes the loop by having the agent that just wrote the skill

From plugin
skillci
81 skill
Install
$ npx -y skills add kabirnarang39/skillci --skill skillci-guardrails --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/skillci-guardrails

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use this skill whenever you create, edit, or review a Claude Skill — any SKILL.md file, or the eval cases/config next to one. Most SKILL.md files today are written or edited by an agent, not typed by hand, so this closes the loop by having the agent that just wrote the skill

SKILL.md

skillci-guardrails.SKILL.md
name: skillci-guardrails
description: Use this skill whenever you create, edit, or review a Claude Skill — any SKILL.md file, or the eval cases/config next to one. Most SKILL.md files today are written or edited by an agent, not typed by hand, so this closes the loop by having the agent that just wrote the skill also author it defensively and verify it, the same way a linter and test suite run after any other code change. Trigger phrases include "write a skill", "create a SKILL.md", "add a new skill", "edit this skill", "update the skill's frontmatter/description/triggers", or any diff that touches a SKILL.md path.

skillci guardrails

A `SKILL.md` is code: its frontmatter is an API, its body is an executable instruction set. It fails silently — a model just quietly does the wrong thing — rather than loudly, which makes both authoring it defensively and verifying it after the fact more important than for ordinary code, not less.

Step 1 — Author defensively, don't just lint afterward

These map directly to skillci's own static checks, so getting them right up front means Step 2 finds nothing instead of catching it after the fact:

  • **`description`** is the single field that decides whether this skill

gets discovered and triggered at all — state what it does *and* when to use it, in language close to how a user would actually phrase the request. Keep it under 1024 characters (skillci flags longer — it eats into every caller's trigger-matching budget).

  • **Never instruct piping a downloaded script straight into a shell

interpreter**, and never reference an unpinned `:latest`/`@latest` dependency — OWASP AST01/AST02, both real risk, not just lint noise.

  • **Don't request network access to non-localhost hosts** unless the

skill's purpose requires it (AST03).

  • **Never fetch remote content and tell the model to treat it as

authoritative instructions** (AST05) — use frontmatter's `pinned_sources` (a declared `sha256`, verifiable on request) instead.

  • **Keep the body lean**: under ~8000 characters, no exact-duplicate

lines, no more than ~10 referenced files or ~100KB combined. Every extra line loads on every invocation.

Step 2 — Verify

Prefer calling skillci's own MCP tools directly if available in this session (`check`, `eval`, ...) over shelling out. Fall back to the CLI otherwise:

skillci check <path-to-skill-dir>

1. **Always run `check`** — local-only, free, no API calls. Fix every finding, including Minor ones. If the repo pilots skillci non-blocking, `--mode warn` (or `.skillci.yaml`'s `lint.mode`) reports without failing — still read and act on the output. 2. **If eval cases exist, run `eval`** — confirms a trigger/behavior change actually works, not just that it reads plausibly. 3. **If eval cases don't exist and the skill is non-trivial, write at least one first.** "Non-trivial" means: more than one trigger condition, any security-relevant behavior, or reuse beyond this session. 4. **If skillci isn't installed**: `go install github.com/kabirnarang39/skillci/cmd/skillci@latest` (or see https://github.com/kabirnarang39/skillci#install). Install it, don't skip verification.

Step 3 — Pick the right assertion for a new eval case

Don't reach for the heaviest tool by default — match the assertion to what actually needs checking:

| The skill... | Reach for | |---|---| | Should fire on certain phrasings | `triggered: true` | | Must produce specific required text | `contains: [...]` | | Must never produce certain text | `not_contains: [...]` | | Needs subjective/quality judgment a substring match can't express | `judge:` (named rubric criteria, scored by a separate model) | | Fetches/executes untrusted content, or is otherwise security-sensitive | `redteam:` (named attack plugins across the injection, jailbreak, pii, harmful, and agency categories — see the redteam plugin table in skillci's README for the current list) | | Needs to hold up under realistic rewording, not just the exact prompt you tested | `fuzz: true` (add `fuzz_llm: true` for model-generated paraphrases, cached once) | | Must not silently change behavior on a model update | `snapshot: true` | | Has a real cost/latency/token budget to enforce | `max_cost_usd` / `max_latency_ms` / `max_tokens_loaded` |

A minimal but real example:

name: "haiku-request-triggers"
prompt: "Can you write me a haiku about autumn leaves?"
skill_under_test: "haiku-writer"
assert:
  triggered: true
  contains: ["autumn"]

Step 4 — Beyond check/eval: the rest of the toolkit

check and eval are the two you'll reach for almost every time, but know the rest of the surface exists — call these as MCP tools where available, or the equivalent CLI command otherwise:

  • **`init <path>`** — scaffolds `.skillci.yaml` and an example eval case.

Check it doesn't already exist first; run once, the first time a skill gets eval coverage.

  • **`regress <path>`** — the full model-matrix run CI actually gates on,

diffed against the last known-good run, failing only on a *new* regression. Normally CI's job, not something to trigger speculatively — but the command to add when wiring up CI for a skill the first time.

  • **`fuzz <path>`** — just the fuzz-enabled cases in isolation, without a

full eval pass.

  • **`bisect <case-name> --path <path>`** — finds which commit broke a

known-failing case, binary-searching real git history via a `git worktree`. Needs the skill inside a git repo with real commits.

  • **`accept <case-name> --path <path>`** — promotes a `regress`-generated

case (or, with `--model`, a pending snapshot change) into permanent coverage. Read what it asserts first — it's evidence a regression happened, not automatically correct behavior to lock in.

  • **`diff <case-name> --path <path>`** — shows a pending snapshot change

against its golden baseline without accepting it.

  • **`badge <path>`** — regenerates the SVG status badge; `regress` alr
Read more
Ships withskillci

Regression testing for Claude Skills. When a model update silently changes how your skill behaves, SkillCI catches it in CI — and turns the failure into a permanent test case, automatically.

Get the whole plugin
Stats
8
Stars
2
Forks
Maintained
Maintenance
Go
Language
Apache-2.0
License
1mo ago
Last commit
1mo ago
Created

Repo: kabirnarang39/skillci