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/clima/ensemblekalmanprocesses.jl/error-message-managernpx skills add CliMA/EnsembleKalmanProcesses.jl --skill error-message-managergit clone --depth 1 https://github.com/CliMA/EnsembleKalmanProcesses.jlWrote 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.
[](https://agentmods.dev/skills/clima/ensemblekalmanprocesses.jl/error-message-manager)<a href="https://agentmods.dev/skills/clima/ensemblekalmanprocesses.jl/error-message-manager"><img src="https://agentmods.dev/badge/skills/clima/ensemblekalmanprocesses.jl/error-message-manager.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00171 | $0.07869 |
| Opus 5 | $0.00086 | $0.03934 |
| Sonnet 5 | $0.00034 | $0.01574 |
| Haiku 4.5 | $0.00017 | $0.00787 |
Grade A, and why
error-message-manager 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 867 lines — stays where its author put it; the contents beside it link to each section on GitHub.
error-message-manager
Rewrite vague, delayed, or low-context Julia error messages into structured, actionable diagnostics. The goal is errors that tell the user exactly what went wrong, what was expected, what was received, and—whenever a likely fix exists— what to do next. Prefer catching mistakes early (at API boundaries) over letting them propagate into cryptic numerical failures.
Workflow
Step 0 — Offer an Explore agent for multi-file scope
If the user's request covers more than one file — a whole directory, a module, or the entire repo — offer to spawn an Explore agent before doing any file reads yourself. The agent runs all the reads in parallel without flooding the main context, and returns a structured inventory you can act on directly.
When to offer: any time the target is a directory path (e.g. src/) or a
vague scope like "the whole package" or "all the source files".
Offer text (adapt as needed):
"This spans multiple files — I'd recommend spawning an Explore agent to survey all
throw/@assert/errorsites in parallel. It keeps the audit fast and leaves the main context clean for the actual rewrites. Want me to do that?"
Agent prompt to use (fill in <path> and <package_name>):
Audit `<path>` for error-raising patterns. For every `@assert`, `error(`, or
`throw(` site in every `.jl` file:
1. Record: file, line number, exception type (or "bare @assert" / "bare error"),
and the full message text (including multiline strings).
2. Classify message quality:
- "good" — has `$(expr)` interpolation showing the actual received value, and
is either short (≤3 lines) or already in a `_throw_` helper function
- "long-inline" — message content is good, but the body exceeds 3 lines and
the throw is written inline (not in a `_throw_` helper)
- "vague" — missing a received value, or no Expected/Got structure
- "missing" — bare `@assert` with no message at all
3. Note whether the site is at an API boundary (user-facing input) or an internal
invariant (would require a package bug to fire).
Return a markdown table with columns:
File | Line | Exception type | Quality | Notes (one-line note on what's wrong if vague/missing/long-inline)
Focus only on sites that are "vague", "missing", or "long-inline" — skip "good" ones.
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.
- 5d ago First seen · 867 lines · 171 tokens per session scan A 91e3807de5c9
error-message-manager is a skill published in the GitHub repository CliMA/EnsembleKalmanProcesses.jl (118 stars, last pushed 6d ago), licensed Apache-2.0. It adds 171 tokens to every session and 7,869 once invoked, about $0.0009 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.
Other skills, from other repositories
fix-ci
Fix CI failures and performance regressions for a Julia package PR by iterating - triage the latest CI results, fix one root cause, verify locally, push. Use when a PR's GitHub Actions or Buildkite CI is failing, or when CI jobs run slower than they do on the main branch. Verifies CPU and GPU compilation locally…
qdash
Work with a running QDash instance through qdash-client and saved local profiles. Use when an agent needs to inspect chips, metrics, task results, calibration data, provenance, issues, flows, executions, project files, project-scoped QDash API data, or OpenAPI endpoints from QDash using qdash-client…
bnlearn
Use this skill when working with bnlearn, a Python library for Bayesian networks, probabilistic graphical models, causal discovery, parameter learning, structure learning, inference, sampling, and directed acyclic graphs (DAG).
metacognitive-monitoring-ai-contexts
Design metacognitive checkpoints that prevent AI-assisted learning from bypassing genuine understanding. Use when students use AI tools and may overestimate their own comprehension.
audit-post
The end-to-end procedure for auditing one already-published post to a scientific-organization standard. It chains the adversarial skills and — critically — re-runs the auditor on the CORRECTED post to confirm it now passes clean before committing. We are a scientific organization; we do not ship missteps. Run EVERY…
dungeon-os-threejs
Build and extend the Dungeon OS 3D world (the live Three.js renderer in agora-game-server/static/index.html). Use whenever the task touches the dungeon scene, agent avatars in 3D, tiles/walls/props, lighting, the isometric camera, post-processing/bloom, sprites/labels, or "the game looks flat/cheap/laggy/should look…