Agent skill

route-optimization

When the user wants to optimize delivery routes, solve vehicle routing problems, or minimize transportation costs. Also use when the user mentions "route planning," "delivery optimization," "VRP," "TSP," "multi-stop routing," "route sequencing," or "dispatch optimization." For fleet sizing and management, see fleet-management. For last-mile specific challenges, see last-mile-delivery.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill route-optimization-kishorkukreja-awesome-supply-chain --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 38 KB
Bundled scripts: none
Path: skills/analysis/route-optimization-kishorkukreja-awesome-supply-chain/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

Review
written from the skill's own SKILL.md · Aug 5, 2026

What it does

The skill is framed as an expert in transportation route optimization and vehicle routing problems. It aims to help design optimal delivery routes that minimize costs, reduce travel distance, improve service levels, and maximize fleet utilization.

How it works

It provides an Initial Assessment to gather Business Context, Operational Constraints, Network Characteristics, and Service Requirements. It then describes a Route Optimization Framework with Problem Classification covering TSP, VRP, VRPTW, CVRP, MDVRP, VRPPD, and Dynamic VRP. For Implementation, it details multiple Optimization Methods:

  • Exact Methods: Branch and Bound; Mixed-Integer Programming (MIP) with a Python snippet using PuLP to model VRP and extract routes.
  • Heuristic Methods: Nearest Neighbor, Clarke-Wright Savings Algorithm, and Sweep Algorithm, each with accompanying Python code to construct routes, compute total distance, and return route structures.
  • Metaheuristic Methods: Simulated Annealing with code for generating neighbors, calculating total distance, and iterating with temperature cooling.

The skill emphasizes concrete steps, including choosing problem variants, constructing routes, and evaluating total distance. It explicitly names tools like "Claude Code" in the declared tools and shows code blocks with Python to implement VRP techniques.

When to use it

The skill should be used when asked to optimize delivery routes, solve vehicle routing problems, or minimize transportation costs, especially if mentions include route planning, delivery optimization, VRP, TSP, multi-stop routing, route sequencing, or dispatch optimization. It also mentions fleet sizing and management context, and last-mile-delivery references for related challenges.

What it can touch

The skill references the tool "claude-code" as a declared tool. The code examples demonstrate usage of Python libraries (e.g., PuLP) for optimization modeling and standard Python structures for route construction and distance calculations.

Caveats

It lists limitations of exact methods (e.g., Branch and Bound is feasible only for small problems <50 stops) and notes typical constraints like capacity, time windows, and depot structures within VRP variants. It also states that the Clarke-Wright, Nearest Neighbor, and Sweep methods are heuristics with trade-offs between speed and solution quality. No additional licensing or risk statements beyond these are provided in the given text.

From the SKILL.md

# Route Optimization You are an expert in transportation route optimization and vehicle routing problems. Your goal is to help design optimal delivery routes that minimize costs, reduce travel distance, improve service levels, and maximize fleet utilization. ## Initial Assessment Before optimizing routes, understand: 1. **Business Context** - What type of operation? (delivery, pickup, field service) - Fleet size and vehicle types? - Current routing method? (manual, basic software, advanced) - Primary pain points? (cost, late deliveries, driver overtime) 2. **Operational Constraints** - Delivery time windows? (hard/soft constraints) - Vehicle capacities (weight, volume, pallets)? - Driver shift lengths and break requirements? - Service time at each stop? - Maximum route duration? 3. **Network Characteristics** - Number of stops per day? - Depot locations (single/multiple)? - Geographic spread? (urban, rural, mixed) - Traffic patterns and considerations? - Access restrictions (truck routes, height limits)? 4. **Service Requirements** - On-time delivery targets? - Customer priorities or preferences? - Special handling needs? - Real-time changes and dynamic requests? --- ## Route Optim

What's inside
Steps it walks through
  1. Initial Assessment
  2. Route Optimization Framework
  3. Problem Classification
  4. Optimization Methods
  5. Exact Methods
  6. Heuristic Methods
  7. Metaheuristic Methods
  8. Advanced VRP Variants
  9. VRP with Time Windows (VRPTW)
  10. Multi-Depot VRP
  11. Dynamic VRP (Real-Time Routing)
  12. Practical Implementation
  13. Complete VRP Solver Class
  14. Commercial Routing Software
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the route-optimization skill do?

When the user wants to optimize delivery routes, solve vehicle routing problems, or minimize transportation costs. Also use when the user mentions "route planning," "delivery optimization," "VRP," "TSP," "multi-stop routing," "route sequencing," or "dispatch optimization." For fleet sizing and management, see fleet-management. For last-mile specific challenges, see last-mile-delivery.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill route-optimization-kishorkukreja-awesome-supply-chain --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 majiayu000/claude-skill-registry, a repository with 534 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