run-flash-experiments skillC
run-flash-experiments is agent-read markdown (skill) from equinor/neqsim.
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
# Skill: Run Flash Experiments
## Purpose
Execute NeqSim flash calculations in batch mode, collect metrics, and produce
structured result files for paper-quality benchmarking.
## When to Use
- Running a benchmark suite designed by the `design-flash-benchmark` skill
- Comparing baseline vs candidate algorithms
- Generating raw data for the validation agent
## Execution Procedure
### Step 1: Load Benchmark Config
```python
import json
with open("benchmark_config.json") as f:
config = json.load(f)
```
### Step 2: Generate All Cases
```python
import numpy as np
from itertools import product
def generate_all_cases(config):
"""Generate all benchmark cases from config."""
cases = []
case_id = 0
for family in config["families"]:
# Base composition
base = family["base_composition"]
# Composition variants
names = list(base.keys())
alpha = np.array([base[n] for n in names]) * family["dirichlet_concentration"]
np.random.seed(42) # Reproducible
compositions = [base] # Include base
for _ in range(family["n_composition_variants"] - 1):
x = np.random.dirichlet(alpha)
…Read the whole file at its exact version.
How to install
mdr add equinor/neqsim/run-flash-experiments@git:20260919.77c34a0mdr add equinor/neqsim/run-flash-experiments@sha256:b30c6aaaefe07104Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
[](https://markdownregistry.com/a/art_vn5d3mkn3jszsvuv)
1 badge views in 30 days
Versions
Audit of the latest version
- fail: Frontmatter block present
- fail: Frontmatter declares a name
- fail: Frontmatter declares a description
- pass: Size between 200 bytes and 200 KB (7299 bytes)
- pass: No zero-width or bidi control characters
- pass: No instruction hidden inside an HTML comment
- pass: No link to an exfiltration or paste host
- pass: No credential-shaped string
- pass: No instruction to send local credentials anywhere
- pass: No text hidden with inline styles
- pass: No prompt-injection phrasing
- pass: No curl or wget piped into a shell
- pass: No recursive delete of root, home or parent
- pass: No instruction to read or print local credentials
- pass: No base64 blob over 200 characters
- pass: No link to a raw IP address
- pass: No script tag
Source
equinor/neqsim · 155 stars · license Apache-2.0 · pushed 2026-09-24 · branch master
API
GET https://markdownregistry.com/api/v1/artifacts/art_vn5d3mkn3jszsvuv GET https://markdownregistry.com/api/v1/resolve?ref=equinor/neqsim/run-flash-experiments GET https://markdownregistry.com/api/v1/blob/b30c6aaaefe07104117f3344507d662411782a3d51a7b5dace1a812ac53a9753
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.