OpenFOAM driver for sim-cli,
distributed as a plugin via Python entry_points.
For agent projects, install sim-cli-core and the OpenFOAM plugin in the project environment:
uv init # only if this is not already a uv project
uv add sim-cli-core sim-plugin-openfoam
uv run sim plugin sync-skills --target .agents/skills --copy
uv run sim check openfoam
uv run sim plugin doctor openfoam --deepFor Claude Code, sync the bundled skill to .claude/skills instead:
uv run sim plugin sync-skills --target .claude/skills --copyFor a reproducible agent run, pin the PyPI package version:
uv add sim-cli-core "sim-plugin-openfoam==0.1.0"uv run sim ... runs sim from this project environment, so it sees this
project's plugins. Without uv, create and activate a venv, then install
sim-cli-core plus this plugin from PyPI with python -m pip.
git clone https://github.com/svd-ai-lab/sim-plugin-openfoam
cd sim-plugin-openfoam
uv sync
uv run pytestApache-2.0.