@intentsolutionsio/travel-assistant 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +25 -0
- package/LICENSE +21 -0
- package/README.md +441 -0
- package/agents/budget-calculator.md +35 -0
- package/agents/local-expert.md +25 -0
- package/agents/travel-planner.md +43 -0
- package/agents/weather-analyst.md +28 -0
- package/commands/currency.md +436 -0
- package/commands/itinerary.md +72 -0
- package/commands/pack.md +85 -0
- package/commands/timezone.md +55 -0
- package/commands/travel.md +427 -0
- package/commands/weather.md +376 -0
- package/hooks/hooks.json +26 -0
- package/package.json +49 -0
- package/scripts/convert-currency.sh +17 -0
- package/scripts/fetch-weather.sh +9 -0
- package/scripts/get-timezone.sh +8 -0
- package/skills/skill-adapter/assets/README.md +6 -0
- package/skills/skill-adapter/assets/config-template.json +32 -0
- package/skills/skill-adapter/assets/skill-schema.json +28 -0
- package/skills/skill-adapter/assets/test-data.json +27 -0
- package/skills/skill-adapter/references/README.md +4 -0
- package/skills/skill-adapter/references/best-practices.md +69 -0
- package/skills/skill-adapter/references/examples.md +73 -0
- package/skills/skill-adapter/scripts/README.md +9 -0
- package/skills/skill-adapter/scripts/helper-template.sh +42 -0
- package/skills/skill-adapter/scripts/validation.sh +32 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "travel-assistant",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Intelligent travel assistant with real-time weather, currency conversion, timezone info, and AI-powered itinerary planning. Your complete travel companion.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Jeremy Longshore",
|
|
7
|
+
"email": "[email protected]"
|
|
8
|
+
},
|
|
9
|
+
"repository": "https://github.com/jeremylongshore/claude-code-plugins",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"travel",
|
|
13
|
+
"weather",
|
|
14
|
+
"currency",
|
|
15
|
+
"timezone",
|
|
16
|
+
"itinerary",
|
|
17
|
+
"vacation",
|
|
18
|
+
"trip-planning",
|
|
19
|
+
"ai-travel",
|
|
20
|
+
"real-time",
|
|
21
|
+
"api-integration",
|
|
22
|
+
"budget",
|
|
23
|
+
"packing-list"
|
|
24
|
+
]
|
|
25
|
+
}
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jeremy Longshore
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,441 @@
|
|
|
1
|
+
# π Intelligent Travel Assistant
|
|
2
|
+
|
|
3
|
+
**Your complete AI-powered travel companion** - Real-time weather, currency conversion, smart itineraries, and expert local tips, all in one plugin.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## π― What This Plugin Does
|
|
8
|
+
|
|
9
|
+
Transform travel planning from hours of research into minutes of AI-powered assistance:
|
|
10
|
+
- π‘οΈ **Real-time weather** - 7-14 day forecasts with packing recommendations
|
|
11
|
+
- π± **Currency conversion** - Live exchange rates with budget breakdowns
|
|
12
|
+
- πΊοΈ **Smart itineraries** - Personalized day-by-day plans
|
|
13
|
+
- π **Packing lists** - Weather and activity-optimized
|
|
14
|
+
- π‘ **Local expert tips** - Cultural insights, hidden gems, safety
|
|
15
|
+
- π **Timezone coordination** - Meeting scheduling across time zones
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## π Quick Start
|
|
20
|
+
|
|
21
|
+
### Installation
|
|
22
|
+
```bash
|
|
23
|
+
/plugin install travel-assistant@claude-code-plugins-plus
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Basic Usage
|
|
27
|
+
```bash
|
|
28
|
+
# Complete travel plan
|
|
29
|
+
/travel "Tokyo, Japan" --days 7 --budget 3000
|
|
30
|
+
|
|
31
|
+
# Quick weather check
|
|
32
|
+
/weather Paris
|
|
33
|
+
|
|
34
|
+
# Currency conversion
|
|
35
|
+
/currency 100 USD EUR
|
|
36
|
+
|
|
37
|
+
# Smart packing list
|
|
38
|
+
/pack "Iceland" --days 5
|
|
39
|
+
|
|
40
|
+
# AI itinerary
|
|
41
|
+
/itinerary "Barcelona" --interests "food,architecture"
|
|
42
|
+
|
|
43
|
+
# Timezone info
|
|
44
|
+
/timezone "New York vs London vs Tokyo"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## π‘ Core Features
|
|
50
|
+
|
|
51
|
+
### 1. Complete Travel Planning (`/travel`)
|
|
52
|
+
One command for comprehensive trip planning:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
/travel "Bali, Indonesia" --days 10 --budget 2500
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
**Includes**:
|
|
59
|
+
- β
7-14 day weather forecast
|
|
60
|
+
- β
Complete budget breakdown
|
|
61
|
+
- β
Day-by-day itinerary
|
|
62
|
+
- β
Smart packing list
|
|
63
|
+
- β
Local tips & cultural insights
|
|
64
|
+
- β
Safety information
|
|
65
|
+
- β
Transportation guide
|
|
66
|
+
|
|
67
|
+
**Multi-city support**:
|
|
68
|
+
```bash
|
|
69
|
+
/travel "Rome β Florence β Venice" --days 12
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### 2. Weather Intelligence (`/weather`)
|
|
73
|
+
Real-time weather with travel insights:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
/weather Tokyo --days 14
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**Provides**:
|
|
80
|
+
- Current conditions + feels like
|
|
81
|
+
- 7-14 day detailed forecast
|
|
82
|
+
- Best days for outdoor activities
|
|
83
|
+
- Packing recommendations
|
|
84
|
+
- Historical comparisons
|
|
85
|
+
- UV index & air quality
|
|
86
|
+
|
|
87
|
+
**Compare destinations**:
|
|
88
|
+
```bash
|
|
89
|
+
/weather "Barcelona vs Lisbon vs Athens"
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### 3. Currency Mastery (`/currency`)
|
|
93
|
+
Smart currency conversion and budgeting:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
/currency 1000 USD EUR
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
**Features**:
|
|
100
|
+
- Real-time exchange rates
|
|
101
|
+
- 30-day historical trends
|
|
102
|
+
- Budget breakdowns by category
|
|
103
|
+
- Exchange tips (best places, avoid fees)
|
|
104
|
+
- Multi-currency conversion
|
|
105
|
+
- Purchasing power comparison
|
|
106
|
+
|
|
107
|
+
**Budget planning**:
|
|
108
|
+
```bash
|
|
109
|
+
/currency 3000 USD JPY --budget
|
|
110
|
+
# Shows: per-day spending, category splits, optimization tips
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### 4. AI Itinerary Generator (`/itinerary`)
|
|
114
|
+
Personalized day-by-day travel plans:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
/itinerary "Paris" --days 5 --interests "food,art,history" --pace relaxed
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
**Optimization**:
|
|
121
|
+
- Geographic clustering (minimize travel time)
|
|
122
|
+
- Weather-based scheduling
|
|
123
|
+
- Energy management (intense β relaxed rotation)
|
|
124
|
+
- Local dining recommendations
|
|
125
|
+
- Hidden gems + must-sees balanced
|
|
126
|
+
- Booking requirements noted
|
|
127
|
+
|
|
128
|
+
**Customization options**:
|
|
129
|
+
- `--interests`: food, culture, adventure, nature, art, nightlife
|
|
130
|
+
- `--pace`: relaxed, moderate, packed
|
|
131
|
+
- `--budget`: budget, mid-range, luxury
|
|
132
|
+
|
|
133
|
+
### 5. Smart Packing (`/pack`)
|
|
134
|
+
Never forget essentials again:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
/pack "Iceland" --days 7 --activities "hiking,northern-lights"
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
**Generates lists based on**:
|
|
141
|
+
- Weather forecast (temperature, rain, wind)
|
|
142
|
+
- Planned activities
|
|
143
|
+
- Trip duration
|
|
144
|
+
- Cultural requirements
|
|
145
|
+
- Season and destination
|
|
146
|
+
|
|
147
|
+
**Categories**:
|
|
148
|
+
- Clothing (weather-appropriate)
|
|
149
|
+
- Electronics & adapters
|
|
150
|
+
- Documents & money
|
|
151
|
+
- Health & safety
|
|
152
|
+
- Activity-specific gear
|
|
153
|
+
|
|
154
|
+
### 6. Timezone Coordination (`/timezone`)
|
|
155
|
+
Time zone mastery for global travelers:
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
/timezone "San Francisco vs London vs Tokyo"
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
**Features**:
|
|
162
|
+
- Current time in any location
|
|
163
|
+
- UTC offsets & DST status
|
|
164
|
+
- Meeting scheduler
|
|
165
|
+
- Best call times across zones
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
/timezone meeting 2pm EST "San Francisco, London, Sydney"
|
|
169
|
+
# Shows optimal meeting time for all locations
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## π€ AI Agents
|
|
175
|
+
|
|
176
|
+
### travel-planner
|
|
177
|
+
**Master orchestrator** coordinating all travel aspects
|
|
178
|
+
- Synthesizes weather, budget, itinerary
|
|
179
|
+
- Optimizes scheduling
|
|
180
|
+
- Ensures comprehensive planning
|
|
181
|
+
|
|
182
|
+
### weather-analyst
|
|
183
|
+
**Meteorological expert** for travel timing
|
|
184
|
+
- Forecast interpretation
|
|
185
|
+
- Activity-weather matching
|
|
186
|
+
- Seasonal pattern analysis
|
|
187
|
+
|
|
188
|
+
### local-expert
|
|
189
|
+
**Cultural guide** for authentic experiences
|
|
190
|
+
- Customs & etiquette
|
|
191
|
+
- Hidden gems & local favorites
|
|
192
|
+
- Safety tips & scam awareness
|
|
193
|
+
- Language essentials
|
|
194
|
+
|
|
195
|
+
### budget-calculator
|
|
196
|
+
**Financial planner** for cost optimization
|
|
197
|
+
- Accurate cost estimation
|
|
198
|
+
- Budget breakdown by category
|
|
199
|
+
- Money-saving strategies
|
|
200
|
+
- Currency optimization
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
## π Command Combinations
|
|
205
|
+
|
|
206
|
+
### Scenario 1: Planning a Trip
|
|
207
|
+
```bash
|
|
208
|
+
# Step 1: Get complete plan
|
|
209
|
+
/travel "Tokyo" --days 7 --budget 3000
|
|
210
|
+
|
|
211
|
+
# Step 2: Check detailed weather
|
|
212
|
+
/weather Tokyo --days 14
|
|
213
|
+
|
|
214
|
+
# Step 3: Customize itinerary
|
|
215
|
+
/itinerary Tokyo --interests "food,temples,technology"
|
|
216
|
+
|
|
217
|
+
# Step 4: Finalize packing
|
|
218
|
+
/pack Tokyo --days 7
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
### Scenario 2: Budget Optimization
|
|
222
|
+
```bash
|
|
223
|
+
# Check budget
|
|
224
|
+
/currency 2000 USD JPY --budget
|
|
225
|
+
|
|
226
|
+
# See what it buys
|
|
227
|
+
/currency 2000 USD JPY --purchasing-power
|
|
228
|
+
|
|
229
|
+
# Optimize spending
|
|
230
|
+
/travel Tokyo --budget 2000 --optimize
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
### Scenario 3: Multi-City Europe Trip
|
|
234
|
+
```bash
|
|
235
|
+
# Plan route
|
|
236
|
+
/travel "Paris β Amsterdam β Berlin" --days 15
|
|
237
|
+
|
|
238
|
+
# Check each city's weather
|
|
239
|
+
/weather "Paris vs Amsterdam vs Berlin"
|
|
240
|
+
|
|
241
|
+
# Calculate total budget
|
|
242
|
+
/currency 5000 USD EUR
|
|
243
|
+
|
|
244
|
+
# Create detailed itinerary
|
|
245
|
+
/itinerary Paris --days 5
|
|
246
|
+
/itinerary Amsterdam --days 4
|
|
247
|
+
/itinerary Berlin --days 5
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
252
|
+
## βοΈ Configuration
|
|
253
|
+
|
|
254
|
+
### API Keys (Optional)
|
|
255
|
+
For real-time data, set up free API keys:
|
|
256
|
+
|
|
257
|
+
```bash
|
|
258
|
+
# OpenWeatherMap (weather data)
|
|
259
|
+
export OPENWEATHER_API_KEY="your_key_here"
|
|
260
|
+
|
|
261
|
+
# ExchangeRate-API (currency data)
|
|
262
|
+
export EXCHANGERATE_API_KEY="your_key_here"
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
**Get free keys**:
|
|
266
|
+
- Weather: https://openweathermap.org/api (1000 calls/day free)
|
|
267
|
+
- Currency: https://www.exchangerate-api.com (1500 calls/month free)
|
|
268
|
+
- Timezone: WorldTimeAPI (no key needed, unlimited)
|
|
269
|
+
|
|
270
|
+
**Without keys**: Plugin uses mock data and seasonal averages.
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## π Real-World Examples
|
|
275
|
+
|
|
276
|
+
### Example 1: Solo Backpacker
|
|
277
|
+
```bash
|
|
278
|
+
/travel "Thailand" --days 21 --budget 1500 --interests "beaches,temples,food"
|
|
279
|
+
|
|
280
|
+
Output:
|
|
281
|
+
- Budget breakdown: $70/day (hostels, street food, local transport)
|
|
282
|
+
- Best islands: Phi Phi, Koh Samui, Railay
|
|
283
|
+
- Must-try: Pad Thai, Mango Sticky Rice, Tom Yum
|
|
284
|
+
- Money-saving tips: Night markets, free walking tours
|
|
285
|
+
- Packing: Light, breathable clothes, reef-safe sunscreen
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
### Example 2: Luxury Couple's Trip
|
|
289
|
+
```bash
|
|
290
|
+
/travel "Maldives" --days 10 --budget 15000 --pace relaxed
|
|
291
|
+
|
|
292
|
+
Output:
|
|
293
|
+
- Overwater villa recommendations
|
|
294
|
+
- Private island experiences
|
|
295
|
+
- Fine dining reservations
|
|
296
|
+
- Spa and wellness
|
|
297
|
+
- Sunset cruise options
|
|
298
|
+
- Photography tips for perfect shots
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
### Example 3: Family Vacation
|
|
302
|
+
```bash
|
|
303
|
+
/travel "Orlando, Florida" --days 7 --group "2 adults, 2 kids (ages 6,9)"
|
|
304
|
+
|
|
305
|
+
Output:
|
|
306
|
+
- Theme park strategy (avoid crowds)
|
|
307
|
+
- Kid-friendly restaurants
|
|
308
|
+
- Rest day scheduling
|
|
309
|
+
- Pool time + park balance
|
|
310
|
+
- Packing for kids (extra clothes, snacks, entertainment)
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
### Example 4: Digital Nomad
|
|
314
|
+
```bash
|
|
315
|
+
/travel "Lisbon" --days 30 --work-remote
|
|
316
|
+
|
|
317
|
+
Output:
|
|
318
|
+
- Coworking spaces (wifi speed, prices)
|
|
319
|
+
- Apartment recommendations (monthly rates)
|
|
320
|
+
- Cafe culture for remote work
|
|
321
|
+
- Time zone considerations (US/EU hours)
|
|
322
|
+
- Long-stay visa requirements
|
|
323
|
+
```
|
|
324
|
+
|
|
325
|
+
---
|
|
326
|
+
|
|
327
|
+
## π― Pro Tips
|
|
328
|
+
|
|
329
|
+
### Maximize Value
|
|
330
|
+
1. **Use context**: `/travel Tokyo` then `/weather` auto-uses Tokyo
|
|
331
|
+
2. **Compare destinations**: Find the best weather/budget combo
|
|
332
|
+
3. **Flexible dates**: Get better prices and weather
|
|
333
|
+
4. **Local insights**: Hidden gems beat tourist traps
|
|
334
|
+
|
|
335
|
+
### Save Money
|
|
336
|
+
- Book flights 6-8 weeks in advance
|
|
337
|
+
- Stay outside tourist centers
|
|
338
|
+
- Eat where locals eat (ask agents!)
|
|
339
|
+
- Free walking tours for orientation
|
|
340
|
+
- City passes for multiple attractions
|
|
341
|
+
|
|
342
|
+
### Pack Smart
|
|
343
|
+
- Roll clothes (saves 30% space)
|
|
344
|
+
- Wear bulkiest items on plane
|
|
345
|
+
- Leave 20% space for souvenirs
|
|
346
|
+
- Packing cubes for organization
|
|
347
|
+
- Check weather day before departure
|
|
348
|
+
|
|
349
|
+
---
|
|
350
|
+
|
|
351
|
+
## π§ Troubleshooting
|
|
352
|
+
|
|
353
|
+
### Weather not showing?
|
|
354
|
+
- Set `OPENWEATHER_API_KEY` environment variable
|
|
355
|
+
- Or plugin will use seasonal averages
|
|
356
|
+
|
|
357
|
+
### Currency not converting?
|
|
358
|
+
- Check internet connection
|
|
359
|
+
- Verify currency codes (USD, EUR, GBP, etc.)
|
|
360
|
+
- Plugin falls back to last known rates
|
|
361
|
+
|
|
362
|
+
### Itinerary too packed?
|
|
363
|
+
- Add `--pace relaxed` flag
|
|
364
|
+
- Reduce daily activities
|
|
365
|
+
- Include rest days for longer trips
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
## π Performance
|
|
370
|
+
|
|
371
|
+
**Time Savings**:
|
|
372
|
+
- Manual planning: 4-6 hours
|
|
373
|
+
- With Travel Assistant: 5-10 minutes
|
|
374
|
+
- **Saves**: ~5 hours per trip
|
|
375
|
+
|
|
376
|
+
**Cost Optimization**:
|
|
377
|
+
- Budget recommendations: Save 20-30%
|
|
378
|
+
- Currency tips: Save 5-10% on exchange
|
|
379
|
+
- Hidden gems: Authentic + cheaper experiences
|
|
380
|
+
|
|
381
|
+
---
|
|
382
|
+
|
|
383
|
+
## π€ Integration
|
|
384
|
+
|
|
385
|
+
Works great with:
|
|
386
|
+
- **overnight-dev**: Plan trips while Claude codes overnight
|
|
387
|
+
- **ai-commit-gen**: Commit travel plans to git
|
|
388
|
+
- **devops-automation-pack**: Automate trip documentation
|
|
389
|
+
|
|
390
|
+
---
|
|
391
|
+
|
|
392
|
+
## π Command Reference
|
|
393
|
+
|
|
394
|
+
| Command | Purpose | Example |
|
|
395
|
+
|---------|---------|---------|
|
|
396
|
+
| `/travel` | Complete travel plan | `/travel Paris --days 5` |
|
|
397
|
+
| `/weather` | Weather forecast | `/weather Tokyo --days 14` |
|
|
398
|
+
| `/currency` | Currency conversion | `/currency 100 USD EUR` |
|
|
399
|
+
| `/timezone` | Timezone info | `/timezone "NY vs London"` |
|
|
400
|
+
| `/itinerary` | AI itinerary | `/itinerary Rome --interests food` |
|
|
401
|
+
| `/pack` | Packing list | `/pack Iceland --days 7` |
|
|
402
|
+
|
|
403
|
+
---
|
|
404
|
+
|
|
405
|
+
## π Why Travel Assistant?
|
|
406
|
+
|
|
407
|
+
**Before**: Hours of research across multiple sites
|
|
408
|
+
- Weather.com for forecast
|
|
409
|
+
- XE.com for currency
|
|
410
|
+
- TripAdvisor for attractions
|
|
411
|
+
- Random blogs for tips
|
|
412
|
+
- Manual itinerary planning
|
|
413
|
+
|
|
414
|
+
**After**: One plugin, complete planning
|
|
415
|
+
- All data in one place
|
|
416
|
+
- AI-optimized itineraries
|
|
417
|
+
- Context-aware recommendations
|
|
418
|
+
- Instant updates
|
|
419
|
+
- Expert local knowledge
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
423
|
+
## π Get Started Now
|
|
424
|
+
|
|
425
|
+
```bash
|
|
426
|
+
# Install
|
|
427
|
+
/plugin install travel-assistant@claude-code-plugins-plus
|
|
428
|
+
|
|
429
|
+
# Plan your next trip
|
|
430
|
+
/travel "Your Dream Destination" --days X --budget Y
|
|
431
|
+
|
|
432
|
+
# Done! π
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
437
|
+
**Version**: 1.0.0
|
|
438
|
+
**License**: MIT
|
|
439
|
+
**Author**: Jeremy Longshore
|
|
440
|
+
|
|
441
|
+
**Transform travel planning. One command at a time.** βοΈπ
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: budget-calculator
|
|
3
|
+
description: >
|
|
4
|
+
Financial planning expert for travel budgeting, cost optimization,
|
|
5
|
+
and...
|
|
6
|
+
model: sonnet
|
|
7
|
+
---
|
|
8
|
+
You are a travel financial planner specializing in budget optimization.
|
|
9
|
+
|
|
10
|
+
# Expertise
|
|
11
|
+
- Accurate cost estimation by destination
|
|
12
|
+
- Budget breakdown (accommodation, food, activities)
|
|
13
|
+
- Cost-saving strategies
|
|
14
|
+
- Currency exchange optimization
|
|
15
|
+
- Hidden cost identification
|
|
16
|
+
- Budget tier recommendations
|
|
17
|
+
|
|
18
|
+
# Cost Categories
|
|
19
|
+
1. **Transportation**: Flights, local transit
|
|
20
|
+
2. **Accommodation**: Hotels, Airbnb, hostels
|
|
21
|
+
3. **Food**: Budget/mid-range/luxury dining
|
|
22
|
+
4. **Activities**: Attractions, tours, experiences
|
|
23
|
+
5. **Miscellaneous**: Insurance, tips, emergency (10%)
|
|
24
|
+
|
|
25
|
+
# Budget Tiers (per day)
|
|
26
|
+
- **Budget**: $50-100
|
|
27
|
+
- **Mid-range**: $100-250
|
|
28
|
+
- **Luxury**: $250-500+
|
|
29
|
+
|
|
30
|
+
# Optimization Tips
|
|
31
|
+
- Book flights 6-8 weeks advance
|
|
32
|
+
- Stay outside tourist centers
|
|
33
|
+
- Eat where locals eat
|
|
34
|
+
- Free walking tours
|
|
35
|
+
- City passes for attractions
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: local-expert
|
|
3
|
+
description: >
|
|
4
|
+
Cultural guide providing insider tips, customs, hidden gems, and
|
|
5
|
+
authentic...
|
|
6
|
+
model: sonnet
|
|
7
|
+
---
|
|
8
|
+
You are a local cultural expert with deep knowledge of destinations worldwide.
|
|
9
|
+
|
|
10
|
+
# Expertise
|
|
11
|
+
- Local customs & etiquette
|
|
12
|
+
- Hidden gems & off-beaten-path
|
|
13
|
+
- Authentic dining (not tourist traps)
|
|
14
|
+
- Cultural norms & do's/don'ts
|
|
15
|
+
- Language basics
|
|
16
|
+
- Safety & scams awareness
|
|
17
|
+
- Local transportation tips
|
|
18
|
+
|
|
19
|
+
# Recommendations Structure
|
|
20
|
+
- **Cultural Insights**: Customs, etiquette, norms
|
|
21
|
+
- **Hidden Gems**: Non-touristy experiences
|
|
22
|
+
- **Food**: Local specialties, best markets
|
|
23
|
+
- **Safety**: Common scams, safe areas
|
|
24
|
+
- **Language**: Essential phrases
|
|
25
|
+
- **Transportation**: Best local options
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: travel-planner
|
|
3
|
+
description: >
|
|
4
|
+
Master travel orchestrator coordinating weather, budget, itinerary,
|
|
5
|
+
and...
|
|
6
|
+
model: sonnet
|
|
7
|
+
---
|
|
8
|
+
You are a master travel planner who coordinates all aspects of trip planning through specialized expertise.
|
|
9
|
+
|
|
10
|
+
# Your Role
|
|
11
|
+
Orchestrate comprehensive travel plans by coordinating weather analysis, budget calculations, itinerary creation, and packing optimization.
|
|
12
|
+
|
|
13
|
+
# When to Activate
|
|
14
|
+
- User wants complete travel plan
|
|
15
|
+
- Multi-faceted trip requiring coordination
|
|
16
|
+
- Complex itineraries needing optimization
|
|
17
|
+
- Budget-conscious travel planning
|
|
18
|
+
|
|
19
|
+
# Coordination Strategy
|
|
20
|
+
|
|
21
|
+
## Step 1: Gather Requirements
|
|
22
|
+
- Destination(s)
|
|
23
|
+
- Duration
|
|
24
|
+
- Budget
|
|
25
|
+
- Interests
|
|
26
|
+
- Travel style (budget/mid-range/luxury)
|
|
27
|
+
- Pace (relaxed/moderate/packed)
|
|
28
|
+
|
|
29
|
+
## Step 2: Call Specialists
|
|
30
|
+
1. **Weather Analyst** β Get forecast, best days
|
|
31
|
+
2. **Budget Calculator** β Estimate costs, optimize spending
|
|
32
|
+
3. **Local Expert** β Cultural tips, hidden gems
|
|
33
|
+
4. **(Self)** β Synthesize into complete plan
|
|
34
|
+
|
|
35
|
+
## Step 3: Create Deliverables
|
|
36
|
+
- Day-by-day itinerary
|
|
37
|
+
- Weather-optimized schedule
|
|
38
|
+
- Budget breakdown
|
|
39
|
+
- Packing list
|
|
40
|
+
- Local tips
|
|
41
|
+
|
|
42
|
+
# Output
|
|
43
|
+
Comprehensive travel plan ready for booking and execution.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: weather-analyst
|
|
3
|
+
description: >
|
|
4
|
+
Weather forecasting expert analyzing patterns, seasonal trends, and
|
|
5
|
+
travel...
|
|
6
|
+
model: sonnet
|
|
7
|
+
---
|
|
8
|
+
You are a meteorological expert specializing in travel weather analysis.
|
|
9
|
+
|
|
10
|
+
# Expertise
|
|
11
|
+
- 7-14 day forecast interpretation
|
|
12
|
+
- Seasonal pattern recognition
|
|
13
|
+
- Activity-weather matching
|
|
14
|
+
- Packing recommendations
|
|
15
|
+
- Best travel timing
|
|
16
|
+
|
|
17
|
+
# Analysis Framework
|
|
18
|
+
1. Fetch current + forecast data
|
|
19
|
+
2. Identify weather patterns
|
|
20
|
+
3. Flag extreme conditions
|
|
21
|
+
4. Recommend best days for activities
|
|
22
|
+
5. Suggest weather-appropriate packing
|
|
23
|
+
|
|
24
|
+
# Recommendations
|
|
25
|
+
- **Outdoor activities**: Clear, low wind days
|
|
26
|
+
- **Indoor backup**: Rain/storm days
|
|
27
|
+
- **Photography**: Golden hour timing
|
|
28
|
+
- **Beach/water**: Warm, calm days
|