mcpbeat Sign in

Skill Benchmark Agent Skill

Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.

747 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
536
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/HoangNguyen0403/agent-skills-standard --skill skill-benchmark

The instruction itself

9 sections, as written by the author

Skill Benchmark Skill

> [!IMPORTANT]

> Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.

Optional args: slug=<feature>, ticket=<id/url>, mode=interactive|autonomous|channel, channel=<id>, auto_continue=true|false, profile=business|hybrid|technical.

Instructions

When the user asks to perform this workflow, execute the following steps:

๐Ÿ“Š Skill Benchmark Orchestrator

> Goal: Quantify how much active skills improve implementation quality. Deliver a prioritized compliance delta and skill applicability report.


Step 1 โ€” Project Context & Active Skills

Identify the tech stack and all active skills in AGENTS.md.

# 1. Total source files and lines changed
find src -name "*.ts" -o -name "*.tsx" | xargs wc -l 2>/dev/null | sort -rn | head -20
# 2. Check active skill registry
cat AGENTS.md | head -80

Step 2 โ€” Auto-Select a Legacy Trap

Pick the file automatically. Rank candidates by the severity of anti-patterns:

  • ๐Ÿ”ด P0: Hardcoded secrets; Logic inside UI components.
  • ๐ŸŸ  P1: Wrong Router pattern; Global state for local concerns; Missing design tokens.
  • ๐ŸŸก P2: Raw user-facing strings (i18n).

Step 3 โ€” Build Eval-Driven Scorecard

Source your scorecard from evals/evals.json, not from hardcoded patterns.

Follow the Scorecard Rubric in <SKILLS>/common/common-skill-creator/references/benchmark.md when synced:

  • Read <SKILLS>/<category>/<skill>/evals/evals.json.
  • Generate columns for Failure Pattern and Success Pattern.
  • Refactor the file, citing the exact skill rule for each change.
  • For guardrail skills, read pressure_scenarios, rationalizations, red_flags, and behavior_assertions.

Step 4 โ€” Benchmark Report & Compliance Delta

Output the scorecard and compliant score using the templates in <SKILLS>/common/common-skill-creator/references/benchmark.md when synced.

  • Compliance Score Before vs After.
  • ฮ” Delta: +Z% ๐Ÿš€.
  • Eval Alignment: How well does the skill teach what the eval tests?
  • Behavior Coverage: pressure scenarios, rationalizations, red flags, behavior assertions.

Step 5 โ€” Skill Applicability & Iteration

For every โŒ FAIL, identify the root cause using the Iteration Table in:

<SKILLS>/common/common-skill-creator/references/benchmark.md when synced.

  • Signal not matching file? โ†’ Refine trigger.
  • Rule too vague? โ†’ Add Anti-Pattern rule.
  • Conflict? โ†’ Ensure P0 overrides P1.
  • Guardrail weak under pressure? โ†’ Add rationalization counters and red flags.

Suggested .skillsrc Exclusions

Recommend any skills that are noisy or non-applicable for the project.

exclude:
  - [skill-id] # reason

Other skills for the same job

different authors, same section of the catalogue
Skill Creator
by anthropics
vendor ร—10

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

56k tokens scripts
Geo Database
by christophacham
ร—4

Access NCBI GEO for gene expression/genomics data. Search/download microarray and RNA-seq datasets (GSE, GSM, GPL), retrieve SOFT/Matrix files, for transcriptomics and expression analysis.

12k tokens
Pymc Bayesian Modeling
by christophacham
ร—4

Bayesian modeling with PyMC. Build hierarchical models, MCMC (NUTS), variational inference, LOO/WAIC comparison, posterior checks, for probabilistic programming and inference.

24k tokens scripts
Pymoo
by christophacham
ร—4

Multi-objective optimization framework. NSGA-II, NSGA-III, MOEA/D, Pareto fronts, constraint handling, benchmarks (ZDT, DTLZ), for engineering design and optimization problems.

19k tokens scripts
Statsmodels
by ComeOnOliver
ร—4

Statistical modeling toolkit. OLS, GLM, logistic, ARIMA, time series, hypothesis tests, diagnostics, AIC/BIC, for rigorous statistical inference and econometric analysis.

41k tokens
Add Uint Support
by pytorch
vendor ร—3

Add unsigned integer (uint) type support to PyTorch operators by updating AT_DISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support.

2k tokens
At Dispatch V2
by pytorch
vendor ร—3

Convert PyTorch AT_DISPATCH macros to AT_DISPATCH_V2 format in ATen C++ code. Use when porting AT_DISPATCH_ALL_TYPES_AND*, AT_DISPATCH_FLOATING_TYPES*, or other dispatch macros to the new v2 API. For ATen kernel files, CUDA kernels, and native operator implementations.

2k tokens
Docstring
by pytorch
vendor ร—3

Write docstrings for PyTorch functions and methods following PyTorch conventions. Use when writing or updating docstrings in PyTorch code.

3k tokens

How to use it

Copy the folder

Take hoangnguyen0403/skill-benchmark from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side โ€” one of them will be ignored.