Agent skill · AI & Agents

simpy-discrete-event-simulation

Process-based discrete-event simulation. Model queues, shared resources, timed events: manufacturing, service ops, network traffic, logistics. Processes are Python generators yielding events. Resources: capacity-limited (Resource/Priority/Preemptive), bulk (Container), objects (Store, FilterStore). For continuous use SciPy ODEs; for agent-based use Mesa.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill simpy-discrete-event-simulation --agent claude-code

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

Facts
Files in the skill folder: 3
SKILL.md size: 21 KB
Bundled scripts: none
Path: skills/sciagent/simpy-discrete-event-simulation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

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

From the SKILL.md

# SimPy — Discrete-Event Simulation ## Overview SimPy is a process-based discrete-event simulation framework using standard Python generators. Model systems where entities (customers, vehicles, packets) interact with shared resources (servers, machines, bandwidth) over time, with event-driven scheduling and optional real-time synchronization. ## When to Use - Modeling queue-based systems with resource contention (servers, machines, staff) - Manufacturing process simulation (production lines, scheduling, bottleneck analysis) - Network simulation (packet routing, bandwidth allocation, latency analysis) - Capacity planning (determining optimal resource levels for target throughput) - Healthcare operations (ER patient flow, staff allocation, bed management) - Logistics and transportation (warehouse operations, vehicle routing) - **For continuous-time ODE systems** → use SciPy `solve_ivp` - **For agent-based modeling** → use Mesa ## Prerequisites ```python # pip install simpy import simpy import random ``` ## Quick Start ```python import simpy import random def customer(env, name, server): """Customer arrives, waits for server, gets served, departs.""" arrival = env.now with server.requ

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Prerequisites
  4. Quick Start
  5. Core API
  6. 1. Environment & Processes
  7. 2. Resources
  8. 3. Events & Synchronization
  9. 4. Monitoring & Statistics
  10. 5. Real-Time Simulation
  11. Key Concepts
  12. Resource Selection Guide
  13. Process Interaction Mechanisms
  14. Common Workflows
Ships with 2 files
  • references/process_events_guide.md
  • references/resources_monitoring_guide.md
More from awesome-bio-agent-skills
All skills →
About this skill
What does the simpy-discrete-event-simulation skill do?

Process-based discrete-event simulation. Model queues, shared resources, timed events: manufacturing, service ops, network traffic, logistics. Processes are Python generators yielding events. Resources: capacity-limited (Resource/Priority/Preemptive), bulk (Container), objects (Store, FilterStore). For continuous use SciPy ODEs; for agent-based use Mesa.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill simpy-discrete-event-simulation --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 BioTender-max/awesome-bio-agent-skills, a repository with 135 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