Agent skill

simulation-orchestrator

Orchestrate multi-simulation campaigns including parameter sweeps, batch jobs, and result aggregation. Use for running parameter studies, managing simulation batches, tracking job status, combining results from multiple runs, or automating simulation workflows.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codecan modify filesships scripts
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill simulation-orchestrator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 8
SKILL.md size: 7 KB
Bundled scripts: yes
Allowed tools: ReadBashWriteGrepGlob
Path: skills/simulation-orchestrator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Simulation Orchestrator ## Goal Provide tools to manage multi-simulation campaigns: generate parameter sweeps, track job execution status, and aggregate results from completed runs. ## Requirements - Python 3.10+ - No external dependencies (uses Python standard library only) - Works on Linux, macOS, and Windows ## Inputs to Gather Before running orchestration scripts, collect from the user: | Input | Description | Example | |-------|-------------|---------| | Base config | Template simulation configuration | `base_config.json` | | Parameter ranges | Parameters to sweep with bounds | `dt:[1e-4,1e-2],kappa:[0.1,1.0]` | | Sweep method | How to sample parameter space | `grid`, `lhs`, `linspace` | | Output directory | Where to store campaign files | `./campaign_001` | | Simulation command | Command to run each simulation | `python sim.py --config {config}` | ## Decision Guidance ### Choosing a Sweep Method ``` Need every combination (full factorial)? ├── YES → Use grid (warning: exponential growth with parameters) └── NO → Is space-filling coverage needed? ├── YES → Use lhs (Latin Hypercube Sampling) └── NO → Use linspace for uniform sampling per parameter ``` | Method | Best For | Sa

What's inside
Steps it walks through
  1. Goal
  2. Requirements
  3. Inputs to Gather
  4. Decision Guidance
  5. Choosing a Sweep Method
  6. Campaign Size Guidelines
  7. Script Outputs (JSON Fields)
  8. Workflow
  9. Step 1: Generate Parameter Sweep
  10. Step 2: Initialize Campaign
  11. Step 3: Track Job Status
  12. Step 4: Aggregate Results
  13. CLI Examples
  14. Conversational Workflow Example
Ships with 7 files
  • references/aggregation_methods.md
  • references/campaign_patterns.md
  • references/sweep_strategies.md
  • scripts/campaign_manager.py
  • scripts/job_tracker.py
  • scripts/result_aggregator.py
  • scripts/sweep_generator.py
Commands it runs
python3 scripts/sweep_generator.py \
python3 scripts/campaign_manager.py \
python3 scripts/job_tracker.py \
python3 scripts/result_aggregator.py \
Generate 5x3=15 runs varying dt (5 values) and kappa (3 values)
Generate LHS samples for 4 parameters with budget of 20 runs
Check campaign status
Get summary statistics from completed runs
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the simulation-orchestrator skill do?

Orchestrate multi-simulation campaigns including parameter sweeps, batch jobs, and result aggregation. Use for running parameter studies, managing simulation batches, tracking job status, combining results from multiple runs, or automating simulation workflows.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill simulation-orchestrator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going