daemon-blockint-tech/agentic-enteprises-skill

operations-research-algorithm-developer

Formulate and implement operations research optimization models—LP, MIP/QP, constraint programming, network flows, assignment, VRP, scheduling, resource allocation, inventory/production planning; heuristics and metaheuristics; sensitivity and infeasibility diagnosis; solver integration (OR-Tools, Gurobi, CPLEX, HiGHS, PuLP, Pyomo); production OR APIs (timeouts, warm starts). Use for operations research, OR engineer, optimization model, linear programming, mixed integer programming, MIP, VRP, ve…

First seen May 20, 2026

Installation

$ npx skills add daemon-blockint-tech/agentic-enteprises-skill --skill operations-research-algorithm-developer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from daemon-blockint-tech/agentic-enteprises-skill · top by installs.

npx skills add daemon-blockint-tech/agentic-enteprises-skill

Browse all from daemon-blockint-tech/agentic-enteprises-skill

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 8
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,439 B
  • docs SUMMARY.md 964 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 36 installs

SKILL.md

Operations Research Algorithm Developer

When to Use

  • Frame a decision problem as an optimization model—objectives, decisions, constraints, parameters, uncertainty
  • Build LP, MIP, QP, or constraint programming formulations for planning and allocation
  • Model network flows, assignment, routing (VRP), scheduling, and resource allocation
  • Design inventory and production planning models (lot sizing, capacity, multi-period)
  • Select exact vs heuristic methods—branch-and-bound, column generation, decomposition, metaheuristics
  • Run sensitivity analysis, infeasibility diagnosis, and benchmarking (optimality gap, runtime)
  • Integrate solvers conceptually—OR-Tools, Gurobi, CPLEX, HiGHS, PuLP, Pyomo—and production patterns
  • Prepare input data, validate units, and enforce constraint modeling discipline
  • Productionize OR services—APIs, timeouts, warm starts, incremental solves, solution pools

When NOT to Use

  • General ML predictive modeling, feature engineering, A/B tests, or MLOps → data-scientist
  • Supply chain strategy, RFQ, supplier scorecards, or inventory policy without optimization math → supply-chain-manager
  • WMS workflows—waves, pick paths, RF scanning, ERP/WMS integration → wms-developer
  • Simulation platform software—physics engines, SIL/HIL rigs, deterministic replay frameworks → simulation-software-engineer
  • Generic backend, CRUD APIs, or cloud microservices without OR models → senior-software-engineer
  • Analytics warehouse, dbt marts, dimensional modeling, BI semantic layers → analytics-data-engineer
  • Formal proof obligations or certified assurance cases → software-assurance-formal-methods-specialist

Related skills

Need Skill
ML prediction, experimentation, MLOps data-scientist
SCM sourcing, forecast process, supplier QBRs supply-chain-manager
Warehouse management application logic wms-developer
DES/physics sim platforms, digital twins simulation-software-engineer
Enterprise application and API engineering senior-software-engineer
dbt, warehouse modeling, BI pipelines analytics-data-engineer
Executive dashboards and KPI storytelling bi-analyst
Service SLOs and production incident response site-reliability-engineer

Core Workflows

1. Scope and problem class

Clarify decision horizon, granularity, optimality requirements, and handoffs to product/engineering.

See references/oralgorithmdeveloper_scope.md.

2. Formulation and data

Define sets, parameters, variables, objective, constraints; validate data and units.

See references/problemformulationand_data.md.

3. Linear and integer optimization

LP/MIP/QP structure, big-M discipline, tightening, decomposition hooks.

See references/linearandinteger_optimization.md.

4. Routing, scheduling, and networks

VRP variants, job-shop and resource scheduling, min-cost flow and assignment patterns.

See references/routingschedulingand_networks.md.

5. Heuristics and metaheuristics

When to leave exact solvers; construction, local search, GA/SA/TS; solution quality metrics.

See references/heuristicsandmetaheuristics.md.

6. Solver integration and production

Solver choice, model lifecycle, APIs, timeouts, warm starts, monitoring, and failure modes.

See references/solverintegrationand_production.md.

Outputs

  • Problem formulation brief—decisions, objective, hard vs soft constraints, assumptions
  • Mathematical model—notation, formulation, linearization notes, parameter catalog
  • Data specification—required inputs, validation rules, unit checks, scenario keys
  • Solution report—objective, gap, runtime, binding constraints, sensitivity highlights
  • Infeasibility / IIS summary—conflicting constraint groups and remediation options
  • Implementation outline—solver stack, API contract, timeout and fallback policy
  • Benchmark table—instances, gap %, time, memory, method comparison

Principles

  • Formulate before coding—write the math (even briefly) before choosing a solver API
  • Separate data from model—parameters drive constraints; avoid hard-coding scenario logic in solver calls
  • Prefer tight formulations—fewer binaries, tighter bounds, and valid inequalities over brute force
  • Measure optimality—report gap, bounds, and time limits; never imply optimality without proof
  • Diagnose infeasibility systematically—IIS, elastic filters, or constraint relaxation ladders
  • Production OR needs SLOs—timeouts, warm starts, and feasible incumbent policies are part of the design
  • Route non-OR work to peers—ML, WMS features, and sim platforms are not substitutes for correct OR scope

When to load references

Topic Reference
Role scope, boundaries, RACI references/oralgorithmdeveloper_scope.md
Sets, parameters, validation references/problemformulationand_data.md
LP, MIP, QP, tightening references/linearandinteger_optimization.md
VRP, scheduling, networks references/routingschedulingand_networks.md
Heuristics, metaheuristics references/heuristicsandmetaheuristics.md
Solvers, APIs, production references/solverintegrationand_production.md