Skip to content

Repository files navigation

sim

sim reads existing CAE files and turns them into structured text an agent can use — without launching the solver. It also detects local solver installs, validates scripts before you run them, and can hold a live solver session open when an agent needs to work one verified step at a time.

Python 3.10+ · Apache-2.0 · alpha


Scan existing simulation assets

Point sim scan at a folder of .mph / .inp / .cas.h5 / .aedt files and get back structured JSON an agent can reason over — model inventory, materials, boundary conditions, mesh counts, solve settings. No solver, no license, and no plugin needed:

uv init                  # only if this is not already a uv project
uv add sim-cli-core
uv run sim --json scan ./historical-cases
$ uv run sim --json scan ./cases/beam.inp --full
{
  "schema_version": "sim.scan/v1",
  "assets": [{
    "file_name": "beam.inp",
    "format": "abaqus-inp",
    "summary": {"data": {
      "title": "Cantilever beam thermal-stress",
      "node_count": 3,
      "element_count": 1,
      "materials": ["STEEL"],
      "sections": ["SOLID SECTION:STEEL"],
      "steps": ["STATIC"],
      "boundary_keywords": ["BOUNDARY"],
      "load_keywords": ["CLOAD"],
      "output_keywords": ["NODE PRINT"]
    }}
  }]
}

(abridged — the real envelope also carries ok, engine, request, and a roll-up summary block.)

Solver Files --format id
COMSOL .mph comsol-mph
Abaqus .inp, .inc abaqus-inp
Fluent .cas.h5, .msh.h5 fluent-hdf5
Ansys Electronics Desktop (HFSS / Icepak) .aedt, .aedtz hfss-aedt
Ansys Mechanical .mechdb, .mechdat ansys-mechanical
Icepak Classic .tzr icepak-tzr
Simcenter FloTHERM .pack, .xml, .floxml flotherm-pack, flotherm-floxml

The default view is bounded — lists come back as {total, sample, truncated} so a large scan cannot blow up an agent's context — and absolute paths are redacted unless --include-paths is set. Use --full for the complete parser result on a small input set, --limit and --no-recursive to bound a directory walk, and --format to force a format for an explicitly named file.

Example: what's in this folder?

Scan ./legacy-cases and tell me which models are package-level thermal
studies, which already have solved results, and what total power each one
assumes. Use `uv run sim --json scan`.

Find solvers and validate scripts

These need the solver's plugin installed — sim-cli-core ships with no drivers:

uv add sim-plugin-comsol
uv run sim plugin sync-skills --target .agents/skills --copy
uv run sim check comsol                    # detect local installs and versions
uv run sim plugin doctor comsol --deep     # plugin wiring + solver detection
uv run sim lint <script>                   # validate before running

Use .agents/skills for Codex and GitHub Copilot, .claude/skills for Claude Code. Two things are worth telling the agent explicitly: run through the project with uv run sim ... so it sees the project's installed plugins, and never guess solver API names — inspect the live model or the solver's local docs first.

No uv, or installing from a wheel, git, or a local checkout — and the sim.toml project manifest schema — are covered in docs/plugin-install.md.

Drive a live solver session

When an agent needs the solver held open across steps, sim connect starts a local runtime and keeps the session alive. A bounded step is one modeling, meshing, solving, or postprocessing action that can be inspected and verified before continuing: create a geometry feature, assign a material, generate a mesh, run one study, extract a probe value, export a result table.

Prefer this loop over one large generated script:

  1. uv run sim check <solver>, then uv run sim connect --solver <solver>
  2. uv run sim inspect session.versions before changing state — including after any human GUI edit, since an engineer can cut in through the solver GUI at any time and a previous script may no longer match the real session
  3. uv run sim exec --file step.py --label <step> — one bounded step
  4. uv run sim inspect last.result, verify with numeric evidence (mesh statistics, convergence, probes, conservation checks, tolerances), checkpoint
  5. uv run sim disconnect, then uv run sim stop to free the local runtime

The bundled solver skill enforces the details, so give the agent the engineering goal in plain language rather than a list of sim sub-steps:

Simulate the natural-convection cooling of the attached `pcb.mph` and report the
maximum junction temperature. Use the installed COMSOL skill. If you need a
visible COMSOL Desktop session, connect with `--ui-mode gui`.

Running the solver on a different host — and the security constraints that come with it — is covered in docs/remote-solvers.md.

Solver plugins

Solver knowledge is not in the core CLI. It comes from plugins, each of which provides a driver, so sim can launch or talk to the solver, and a skill, so the agent knows that solver's workflow, pitfalls, and inspection rules.

Solver Package spec Plugin repo
COMSOL sim-plugin-comsol sim-plugin-comsol
Abaqus sim-plugin-abaqus sim-plugin-abaqus
LTspice sim-plugin-ltspice sim-plugin-ltspice

For the curated full list, see sim-plugin-index.

Commands

Every command takes --json and returns a stable envelope with a closed error-code enum — see docs/agent-readability.md.

Command Use it for
uv run sim --json scan <path>... Parse historical simulation assets without launching a solver.
uv run sim plugin list Show plugins visible in this project environment.
uv run sim plugin info <solver> Show plugin metadata and compatibility summary.
uv run sim plugin doctor <solver> --deep Check plugin wiring plus local solver detection.
uv run sim plugin sync-skills --target .agents/skills --copy Materialize installed plugin skills for your agent.
uv run sim check <solver> Detect local or remote solver installs.
uv run sim connect --solver <solver> Open a persistent solver session.
uv run sim exec --file step.py Run one bounded step in the live session.
uv run sim inspect <target> Query session, result, or solver-specific state.
uv run sim run script.py --solver <solver> Run a deterministic one-shot script.
uv run sim logs last --field <name> Read back a one-shot run's parsed result.
uv run sim disconnect Tear down the active session.
uv run sim stop Stop the local runtime that sim connect auto-started.
uv run sim setup Validate sim.toml and report declared plugin package specs.

Run uv run sim --json describe for a machine-readable command manifest, or uv run sim <command> --help for exact options.

Solver ownership

sim-cli does not bundle or redistribute simulation solvers or vendor SDKs. Install and operate each underlying solver according to its vendor terms. See NOTICE for optional SDK dependency notes.

sim-cli is an independent open-source project and is not affiliated with, endorsed by, or sponsored by any solver vendor. Product, solver, and company names remain the property of their respective owners.

Docs

License

Apache-2.0 — see LICENSE.

About

Turn existing CAE files into structured text an agent can use — COMSOL, Abaqus, Fluent, HFSS, Icepak, FloTHERM — plus solver detection, script linting, and live solver sessions. Strong coverage for electronics thermal and advanced packaging.

Topics

Resources

Contributing

Stars

214 stars

Watchers

4 watching

Forks

Releases

Packages

Contributors

Languages