EnsembleKalmanProcesses.jl: Skill for Claude Code

.claude/skills/slurm-pipeline-manager/SKILL.md

slurm-pipeline-manager is a skill for Claude Code from CliMA/EnsembleKalmanProcesses.jl. It costs 230 tokens per session (3,553 once invoked), scanned A, original, Apache-2.0.

A workflow for preparing an EnsembleKalmanProcesses.jl calibration example to run on a SLURM cluster. SLURM is software that schedules jobs across shared computing systems, and the workflow creates dependent jobs for the calibration stages.

In plain words
What is it for?
It is for creating or maintaining scripts for precompilation, setup, forward-model runs, ensemble updates, iterations, and postprocessing in a separate slurm-variant directory.
Why use it?
It turns a local Julia example into a self-contained cluster submission while allowing ensemble members to run in parallel and avoiding repeated setup work.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is CliMA/EnsembleKalmanProcesses.jl's own configuration. It tells Claude Code how to work on EnsembleKalmanProcesses.jl itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything EnsembleKalmanProcesses.jl configures →

Reuse

Borrowing it

Nothing to install: this file belongs to CliMA/EnsembleKalmanProcesses.jl. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/CliMA/EnsembleKalmanProcesses.jl/main/.claude/skills/slurm-pipeline-manager/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/CliMA/EnsembleKalmanProcesses.jl

Made for: Claude Code.

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 slurm-pipeline-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/clima/ensemblekalmanprocesses.jl/slurm-pipeline-manager/github.svg)](https://agentmods.dev/skills/clima/ensemblekalmanprocesses.jl/slurm-pipeline-manager)
Your own site
<a href="https://agentmods.dev/skills/clima/ensemblekalmanprocesses.jl/slurm-pipeline-manager"><img src="https://agentmods.dev/badge/skills/clima/ensemblekalmanprocesses.jl/slurm-pipeline-manager/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 slurm-pipeline-manager

Your own site · 80×15
<a href="https://agentmods.dev/skills/clima/ensemblekalmanprocesses.jl/slurm-pipeline-manager"><img src="https://agentmods.dev/badge/skills/clima/ensemblekalmanprocesses.jl/slurm-pipeline-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 230 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,553 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00230 $0.03553
Opus 5 $0.00115 $0.01776
Sonnet 5 $0.00046 $0.00711
Haiku 4.5 $0.00023 $0.00355

Measured 13d ago against content hash 0afab8c60922, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

slurm-pipeline-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 13d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (assets/hpc_config.sh, assets/run_pipeline.sh, assets/run_postprocess.sh, …), 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.

.claude/skills/slurm-pipeline-manager/SKILL.md · 290 lines

How it starts

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

slurm-pipeline-manager

This skill takes an EKP Julia example (decoupled or monolithic) and produces a complete SLURM job-dependency tree inside a slurm-variant/ subdirectory. slurm-variant/ is fully self-contained — it is both the HPC submission directory and the Julia project root. The original example is never modified.

The generated tree uses a one-shot precompile job followed by a dependency-chained setup → forward_map[array] → update_ensemble loop across iterations, ending in postprocessing — so ensemble members run in parallel and every stage pays precompile cost only once.

It also supports maintenance mode: if slurm-variant/hpc_config.sh already exists, re-invoking the skill updates files in place without clobbering the user's manifest settings.


Core principle — slurm-variant/ is fully self-contained

Everything new lives in slurm-variant/. The original example directory is never modified.

This includes:

  • All SLURM / shell scripts (.sbatch, .sh)
  • All decoupled Julia scripts (initialize_EKP.jl, run_forward_model.jl, etc.)
  • Any shared model file (model.jl or similar)
  • Parameter TOML files (priors.toml)
  • A Project.toml copy with any additional dependencies

slurm-variant/ is the working directory for every HPC job — users cd into it before running anything. This means JULIA_PROJECT="." in hpc_config.sh and script names have no path prefix (e.g. SETUP_SCRIPT="initialize_EKP.jl").


How the generated pipeline is structured

precompile ─(manual, run first)

setup ──afterok──► fwd_iter_0[array 1..N] ──afterok──► update_iter_0
      (afterok chain continues for each iteration)
      ──afterok──► fwd_iter_K-1[array 1..N] ──afterok──► update_iter_K-1
                                                         ──afterok──► postprocess

Key design choices:

  • One precompile job only. Every run-stage job sets JULIA_PKG_PRECOMPILE_AUTO=0. Without this, 60 concurrent array tasks each attempt to precompile — thrashing the shared Julia depot and wasting time.
  • Forward map as a SLURM array. --array=1-$N_ENSEMBLE gives one task per ensemble member; the iteration index travels via --export=ALL,ITERATION=$i.
  • afterok + --kill-on-invalid-dep=yes everywhere. If one stage fails the whole tree is killed, not left stuck in the queue. EKP errors on < 2 successful members (commit 8f2d3fa), so partial-run continuation is not useful.
  • Date-stamped output root. RUN_DATE in hpc_config.sh pins all jobs in a run to the same output directory.

Read the full file on GitHub · 290 lines

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. 13d ago First seen · 290 lines · 230 tokens per session scan A 0afab8c60922

Subscribe to this mod's changes

slurm-pipeline-manager is a skill published in the GitHub repository CliMA/EnsembleKalmanProcesses.jl (125 stars, last pushed 11d ago), licensed Apache-2.0. It adds 230 tokens to every session and 3,553 once invoked, about $0.0011 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

compute-env-setup

Set up a reproducible Feynman compute environment for research jobs. Use when a task needs Python/R packages, GPU libraries, containers, Modal, SSH, caches, or managed model runtime setup.

companion-inc/feynman · 45 tokens

content-agents

Use when packaging, validating, or operating the NVIDIA Content Agents workflow that enriches a self-contained USD object with real Material Agent, Physics Agent, OVRTX, and Validation Agent stages and emits a narrow Isaac rigid-object handoff.

nebius/nebius-physical-ai · 50 tokens

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).

erdogant/bnlearn · 46 tokens

repro-enforcer

Export any bioinformatics analysis as a reproducible bundle with Conda environment, Singularity container definition, and Nextflow pipeline.

ClawBio/ClawBio · 30 tokens

hpc-foundations

Navigate foundational HPC knowledge across concepts, architectures, schedulers, Linux usage, storage and RDMA, containers, cloud basics, and cluster administration patterns distilled from hpclib.com. Use when the task is about understanding or explaining HPC basics, Slurm or PBS or LSF concepts, Linux-on-cluster…

SciMate-AI/HPC-Skills · 87 tokens

ngs-pipeline-management

Next-generation sequencing pipeline management with Snakemake and Nextflow. Use for building, running, and debugging reproducible NGS workflows for RNA-seq, WGS, ChIP-seq, ATAC-seq, and amplicon sequencing. Covers pipeline design patterns, HPC/cloud execution, containerization, and workflow optimization.

Lord1Egypt/scientific-agent-toolkit · 72 tokens