plugins/gauntlet/skills/gauntlet-curate/SKILL.md
Audits the DSA problem bank for coverage gaps and proposes new YAML entries. Use when refreshing the problem bank during update-plugins runs.
npx skillsauth add athola/claude-night-market gauntlet-curateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Survey the DSA problem bank, identify coverage gaps, and propose new YAML entries for human review.
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.
Locate the problem bank at plugins/gauntlet/data/problems/.
Read _manifest.yaml to load the expected NeetCode counts per
category.
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
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.
Review existing problems in each gap category to understand what is already covered before proposing additions.
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.
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.')
"
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.
Each proposed entry must follow this schema:
- id: category-NNN
title: Problem Title
difficulty: easy # easy | medium | hard | extra_hard
prompt: |
Problem statement with constraints and examples.
hints:
- First hint.
- Second hint.
solution_outline: |
Approach and time/space complexity.
tags: [tag1, tag2]
neetcode_id: neetcode-NNN
challenge_type: explain_why # explain_why | multiple_choice | trace
# | code_complete | debug | rank
Required fields: id, title, difficulty, prompt.
Optional fields default to empty values.
data/problems/ directly.--write or --fix flag: the script
intentionally has none.A markdown report at the path specified by --output, containing:
Human review is required before any YAML file changes.
research
Generate diverse solution candidates with category-spanning ideation methods and rotation. Use when stuck on a design or fighting repetitive LLM output.
tools
--- name: validate-pr description: Use when you need a diff-derived test plan for a PR: reads the diff, groups changes by area, runs targeted verifications, and proves revert-tests are genuine guards, not dead assertions. alwaysApply: false category: validation tags: - pr - validation - test-plan - diff - revert-test - evidence tools: [] usage_patterns: - diff-derived-test-plan - revert-test-quality-check - evidence-capture complexity: intermediate model_hint: standard estimated_tokens: 650
development
Contract for the project decision journal (tradeoffs and lessons-learned logs). Use when recording a decision, tradeoff, or lesson, or building a consumer hook.
development
Ramps implementation ambition a notch only after the prior increment is understood. Use when building a feature you must understand, not just ship.