neqsim-agentic-process-optimization

neqsim-agentic-process-optimization is a skill for Claude Code, Codex from equinor/neqsim. It costs 188 tokens per session (7,714 once invoked), scanned A, original, Apache-2.0.

A closed-loop procedure for optimizing a large NeqSim process model made of several connected plant areas. NeqSim is software for simulating chemical and industrial processes.

In plain words
What is it for?
It is for optimizing full-plant operating settings such as pressures, temperatures, and routing fractions in an existing NeqSim model.
Why use it?
It helps an agent choose bounded operating settings, run the plant model until it converges, check feasibility, and score each trial using actual equipment results.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/equinor/neqsim/neqsim-agentic-process-optimization
Any agent
npx skills add equinor/neqsim --skill neqsim-agentic-process-optimization
Clone the repo
git clone --depth 1 https://github.com/equinor/neqsim

Made for: Claude Code, Codex.

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 neqsim-agentic-process-optimization

README.md
[![agentmods](https://agentmods.dev/badge/skills/equinor/neqsim/neqsim-agentic-process-optimization.svg)](https://agentmods.dev/skills/equinor/neqsim/neqsim-agentic-process-optimization)
Your own site
<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>
Per session 188 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,714 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00188 $0.07714
Opus 5 $0.00094 $0.03857
Sonnet 5 $0.00038 $0.01543
Haiku 4.5 $0.00019 $0.00771

Measured 4d ago against content hash 18a5fb3fd0dc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.github/skills/neqsim-agentic-process-optimization/SKILL.md · 554 lines

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"])

Read the full file on GitHub · 554 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. 4d ago First seen · 554 lines · 188 tokens per session scan A 18a5fb3fd0dc

Subscribe to this mod's changes

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.

Related

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…

sinagilassi/PyThermoCalcDB-NASA-MCP · 132 tokens

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.

SteadfastAsArt/geoscience-skills · 37 tokens

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…

CliMA/Thermodynamics.jl · 84 tokens

text_summarizer

Summarizes long text into key bullet points.

rscheiwe/open-skills · 14 tokens

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…

webkong/skill-quality-check · 144 tokens

data-archiver

Professional Data Archiver Expert skill. Design and maintain secure, optimized, and performant databases and data storage solutions.

AtulPurohit/Antigravity-Awesome-Skills · 27 tokens