awesome-regression-sweep

awesome-regression-sweep is a skill for Claude Code from khasky/awesome-agent-skills. It costs 153 tokens per session (3,593 once invoked), scanned A, original, MIT.

A read-only check of a codebase and its live surfaces for regressions, meaning changes that break behavior that previously worked. It compares layered checks with a recorded baseline and reports the differences.

In plain words
What is it for?
Use it for type checks, linting, generated-artifact drift, unit and integration tests, black-box API contracts, parity between implementations, consumer builds, deployment verification, infrastructure checks, and scheduled-job health.
Why use it?
A passing unit test does not prove that generated files, deployed code, network formats, implementations, downstream builds, or scheduled jobs still agree. The sweep checks these separate failure points without deploying or writing to production.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the awesome-agent-skills plugin — 42 skills shipped together

Good fit Use it for type checks, linting, generated-artifact drift, unit and integration tests, black-box API contracts, parity between implementations, consumer builds, deployment verification, infrastructure checks, and scheduled-job health.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khasky/awesome-agent-skills/awesome-regression-sweep
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add khasky/awesome-agent-skills --skill awesome-regression-sweep
Clone the repo
git clone --depth 1 https://github.com/khasky/awesome-agent-skills

Made for: Claude Code.

Or install awesome-agent-skills, the plugin that ships this one along with the rest of its 42 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for awesome-regression-sweep

README.md
[![agentmods](https://agentmods.dev/badge/skills/khasky/awesome-agent-skills/awesome-regression-sweep/github.svg)](https://agentmods.dev/skills/khasky/awesome-agent-skills/awesome-regression-sweep)
Your own site
<a href="https://agentmods.dev/skills/khasky/awesome-agent-skills/awesome-regression-sweep"><img src="https://agentmods.dev/badge/skills/khasky/awesome-agent-skills/awesome-regression-sweep/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for awesome-regression-sweep

Your own site · 80×15
<a href="https://agentmods.dev/skills/khasky/awesome-agent-skills/awesome-regression-sweep"><img src="https://agentmods.dev/badge/skills/khasky/awesome-agent-skills/awesome-regression-sweep.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 153 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,593 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00153 $0.03593
Opus 5 $0.00077 $0.01796
Sonnet 5 $0.00031 $0.00719
Haiku 4.5 $0.00015 $0.00359

Measured today against content hash 5053b380b91e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

awesome-regression-sweep scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/http-contract.mjs, scripts/sweep.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/awesome-regression-sweep/SKILL.md · 266 lines

How it starts

The opening of the file, as written. The whole thing — 266 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Regression Sweep

One question — did anything break — answered in layers, because the layers fail differently. A green unit suite says nothing about a byte format two independent implementations have to agree on; a passing suite says nothing about whether the code that is deployed is the code you tested; and a green working tree says nothing about the scheduled job that stopped running last night.

Everything here is read-only. No deploy, no database write, no mutating admin call, no destructive suite against production. When a check would need one, say so and stop rather than doing it.

Reference files (load the one the run needs):

Scripts (Node ≥18, no dependencies):

  • scripts/sweep.mjs — runs the aspect list from a config: one line per aspect, deltas against a stored baseline, per-aspect timeouts, output assertions for tools whose exit code lies, and a SKIP where a prerequisite is absent.

  • scripts/http-contract.mjs — black-box probe of a public read endpoint: cache-key canonicalization, validation before work, CORS, ETag/304, HEAD parity, security headers.

  • Other runtimes — the runner is Node so one file works on every platform; the aspects it runs are the project's own commands, whatever the stack (cargo test, go vet, pytest, mvn verify, dotnet build). If the project has no Node toolchain, run the aspect table by hand and keep the baseline in a text file — the runner is convenience, the table is the contract.

Scope and prerequisites

Read the full file on GitHub · 266 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed 5053b380b91e
  2. 5d ago Changed · +9 lines · -69 tokens per session 3c0a7980e244
  3. 11d ago First seen · 257 lines · 222 tokens per session scan A 0ad916c75a12

Subscribe to this mod's changes

awesome-regression-sweep is a skill published in the GitHub repository khasky/awesome-agent-skills (8 stars, last pushed today), licensed MIT. It adds 153 tokens to every session and 3,593 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

test-driven-development

Drives development with tests using the red-green-refactor loop. Use when implementing any logic, fixing any bug, or changing any behavior. Use when you need to prove that code works, when a bug report arrives, or when you're about to modify existing functionality.

addyosmani/agent-skills · 57 tokens

browser-testing-with-devtools

Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be…

addyosmani/agent-skills · 68 tokens

verification-before-completion

A checklist for verifying work before claiming that it is finished, fixed, built, tested, or ready to submit. It requires fresh command output and evidence for each claim.

jnMetaCode/superpowers-zh · 50 tokens

writing-skills

A guide for creating and testing reusable instructions for AI agents, called skills. It applies test-driven development, or TDD—the practice of writing tests before implementation—to instruction documents.

jnMetaCode/superpowers-zh · 23 tokens

test-driven-development

Test-driven development, or TDD, is a way to build software by writing a test that fails, adding the smallest code that makes it pass, and then cleaning up the code. These instructions require that process for features, bug fixes, refactors, and behavior changes.

jnMetaCode/superpowers-zh · 20 tokens

skillshare-implement-feature

Implement a feature from a spec file or description using TDD workflow. Use this skill whenever the user asks to: add a new CLI command, implement a feature from a spec, build new functionality, add a flag, create a new internal package, or write Go code for skillshare. This skill enforces test-first development…

runkids/skillshare · 114 tokens