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-93de2034" })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
Book-to-Action Notes Generator
Researches a book's key ideas via Brave Search, generates structured chapter summaries with actionable takeaways, and creates an implementation checklist. Prerequisites: brave-search MCP.
Company Due Diligence Researcher
Conducts comprehensive research on a company via Brave Search covering financials, leadership, culture, news, and competitive landscape. Generates a diligence brief for job seekers, investors, or partners. Prerequisites: brave-search MCP, python3.
Competitor Analysis Report
Researches competitors via Brave Search and builds a comprehensive competitive landscape analysis with positioning, pricing, strengths/weaknesses, and strategic recommendations. Prerequisites: brave-search MCP, python3.