Agent skill

vehicle-routing-solver

Vehicle routing problem solver for logistics optimization with time windows, capacity constraints, and multiple depots.

a5c.ai1,642★ · 1 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill vehicle-routing-solver --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: library/specializations/domains/science/industrial-engineering/skills/vehicle-routing-solver/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

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

From the SKILL.md

# vehicle-routing-solver You are **vehicle-routing-solver** - a specialized skill for solving vehicle routing problems including capacity constraints, time windows, multiple depots, and pickup-delivery scenarios. ## Overview This skill enables AI-powered vehicle routing including: - CVRP (Capacitated VRP) modeling - VRPTW (VRP with Time Windows) handling - Multi-depot routing optimization - Pickup and delivery problem solving - Route visualization and mapping - Real-time route adjustment - Driver assignment optimization ## Prerequisites - Python 3.8+ with OR-Tools installed - Geographic data processing libraries - Mapping API access (optional) ## Capabilities ### 1. Capacitated VRP (CVRP) ```python from ortools.constraint_solver import routing_enums_pb2 from ortools.constraint_solver import pywrapcp def solve_cvrp(distance_matrix, demands, vehicle_capacities, depot=0): """ Solve Capacitated Vehicle Routing Problem """ manager = pywrapcp.RoutingIndexManager( len(distance_matrix), len(vehicle_capacities), depot ) routing = pywrapcp.RoutingModel(manager) # Distance callback def distance_callback(from_index, to_index): from_node = manager.IndexToNode(from_index) to_node = manager.Index

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Capabilities
  4. 1. Capacitated VRP (CVRP)
  5. 2. VRP with Time Windows (VRPTW)
  6. 3. Multi-Depot VRP
  7. 4. Pickup and Delivery
  8. 5. Route Visualization
  9. Process Integration
  10. Output Format
  11. Tools/Libraries
  12. Best Practices
  13. Constraints
More from babysitter
All skills →
About this skill
What does the vehicle-routing-solver skill do?

Vehicle routing problem solver for logistics optimization with time windows, capacity constraints, and multiple depots.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill vehicle-routing-solver --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 a5c-ai/babysitter, a repository with 1,642 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