night-market-validation-and-qa

night-market-validation-and-qa is a skill for Claude Code from athola/claude-night-market. It costs 40 tokens per session (3,301 once invoked), scanned B, original, MIT.

A quality-control guide for deciding what evidence is needed before claiming coding work is complete. It defines test coverage rules, regression checks, and a format for linking each requirement to command output.

In plain words
What is it for?
Use it when adding tests or reporting completion to run checks, record their output, map results to acceptance criteria, and classify work as complete, partial, or blocked.
Why use it?
It prevents unverified “done” claims and tests that pass without actually detecting failures.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/run-plugin-tests.sh --all.

Good fit Use it when adding tests or reporting completion to run checks, record their output, map results to acceptance criteria, and classify work as complete, partial, or blocked.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/athola/claude-night-market
agentmods
npx agentmods add skills/athola/claude-night-market/night-market-validation-and-qa

Made for: Claude Code.

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 night-market-validation-and-qa

README.md
[![agentmods](https://agentmods.dev/badge/skills/athola/claude-night-market/night-market-validation-and-qa/github.svg)](https://agentmods.dev/skills/athola/claude-night-market/night-market-validation-and-qa)
Your own site
<a href="https://agentmods.dev/skills/athola/claude-night-market/night-market-validation-and-qa"><img src="https://agentmods.dev/badge/skills/athola/claude-night-market/night-market-validation-and-qa/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 night-market-validation-and-qa

Your own site · 80×15
<a href="https://agentmods.dev/skills/athola/claude-night-market/night-market-validation-and-qa"><img src="https://agentmods.dev/badge/skills/athola/claude-night-market/night-market-validation-and-qa.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,301 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Agent Snooping · line 264
    Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.
    Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
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.00040 $0.03301
Opus 5 $0.00020 $0.01650
Sonnet 5 $0.00008 $0.00660
Haiku 4.5 $0.00004 $0.00330

Measured 12d ago against content hash 28b0ceaa07de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

night-market-validation-and-qa scanned grade B with 1 finding 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 12d ago.

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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- Quality gate numbers: `cat .claude/quality_gates.json`.
.claude/skills/night-market-validation-and-qa/SKILL.md · 274 lines

How it starts

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

Validation and QA: what counts as evidence here

This skill defines the evidence bar for claiming work complete, the coverage and quality thresholds that gate merges, the golden regression tests that guard settled battles, and the procedure for adding tests. The one-line thesis: a green check proves spec-satisfaction, not correctness, so every completion claim needs cited evidence and every test needs proof it can fail.

The evidence bar

Never claim "should work". Run the thing, capture the output, cite it. The house discipline comes from Skill(imbue:proof-of-work):

  1. Number every piece of evidence: [E1], [E2], each with the exact command and its captured output.
  2. Map each acceptance criterion to evidence with a verdict: Criterion: [E2] -> PASS or -> FAIL.
  3. Give the overall claim one of three statuses: COMPLETE (all criteria passed), PARTIAL (list blockers), BLOCKED (explain why). A blocked task reported as blocked with evidence is a successful report. A guessed "done" is not.
  4. The final response must not contain "should work", "looks right", or any other unverified confidence phrase.

Verifier integrity: never let the generator judge itself

A passing verifier can mislead two ways (from the prover-verifier research, codified in commit 29081fda, module plugins/imbue/skills/proof-of-work/modules/verifier-integrity.md):

Failure mode What it looks like
Wrong spec The check confirms the code matches the spec, not that the spec matches intent
Hollow check assert True, a mock returning the expected value, a stubbed service: all green, all worthless

Rules that follow:

  • The agent that wrote the code must not be the sole judge of whether the code works. Use an independent check: a fresh subagent, the real test suite, a human, or an end-to-end run the generator cannot influence.
  • Validate the spec separately from the code. A machine-checked pass against a wrong spec is confident, green, and wrong.
  • When reviewing a test, ask what change to the code would make it fail. If nothing would, it is not a test.

Read the full file on GitHub · 274 lines

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. 12d ago First seen · 274 lines · 40 tokens per session scan B 28b0ceaa07de

Subscribe to this mod's changes

night-market-validation-and-qa is a skill published in the GitHub repository athola/claude-night-market (337 stars, last pushed yesterday), licensed MIT. It adds 40 tokens to every session and 3,301 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

webapp-testing

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

shajith003/awesome-claude-skills · 35 tokens

validate-album

Validates album directory structure, file locations, and content integrity. Use before release or whenever the user wants to check an album's structural health.

bitwize-music-studio/claude-ai-music-skills · 33 tokens

closer

Anti-premature-"done". Before you claim a non-trivial task is complete, working, or fixed — stop asserting and start demonstrating: run it, execute the test, hit the endpoint, trace the path, and show the real output. "Done" means proven, not believed. If you genuinely can't run it, say exactly what's unverified and…

ccplugins/awesome-claude-code-plugins · 155 tokens

web-browser-automation

Comprehensive macOS browser automation using PyXA, Playwright, Selenium, and Puppeteer for desktop web testing, scraping, and workflow automation. Use when asked to "automate web browsers", "Selenium Chrome automation", "Playwright testing", "Puppeteer scraping", or "cross-browser automation". Supports Chrome, Edge…

SpillwaveSolutions/automating-mac-apps-plugin · 77 tokens

testing-automation-expert

Production-grade testing strategies for robust, maintainable systems. Covers unit/integration/E2E testing, contract testing, accessibility, mutation testing, and CI/CD patterns. Supports Python (pytest) and TypeScript (Jest/Vitest/Playwright).

georgekhananaev/claude-skills-vault · 56 tokens

plan-to-tdd

Transform feature plans into test-driven implementation using Outside-In methodology. This skill should be used when converting documented plans from docs/plan/ into testable code w/ proper test structure (Unit, Integration, E2E).

georgekhananaev/claude-skills-vault · 49 tokens