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 skills add equinor/neqsim --skill analyze_convergencegit clone --depth 1 https://github.com/equinor/neqsimWrote 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/equinor/neqsim/analyze_convergence)<a href="https://agentmods.dev/skills/equinor/neqsim/analyze_convergence"><img src="https://agentmods.dev/badge/skills/equinor/neqsim/analyze_convergence.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.1 | $0.00016 | $0.01927 |
| Opus 5 | $0.00008 | $0.00963 |
| Sonnet 5 | $0.00003 | $0.00385 |
| Haiku 4.5 | $0.00002 | $0.00193 |
Grade A, and why
analyze_convergence 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 7d 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 — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: Analyze Convergence
Purpose
Interpret flash algorithm convergence metrics, identify patterns, and produce publication-quality analysis for the Results section.
When to Use
- After running benchmark experiments
- When comparing baseline vs candidate algorithms
- When investigating failure cases
Analysis Procedure
Step 1: Load and Parse Results
import json
import pandas as pd
def load_results(results_dir, algorithm_name):
"""Load JSONL results into DataFrame."""
records = []
with open(f"{results_dir}/raw/{algorithm_name}_results.jsonl") as f:
for line in f:
records.append(json.loads(line))
return pd.DataFrame(records)
Step 2: Convergence Rate by Family
def convergence_by_family(df):
"""Calculate convergence rate per fluid family."""
return df.groupby("family").agg(
total=("converged", "count"),
converged=("converged", "sum"),
rate_pct=("converged", lambda x: round(100 * x.mean(), 2)),
median_time_ms=("cpu_time_ms", "median")
).reset_index()
Step 3: Convergence Maps
Generate 2D convergence maps in (T, P) space:
import matplotlib.pyplot as plt
import numpy as np
def plot_convergence_map(df, family_name, algorithm_name, save_path):
"""Plot convergence success/failure in TP space."""
fam = df[df["family"] == family_name]
fig, ax = plt.subplots(figsize=(8, 6))
conv = fam[fam["converged"] == True]
fail = fam[fam["converged"] == False]
ax.scatter(conv["T_K"] - 273.15, conv["P_bara"],
c="green", alpha=0.3, s=10, label="Converged")
ax.scatter(fail["T_K"] - 273.15, fail["P_bara"],
c="red", alpha=0.8, s=20, marker="x", label="Failed")
ax.set_xlabel("Temperature (°C)")
ax.set_ylabel("Pressure (bara)")
ax.set_title(f"Convergence Map — {family_name} — {algorithm_name}")
ax.legend()
ax.grid(True, alpha=0.3)
ax.set_yscale("log")
plt.tight_layout()
plt.savefig(save_path, dpi=300, bbox_inches="tight")
plt.close()
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.
- 7d ago First seen · 233 lines · 16 tokens per session scan A b1eacfea06c7
analyze_convergence is a skill published in the GitHub repository equinor/neqsim (150 stars, last pushed yesterday), licensed Apache-2.0. It adds 16 tokens to every session and 1,927 once invoked, about $0.0001 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
pythermodb-reference-maker
Extract thermodynamic tables and correlations from references (CSV, PDF, images, or text) and convert them into the project's structured pyThermoDB YAML schema. Supports data tables, constants tables, matrix-parameter tables, and equation-based correlations (e.g., Cp, vapor pressure, density, enthalpy of…
seismic-interpretation
End-to-end seismic interpretation workflow from SEG-Y loading through signal processing, rock physics, and visualization. Use when working with seismic data analysis pipelines.
cantera-combustion
Use this Skill for combustion simulations with Cantera: mechanism loading, freely propagating flames, ignition delay, reactors, and sensitivity analysis.
matlab
Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.
phylogenetics
Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.
ensembl-database
Query Ensembl genome database REST API for 250+ species. Gene lookups, sequence retrieval, variant analysis, comparative genomics, orthologs, VEP predictions, for genomic research.