gauntlet-curate

gauntlet-curate is a skill for Claude Code from athola/claude-night-market. It costs 34 tokens per session (994 once invoked), scanned A, original, MIT.

A coverage-review tool for a bank of data-structures-and-algorithms problems. It compares the current problem counts with expected counts and proposes YAML entries for human review.

In plain words
What is it for?
Use it to audit the DSA problem bank and suggest problems for categories that need more coverage.
Why use it?
A problem bank can leave some algorithm topics underrepresented. This identifies those gaps before the bank is refreshed.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/curate_problems.py data/problems/ --output /tmp/gauntlet-curate-report.md.

Part of the gauntlet plugin — 7 skills, 6 commands, 1 agent shipped together

Good fit Use it to audit the DSA problem bank and suggest problems for categories that need more coverage.

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/gauntlet-curate

Made for: Claude Code.

Or install gauntlet, the plugin that ships this one along with the rest of its 7 skills, 6 commands, 1 agent.

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 gauntlet-curate

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/athola/claude-night-market/gauntlet-curate"><img src="https://agentmods.dev/badge/skills/athola/claude-night-market/gauntlet-curate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 994 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.00034 $0.00994
Opus 5 $0.00017 $0.00497
Sonnet 5 $0.00007 $0.00199
Haiku 4.5 $0.00003 $0.00099

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

Security

Grade A, and why

gauntlet-curate 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 9d 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.

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.

plugins/gauntlet/skills/gauntlet-curate/SKILL.md · 129 lines

How it starts

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

Gauntlet Curate

Survey the DSA problem bank, identify coverage gaps, and propose new YAML entries for human review.

When NOT To Use

  • Annotating this codebase rather than the problem bank (use gauntlet:curate)
  • Rebuilding the knowledge base (use gauntlet:extract)

When This Skill Fires

Invoke this skill manually with Skill(gauntlet:gauntlet-curate) when the problem bank needs a coverage review. The skill is intended to participate in /update-plugins runs but is not yet wired into that command (see openpackage.yml registration). It is distinct from gauntlet:curate, which handles per-annotation knowledge capture and is what /gauntlet-curate invokes today.

Steps

  1. Locate the problem bank at plugins/gauntlet/data/problems/. Read _manifest.yaml to load the expected NeetCode counts per category.

  2. Survey current coverage by counting problems in each YAML file (skipping _manifest.yaml). Run the analysis script:

    cd plugins/gauntlet
    python scripts/curate_problems.py data/problems/ --output /tmp/gauntlet-curate-report.md
    
  3. Identify gaps: categories whose actual count falls below the neetcode_count in the manifest. The script sorts gaps largest-first so the worst shortfalls appear at the top.

  4. Review existing problems in each gap category to understand what is already covered before proposing additions.

  5. Propose new YAML entries following the schema below. Add proposals to the report under "Proposed New Problems". Do NOT write proposals directly into data/problems/*.yaml.

  6. Validate proposals by running:

    python -c "
    import yaml, sys
    sys.path.insert(0, 'src')
    from gauntlet.models import BankProblem
    proposals = yaml.safe_load(open('proposals.yaml'))
    for p in proposals:
        BankProblem.from_dict(p)
    print('All proposals valid.')
    "
    
  7. Present the report to the human for review. The report includes the coverage table, gap list, and proposed entries. The human decides which proposals to merge into the YAML files.

Read the full file on GitHub · 129 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. 9d ago First seen · 129 lines · 34 tokens per session scan A 1ece8c6f6bd5

Subscribe to this mod's changes

gauntlet-curate is a skill published in the GitHub repository athola/claude-night-market (337 stars, last pushed yesterday), licensed MIT. It adds 34 tokens to every session and 994 once invoked, about $0.0002 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-09-03.