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/equinor/neqsim/neqsim-agentic-process-optimizationnpx skills add equinor/neqsim --skill neqsim-agentic-process-optimizationgit 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/neqsim-agentic-process-optimization)<a href="https://agentmods.dev/skills/equinor/neqsim/neqsim-agentic-process-optimization"><img src="https://agentmods.dev/badge/skills/equinor/neqsim/neqsim-agentic-process-optimization.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.00188 | $0.07714 |
| Opus 5 | $0.00094 | $0.03857 |
| Sonnet 5 | $0.00038 | $0.01543 |
| Haiku 4.5 | $0.00019 | $0.00771 |
Grade A, and why
neqsim-agentic-process-optimization 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 4d 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 — 554 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agentic Process-Model Optimization
This skill is the recipe for an agent that optimizes a large, already-built
multi-area plant (e.g. an offshore separation + recompression + export train)
by turning the newest NeqSim automation and introspection APIs into a robust
optimization loop. It assumes the flowsheet is a ProcessModel assembled from
several named ProcessSystem areas (see neqsim-platform-modeling).
Use neqsim-optimization-and-doe for the algorithm (SQP, PSO, BatchStudy,
ProcessSimulationEvaluator → SciPy/Pyomo). Use this skill for the plumbing:
how to read the decision space, evaluate one trial robustly, gate feasibility,
and score the objective from real equipment results.
1. The four pillars (all verified in NeqSim ≥ 3.13.0)
| Need | API | Returns |
|---|---|---|
| Decision space (bounded knobs) | ProcessAutomation.getAdjustableParameters() / getAdjustableParametersJson() |
List<AdjustableParameter> with name/address/unit/lowerBound/upperBound/source |
| Robust convergence of a coupled plant | ProcessModel.runUntilConverged(int maxIterations, double tolerance) |
boolean converged; pair with getConvergenceReportJson() |
| Per-trial feasibility / failure gating | ProcessModel.getRunStatus() / getRunStatusJson(), ProcessSystem.getRunStatus() |
RunStatus (completed/success/failedUnitName/failedUnitError) |
| Objective + constraints from equipment | Compressor.getOperatingPoint(), Standard_ASTM_D6377.RvpResult |
power, surge/stonewall margins; certified RVP |
Why these matter for an agent: they replace the fragile "call
.run()twice and hope" pattern with explicit did-it-converge and did-any-unit-fail signals, and they expose objective/constraint numbers (compression power, surge distance, RVP spec) as structured JSON the agent can parse without walking Java object trees.
2. Discover the decision space
from neqsim import jneqsim # or devtools `ns` (see §8)
import json
auto = plant.getAutomation() # plant = ProcessModel
# NOTE: jpype returns java.lang.String, not Python str — json.loads needs str(...).
params = json.loads(str(auto.getAdjustableParametersJson()))
for p in params["parameters"]:
print(p["name"], p["address"], p["unit"], p["lowerBound"], p["upperBound"], p["source"])
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.
- 4d ago First seen · 554 lines · 188 tokens per session scan A 18a5fb3fd0dc
neqsim-agentic-process-optimization is a skill published in the GitHub repository equinor/neqsim (150 stars, last pushed today), licensed Apache-2.0. It adds 188 tokens to every session and 7,714 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
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.
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…
text_summarizer
Summarizes long text into key bullet points.
pdf-processing-super-ultimate-edition
This is a comprehensive guide to PDF processing using our advanced PDF tool suite. Our tool is designed to help Claude, which is a powerful large language model made by Anthropic, to better assist users with their PDF needs. Claude is capable of understanding complex document structures and can help with various…
data-archiver
Professional Data Archiver Expert skill. Design and maintain secure, optimized, and performant databases and data storage solutions.