Agent skill

operations-research-guide

Optimization and operations research methods for business and logistics

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/domains/business/operations-research-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
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

# 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", } ```

What's inside
Steps it walks through
  1. Linear Programming
  2. Problem Formulation and Solving
  3. Using PuLP for Readable Models
  4. Integer and Mixed-Integer Programming
  5. Vehicle Routing Problem
  6. Queuing Theory
  7. M/M/c Queue Analysis
  8. Simulation Methods
  9. Discrete-Event Simulation
  10. Decision Analysis
  11. Multi-Criteria Decision Making
  12. Tools and Libraries
More from Auto-Empirical-Research-Skills
All skills →
About this skill
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.

Keep going