operations-research-guide
Optimization and operations research methods for business and logistics
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill operations-research-guide --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Operations Research Guide A skill for applying operations research (OR) methods to business, logistics, and resource allocation problems. Covers linear programming, integer programming, scheduling, network optimization, simulation, and decision analysis using Python optimization libraries. ## Linear Programming ### Problem Formulation and Solving ```python from scipy.optimize import linprog import numpy as np def solve_production_planning(): """ Example: A factory produces two products (A and B). Product A: profit $40, uses 2h labor + 1kg material Product B: profit $30, uses 1h labor + 2kg material Constraints: 100h labor available, 80kg material available Maximize total profit. """ # linprog minimizes, so negate for maximization c = [-40, -30] # objective coefficients (negated) # Inequality constraints: A_ub @ x <= b_ub A_ub = [ [2, 1], # labor constraint [1, 2], # material constraint ] b_ub = [100, 80] # Non-negativity bounds bounds = [(0, None), (0, None)] result = linprog(c, A_ub=A_ub, b_ub=b_ub, bounds=bounds, method="highs") return { "product_A": result.x[0], "product_B": result.x[1], "max_profit": -result.fun, "status": "optimal" if result.success else "infeasible", } ```
- Linear Programming
- Problem Formulation and Solving
- Using PuLP for Readable Models
- Integer and Mixed-Integer Programming
- Vehicle Routing Problem
- Queuing Theory
- M/M/c Queue Analysis
- Simulation Methods
- Discrete-Event Simulation
- Decision Analysis
- Multi-Criteria Decision Making
- Tools and Libraries
What does the operations-research-guide skill do?
Optimization and operations research methods for business and logistics
How do I install it?
Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill operations-research-guide --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 brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 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.