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.
npx agentmods add skills/thematteroftime/agentic-md-for-dummies/paper-to-experimentnpx skills add thematteroftime/agentic-md-for-dummies --skill paper-to-experimentgit clone --depth 1 https://github.com/thematteroftime/agentic-md-for-dummiesWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00077 | $0.04280 |
| Opus 5 | $0.00039 | $0.02140 |
| Sonnet 5 | $0.00015 | $0.00856 |
| Haiku 4.5 | $0.00008 | $0.00428 |
Grade A, and why
paper-to-experiment 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 244 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Paper → Experiment Skill
Turn a physics paper into a validated configs/plan_<topic>.json that python scripts/run_experiment.py can launch directly. The output of one run of this skill is a campaign that — when run end-to-end — produces a report.md and at least one figure per run dir. Anything less is incomplete.
This skill is a gate, not a free-form writer. You follow the template, the schema, and the registry. You don't invent fields. You surface ambiguity to the user before writing JSON.
Hard rules (no exceptions)
-
Registry first. Open
references/force_types.mdANDtools/registry.py(the framework's forwarding station for forces / lattices / analyzers / plotters / aggregators / visualizers) BEFORE proposing any field. The skill works only with registered strings — for any extension, you must walk through §"Adding a new force type" 8-step process and register the new class intools/registry.py:_REGISTRYAND in the matching package's local__init__.py. -
Paper PDF on disk. Step 2 requires a real PDF under
papers/<slug>.pdf. If the user only has an abstract / link / mental model, stop and ask them to put the PDF inpapers/. Abstract-only reproduction is unsupported — it has produced bad reproductions in the past. -
Citations are mandatory. Every observable in §1 of the design doc must cite a paper Eq. or Fig. number. If a number isn't in the paper, mark it with
*and explain in §11. No bare claims like "expected to converge." -
Smoke before production. Every config you emit must have
pipeline.smoke=trueandsmoke_steps ≥ 100unless the user explicitly asks otherwise (and you note the override in_comment). -
Validation gate. Before announcing the config is ready, run
python scripts/validate_config.py <path> --strict. If it returns non-zero, fix the issues and re-run; do not hand off a failing config. -
Cost budget. If the validator reports
single-run wall > 24 hrorVRAM > 8 GB, propose smallerNorstepsrather than asking the user to approve a 1-day GPU burn.
What ships with it
15 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.
- references/examples/plan_g2_er_long.json 1.6 KB
- references/examples/plan_g3_er_mid_mt.json 1.6 KB
- references/examples/worked_example_PRL2008.md 5.3 KB
- references/examples/worked_example_PRL2018_KALJ.md 12 KB
- references/examples/worked_example_PRX2015.md 8.5 KB
- references/force_types.md 24 KB
- templates/adapter_run.py.template 11 KB
- templates/aggregator.py.template 3.8 KB
- templates/analyzer.py.template 3.7 KB
- templates/force_class.py.template 3.5 KB
- templates/integrator.py.template 4.9 KB
- templates/physics_design.md 14 KB
- templates/plan_config.schema.json 7.9 KB
- templates/plotter.py.template 3.3 KB
- templates/visualizer.py.template 1.9 KB
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.
- yesterday First seen · 244 lines · 77 tokens per session scan A d44c58a64dc7
paper-to-experiment is a skill published in the GitHub repository thematteroftime/agentic-md-for-dummies (6 stars, last pushed 3mo ago), licensed MIT. It adds 77 tokens to every session and 4,280 once invoked, about $0.0004 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-31.
Other skills, from other repositories
agent-builder
Design and build AI agents for any domain. Use when users: (1) ask to "create an agent", "build an assistant", or "design an AI system" (2) want to understand agent architecture, agentic patterns, or autonomous AI (3) need help with capabilities, subagents, planning, or skill mechanisms (4) ask about Claude Code…
code-review
Perform thorough code reviews with security, performance, and maintainability analysis. Use when user asks to review code, check for bugs, or audit a codebase.
figure-style
Publication-grade correctness and legibility rules for final-deliverable scientific figures, not exploratory plots. Use for a figure that will ship in a report, paper, export, or kept artifact. Covers data fidelity, label economy, color threading, chart choice, layout, and render-then-verify QA without imposing a…
paper-narrative
Judge and reshape the story told by an entire paper figure deck. Use when writing or revising a paper to derive a grounded brief from the manuscript and captions, review the full deck as a handling editor, and hand an ordered figure arc to figure-composer.
remote-compute-ssh
Evaluate and use SSH Remote Compute before choosing where to run GPU, high-memory, parallel, batch, model-inference, bioinformatics, or other long-running scientific work; supports short remote commands and asynchronous jobs with automatic harvest and analysis.
customize
Use when the user wants to create or manage a Specialist agent or create, revise, publish, or delete a Skill through the conversational /Customize entry. Routes Skill work to the internal skill-creator and handles Specialist work through the JavaScript host.agents SDK.