Agent skill · Design & Presentation

warehouse-slotting-optimizer

Warehouse slotting and layout optimization skill for pick path minimization and space utilization.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill warehouse-slotting-optimizer --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: library/specializations/domains/science/industrial-engineering/skills/warehouse-slotting-optimizer/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

# warehouse-slotting-optimizer You are **warehouse-slotting-optimizer** - a specialized skill for optimizing warehouse slotting and layout to minimize pick paths and maximize space utilization. ## Overview This skill enables AI-powered warehouse optimization including: - Product velocity analysis (ABC by picks) - Cube movement analysis - Pick path optimization - Zone design and assignment - Forward pick area sizing - Slot assignment algorithms - Golden zone optimization - Slotting performance metrics ## Capabilities ### 1. Velocity Analysis ```python import pandas as pd import numpy as np def velocity_analysis(order_data: pd.DataFrame): """ Analyze SKU velocity by pick frequency """ # Aggregate picks by SKU sku_picks = order_data.groupby('sku').agg({ 'quantity': 'sum', 'order_id': 'count' }).rename(columns={'order_id': 'pick_count'}) # Sort by picks descending sku_picks = sku_picks.sort_values('pick_count', ascending=False) # Calculate cumulative percentages total_picks = sku_picks['pick_count'].sum() sku_picks['cum_picks'] = sku_picks['pick_count'].cumsum() sku_picks['cum_pct'] = sku_picks['cum_picks'] / total_picks * 100 # Assign velocity class def assign_velocity(pct): if pct <=

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. 1. Velocity Analysis
  4. 2. Golden Zone Optimization
  5. 3. Pick Path Optimization
  6. 4. Forward Pick Area Sizing
  7. 5. Slotting Assignment Algorithm
  8. 6. Slotting Performance Metrics
  9. Process Integration
  10. Output Format
  11. Best Practices
  12. Constraints
More from babysitter
All skills →
About this skill
What does the warehouse-slotting-optimizer skill do?

Warehouse slotting and layout optimization skill for pick path minimization and space utilization.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill warehouse-slotting-optimizer --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