Install
openclaw skills install @voronindenis5/packing-proGenerates smart, categorized packing lists based on destination weather, trip duration, activities, and transport type. Produces weighted checklists with a critical-items section and weather-adaptive recommendations.
openclaw skills install @voronindenis5/packing-proAn agent skill that generates smart, categorized packing lists so you never forget essentials again.
# Basic trip (interactive prompts)
python3 scripts/packing_pro.py
# Full specification via CLI flags
python3 scripts/packing_pro.py \
--destination "Tokyo, Japan" \
--duration 7 \
--season winter \
--activities hiking photography \
--transport flight \
--output checklist.json
| Parameter | Example | Description |
|---|---|---|
--destination | "Bali, Indonesia" | Trip destination |
--duration | 7 | Number of days |
--season | summer | winter | spring | autumn | Season of travel |
--temp-c | 25 | Optional: override average temperature |
--activities | hiking swimming business | Space-separated activity list |
--transport | flight | train | car | bus | Primary transport |
--output | checklist.json | Save to file (default: print to stdout) |
The script produces a structured JSON packing list:
{
"destination": "Bali, Indonesia",
"duration_days": 7,
"season": "summer",
"transport": "flight",
"estimated_total_weight_g": 6800,
"critical_items": [
{"item": "Passport", "category": "documents", "weight_g": 30, "note": "Check expiry >6 months"}
],
"categories": {
"clothing": [
{"item": "T-shirts", "quantity": 8, "weight_g": 150}
],
"toiletries": [...],
"electronics": [...],
"activity_gear": [...]
}
}
references/item-database.md — full catalog of packable items with weightsreferences/weather-logic.md — weather and activity selection rulesMIT © Denis Voronin