Smart Packing List Generator
Researches weather forecasts and destination requirements via Brave Search, then generates a context-aware packing checklist stored as a trackable markdown file. Prerequisites: brave-search MCP.
MCP get_skill({ skillId: "smart-packing-list-generator-1edadec7" })Use this skill with your agent
Create a free account and connect via MCP
# Smart Packing List Generator
Generate a packing list that's actually useful โ based on real weather data, your trip activities, airline restrictions, and destination-specific needs.
## When to Use
- "Create a packing list for my trip to Iceland next week"
- "What should I pack for a 3-day business trip to Miami?"
- "Packing list for camping in Colorado in October"
## Requirements
- **Brave Search MCP** for weather and destination data
- Filesystem for checklist storage
## Workflow
### Step 1 โ Gather Trip Details
Collect:
- **Destination** and **dates**
- **Trip type** (business, leisure, adventure, wedding, conference)
- **Activities planned** (hiking, beach, formal dinner, meetings)
- **Airline** (for baggage limits)
- **Accommodation type** (hotel, hostel, camping, Airbnb)
### Step 2 โ Research Weather & Conditions
```
brave_web_search: "{DESTINATION} weather forecast {DATES}"
brave_web_search: "{DESTINATION} weather {MONTH} average temperature rain"
brave_web_search: "{AIRLINE} carry-on baggage size weight limit {YEAR}"
brave_web_search: "{DESTINATION} visa requirements {NATIONALITY}"
brave_web_search: "{DESTINATION} power outlet plug type voltage"
```
Extract:
- Temperature range (high/low)
- Rain probability
- Humidity level
- Airline carry-on dimensions and weight limit
- Electrical standards
- Any restricted items for that country
### Step 3 โ Generate Context-Aware List
```markdown
# Packing List: {DESTINATION} ({DATES})
๐ก๏ธ Weather: {TEMP_LOW}ยฐ-{TEMP_HIGH}ยฐF, {RAIN_CHANCE}% rain chance
โ๏ธ Airline: {AIRLINE} โ carry-on: {DIMENSIONS}, {WEIGHT} limit
๐ Power: Type {PLUG_TYPE} โ adapter needed: {YES/NO}
## ๐ Clothing
- [ ] {N} shirts/tops (layers for {temp range})
- [ ] {N} pants/shorts
- [ ] {N} underwear + socks
- [ ] 1 jacket/sweater ({weight based on weather})
- [ ] Rain jacket (>{RAIN}% rain chance)
- [ ] Comfortable walking shoes
- [ ] {Activity-specific: swimsuit / hiking boots / formal outfit}
## ๐งด Toiletries
- [ ] Toothbrush + toothpaste
- [ ] Deodorant
- [ ] Sunscreen SPF 50 (UV index: {UV})
- [ ] Prescription medications
- [ ] {Climate-specific: lip balm / mosquito repellent / moisturizer}
## ๐ฑ Electronics
- [ ] Phone + charger
- [ ] Power adapter ({PLUG_TYPE})
- [ ] Portable battery pack
- [ ] {Activity-specific: camera / laptop / kindle}
## ๐ Documents
- [ ] Passport (valid until {EXP_REQ})
- [ ] Visa ({required/not required})
- [ ] Travel insurance docs
- [ ] Hotel confirmation
- [ ] Flight tickets
## ๐ Extras
- [ ] Reusable water bottle
- [ ] Snacks for flight
- [ ] {Destination-specific: temple scarf / hiking poles / formal shoes}
```
### Step 4 โ Save Checklist
```bash
mkdir -p outputs/travel
cat > "outputs/travel/packing-{destination}-{date}.md" << 'EOF'
{PACKING_LIST}
EOF
```
Tell user: "Checklist saved. Check off items as you pack. Open the file to track progress."
## Important Rules
- Always check current weather, not historical averages
- Note airline-specific liquid restrictions for carry-on
- Flag items that can't go in carry-on (scissors, large liquids)
- Suggest buying locally vs. packing when it makes sense
## Example Prompts
- "Packing list for 5 days in Tokyo next week, spring weather"
- "What do I need for a weekend camping trip in Colorado?"
- "Business trip packing list โ 2 days in NYC, flying United"Related Skills
More skills in Travel & Logistics
Flight & Hotel Price Research
Researches flight and hotel prices via Brave Search, compares options across booking sites, and generates a comparison table with direct booking links. Prerequisites: brave-search MCP.
Restaurant & Activity Finder
Searches for restaurants, cafes, and activities near a location using Brave Search and local search. Returns curated recommendations with ratings, prices, and map links. Prerequisites: brave-search MCP.
Travel Budget Calculator & Tracker
Researches real costs at your destination via Brave Search, builds a detailed budget estimate with currency conversion, and creates a trackable expense spreadsheet. Prerequisites: brave-search MCP, python3.
Trip Research & Itinerary Planner
Researches destinations via Brave Search, builds day-by-day itineraries with real venues, and generates a shareable travel plan with maps links and booking URLs. Prerequisites: brave-search MCP, jq.
Explore Other Categories
Skills from other categories with shared topics
Alliances
Airline alliance membership (Star Alliance, oneworld, SkyTeam) and cross-alliance booking relationships. Maps which loyalty programs book which airlines, including bilateral partnerships outside alliances.
American Airlines
Check American Airlines AAdvantage balance, elite status, and loyalty points via Patchright. Handles email 2FA with 6-box code entry. Uses persistent browser profiles to skip 2FA on subsequent runs.
Amex Travel
Search Amex travel portal for cash prices, MR points pricing, IAP discounts, and FHR/THC hotel benefits via Patchright. Use when comparing pay-with-points portal pricing to award alternatives.