benchmark-and-mms-planner

benchmark-and-mms-planner is a skill for Claude Code from HeshamFS/materials-simulation-skills. It costs 58 tokens per session (2,644 once invoked), scanned A, original, Apache-2.0.

A planning tool for checking whether simulation code and results can be trusted. Verification checks whether the code solves its intended mathematics, while validation checks whether the model represents reality well enough for its use.

In plain words
What is it for?
Use it to plan manufactured-solution tests, standard benchmark problems, grid and time refinement, uncertainty propagation, and acceptance criteria for solvers and models.
Why use it?
A plausible-looking simulation can still contain coding errors, numerical errors, or uncertain inputs. This tool defines tests and pass/fail rules before results are used for decisions or claims.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the verification-and-validation plugin — 4 skills shipped together , and of full

Good fit Use it to plan manufactured-solution tests, standard benchmark problems, grid and time refinement, uncertainty propagation, and acceptance criteria for solvers and models.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/heshamfs/materials-simulation-skills/benchmark-and-mms-planner
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 HeshamFS/materials-simulation-skills --skill benchmark-and-mms-planner
Clone the repo
git clone --depth 1 https://github.com/HeshamFS/materials-simulation-skills

Made for: Claude Code.

Or install verification-and-validation, the plugin that ships this one along with the rest of its 4 skills.

Its marketplace also offers this one on its own, as the plugin verification-validation/plugin install verification-validation after adding the marketplace above.

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 benchmark-and-mms-planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/heshamfs/materials-simulation-skills/benchmark-and-mms-planner/github.svg)](https://agentmods.dev/skills/heshamfs/materials-simulation-skills/benchmark-and-mms-planner)
Your own site
<a href="https://agentmods.dev/skills/heshamfs/materials-simulation-skills/benchmark-and-mms-planner"><img src="https://agentmods.dev/badge/skills/heshamfs/materials-simulation-skills/benchmark-and-mms-planner/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 benchmark-and-mms-planner

Your own site · 80×15
<a href="https://agentmods.dev/skills/heshamfs/materials-simulation-skills/benchmark-and-mms-planner"><img src="https://agentmods.dev/badge/skills/heshamfs/materials-simulation-skills/benchmark-and-mms-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,644 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.
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.00058 $0.02644
Opus 5 $0.00029 $0.01322
Sonnet 5 $0.00012 $0.00529
Haiku 4.5 $0.00006 $0.00264

Measured 11d ago against content hash 8f02052b69a3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

benchmark-and-mms-planner 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/benchmark_mms_planner.py), 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/verification-validation/benchmark-and-mms-planner/SKILL.md · 180 lines

How it starts

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

Benchmark And MMS Planner

Goal

Design a verification and validation plan before trusting simulation results. The skill helps agents choose manufactured solutions, benchmark cases, refinement protocols, uncertainty checks, and pass/fail criteria.

Requirements

  • Python 3.10+
  • No external dependencies
  • Works on Linux, macOS, and Windows

Inputs to Gather

Input Description Example
PDE or model class Governing family diffusion, elasticity, phase-field
Quantity of interest Metric to validate interface velocity, L2 temperature error
Dimension 1, 2, or 3 2
Expected order Formal discretization order 2
Reference availability Analytic, benchmark, or none analytic
Risk level Cost or consequence of wrong result high

Decision Guidance

  • Use MMS when code correctness is uncertain and an analytic solution can be injected.
  • Use canonical benchmarks when physical model validation matters more than code verification.
  • Use grid/time refinement whenever the result is used for a claim, design decision, or comparison.
  • Use uncertainty propagation when inputs are calibrated, noisy, or experimentally measured.

Script Outputs

scripts/benchmark_mms_planner.py emits inputs and results with:

  • verification_strategy
  • effective_model — the resolved model family actually used; unknown families fall back to general.
  • mms_plan
  • benchmark_cases
  • refinement_protocol (dimension, levels, spacing_ratio, expected_order, accept_observed_order_min, include_time_refinement)
  • uncertainty_plan (propagate_inputs, report_error_bars, separate_discretization_and_model_error) — propagation/error-bar guidance driven by risk level and reference type.
  • acceptance_criteria
  • warnings

The accept_observed_order_min is an engineering screening heuristic, not a certified bound: it is the formal expected_order reduced by a fractional tolerance (10% for high risk, 20% otherwise) and floored at first-order convergence (1.0). The relative band keeps strictness consistent across formal orders. See references/vv_patterns.md.

Read the full file on GitHub · 180 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. 11d ago First seen · 180 lines · 58 tokens per session scan A 8f02052b69a3

Subscribe to this mod's changes

benchmark-and-mms-planner is a skill published in the GitHub repository HeshamFS/materials-simulation-skills (66 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 58 tokens to every session and 2,644 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

api-docs

Document a module or public API surface (functions, classes, CLI commands, endpoints) from the code itself. Use when the user asks for API reference, to document a module, or to write usage docs for a public interface.

omnigent-ai/omnigent · 50 tokens

research

Run deep research on any topic using the Deep Research MCP server. Use this skill whenever the user wants to research a topic, gather information, find sources, or create a research document. Triggers on: 'research this', 'find out about', 'gather information on', 'I need to understand', 'deep dive into', or any…

Arindam200/awesome-ai-apps · 78 tokens

security-audit

Audit a codebase or directory for security issues (hardcoded secrets, injection, unsafe deserialization, weak crypto, authz gaps) and produce a structured findings report. Use when the user asks for a security review, an audit, or to check code for vulnerabilities. Report only — never fix.

omnigent-ai/omnigent · 64 tokens

Workspace Data Analyst

Analyze CSV files in the workspace and summarize insights.

VoltAgent/voltagent · 14 tokens

run_jinx

Execute a jinx by name (already loaded on the team) or by filesystem path (e.g. a freshly createdjinx that isn't yet registered), passing input values as a JSON object. Returns the jinx's output field or the full context dict. Use this to run a jinx you just wrote without exiting the session.

NPC-Worldwide/npcpy · 71 tokens