tripkit 1.0.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/LICENSE +21 -0
- package/README.md +213 -0
- package/agent/AGENT-SKILL.md +105 -0
- package/agent/questionnaire.yaml +182 -0
- package/convert.js +65 -0
- package/docs/README.md +1 -0
- package/docs/screenshot.png +0 -0
- package/examples/oregon-spring-2026.yaml +588 -0
- package/package.json +52 -0
- package/renderers/html/tripkit-renderer.html +446 -0
- package/schema/tripkit.schema.yaml +132 -0
|
@@ -0,0 +1,588 @@
|
|
|
1
|
+
# ============================================================
|
|
2
|
+
# Oregon Spring Break 2026
|
|
3
|
+
# Generated from a real 6-day family road trip
|
|
4
|
+
# This serves as the reference example for TripKit
|
|
5
|
+
# ============================================================
|
|
6
|
+
|
|
7
|
+
trip:
|
|
8
|
+
title: "Oregon Spring Break 2026"
|
|
9
|
+
subtitle: "Redwoods · Coast · Waterfalls"
|
|
10
|
+
dates: "April 4–9, 2026"
|
|
11
|
+
total_days: 6
|
|
12
|
+
total_miles: "~1,600 mi"
|
|
13
|
+
total_stops: 19
|
|
14
|
+
travelers:
|
|
15
|
+
adults: 2
|
|
16
|
+
children: 2
|
|
17
|
+
ages: "Kids: 14, 17"
|
|
18
|
+
origin: "Folsom, CA"
|
|
19
|
+
vehicle: "SUV"
|
|
20
|
+
|
|
21
|
+
days:
|
|
22
|
+
# ========== DAY 1 ==========
|
|
23
|
+
- number: 1
|
|
24
|
+
title: "Folsom → Redwood National Park"
|
|
25
|
+
date: "Saturday, April 4"
|
|
26
|
+
status: completed
|
|
27
|
+
color: "#2d7a50"
|
|
28
|
+
|
|
29
|
+
summary:
|
|
30
|
+
drive: "7–7.5 hrs"
|
|
31
|
+
hike: "2–3 hrs"
|
|
32
|
+
miles: "~350 mi"
|
|
33
|
+
|
|
34
|
+
weather:
|
|
35
|
+
high: "55°F"
|
|
36
|
+
low: "40°F"
|
|
37
|
+
sky: "Mostly cloudy, coastal fog"
|
|
38
|
+
rain_chance: "20%"
|
|
39
|
+
note: "Long drive day. Foggy in the redwoods — atmospheric and beautiful."
|
|
40
|
+
|
|
41
|
+
meals:
|
|
42
|
+
breakfast: "Home — early departure"
|
|
43
|
+
lunch: "Pack lunch or stop in Redding/Red Bluff area on I-5"
|
|
44
|
+
dinner: "Chart Room, Crescent City — harbor views, fresh seafood"
|
|
45
|
+
|
|
46
|
+
lodging:
|
|
47
|
+
name: "Best Western Plus Northwoods Inn"
|
|
48
|
+
location: "Crescent City, California"
|
|
49
|
+
price_estimate: "~$130/night"
|
|
50
|
+
confirmation: "XXXXX1234"
|
|
51
|
+
booked: true
|
|
52
|
+
lat: 41.756
|
|
53
|
+
lng: -124.201
|
|
54
|
+
notes: "Pool, free hot breakfast, 10 min to Stout Grove"
|
|
55
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Best+Western+Plus+Northwoods+Inn+Crescent+City+CA"
|
|
56
|
+
|
|
57
|
+
tips:
|
|
58
|
+
- "Leave Folsom by 8 AM to arrive with daylight for hikes."
|
|
59
|
+
- "Lady Bird Johnson Grove is a gentle 1.5-mile loop — perfect leg stretch after the drive."
|
|
60
|
+
- "Prairie Creek has Roosevelt elk right in the parking lot."
|
|
61
|
+
|
|
62
|
+
stops:
|
|
63
|
+
- name: "Lady Bird Johnson Grove"
|
|
64
|
+
lat: 41.316
|
|
65
|
+
lng: -124.007
|
|
66
|
+
type: hike
|
|
67
|
+
label: "Hike"
|
|
68
|
+
description: "Perfect first redwood experience. Gentle 1.5-mile loop through ancient old-growth. Misty, quiet, cathedral-like. Ideal leg-stretch after the long drive."
|
|
69
|
+
duration: "45 min–1 hr"
|
|
70
|
+
parking_fee: "Free (Redwood NP)"
|
|
71
|
+
kid_friendly: true
|
|
72
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=41.316,-124.007"
|
|
73
|
+
|
|
74
|
+
- name: "Prairie Creek Redwoods Visitor Center"
|
|
75
|
+
lat: 41.378
|
|
76
|
+
lng: -124.028
|
|
77
|
+
type: hike
|
|
78
|
+
label: "Hike"
|
|
79
|
+
description: "Lush fern-carpeted canyon trails. Roosevelt elk often grazing right in the parking lot — kids love it. Multiple short trail options."
|
|
80
|
+
duration: "1–1.5 hrs"
|
|
81
|
+
parking_fee: "$8 CA State Parks"
|
|
82
|
+
kid_friendly: true
|
|
83
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=41.378,-124.028"
|
|
84
|
+
|
|
85
|
+
# ========== DAY 2 ==========
|
|
86
|
+
- number: 2
|
|
87
|
+
title: "Stout Grove → Boardman → Florence"
|
|
88
|
+
date: "Sunday, April 5"
|
|
89
|
+
status: completed
|
|
90
|
+
color: "#2e7db5"
|
|
91
|
+
|
|
92
|
+
summary:
|
|
93
|
+
drive: "5.5–6 hrs"
|
|
94
|
+
hike: "1–2 hrs"
|
|
95
|
+
miles: "~230 mi"
|
|
96
|
+
|
|
97
|
+
weather:
|
|
98
|
+
high: "54°F"
|
|
99
|
+
low: "42°F"
|
|
100
|
+
sky: "Showers AM, clearing PM"
|
|
101
|
+
rain_chance: "90% morning, clearing"
|
|
102
|
+
note: "Rain in the redwoods is magical — wet bark turns deep red. Windbreaker and waterproof shoes essential."
|
|
103
|
+
|
|
104
|
+
meals:
|
|
105
|
+
breakfast: "BW free breakfast, or Good Harvest Cafe in Crescent City"
|
|
106
|
+
lunch: "Gold Beach — Spinner's Seafood (Rogue River salmon) or Barnacle Bistro"
|
|
107
|
+
dinner: "After Heceta Head sunset (~8 PM): Bridgewater Fish House in Florence Old Town"
|
|
108
|
+
|
|
109
|
+
lodging:
|
|
110
|
+
name: "Best Western Pier Point Inn"
|
|
111
|
+
location: "Florence, Oregon"
|
|
112
|
+
price_estimate: "~$120/night"
|
|
113
|
+
confirmation: "XXXXX5678"
|
|
114
|
+
booked: true
|
|
115
|
+
lat: 43.970
|
|
116
|
+
lng: -124.098
|
|
117
|
+
notes: "River views, pool, hot tub, cooked breakfast. Walking distance to Old Town."
|
|
118
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Best+Western+Pier+Point+Inn+Florence+OR"
|
|
119
|
+
|
|
120
|
+
alerts:
|
|
121
|
+
- "Fern Canyon is CLOSED — landslide has blocked Davison Road (confirmed April 2026)."
|
|
122
|
+
|
|
123
|
+
tips:
|
|
124
|
+
- "Stout Grove is 28 min from Crescent City via Howland Hill Road — narrow unpaved road through old-growth. Drive slow (15 mph) — the road itself is sightseeing."
|
|
125
|
+
- "Arrived Florence early — did Heceta Head Lighthouse at sunset (15 min drive). Spectacular!"
|
|
126
|
+
|
|
127
|
+
stops:
|
|
128
|
+
- name: "Stout Memorial Grove"
|
|
129
|
+
lat: 41.796
|
|
130
|
+
lng: -124.087
|
|
131
|
+
type: hike
|
|
132
|
+
label: "Hike"
|
|
133
|
+
description: "28-min drive from Crescent City via stunning Howland Hill Road (narrow, unpaved, through old-growth). Short walk to Earth's most impressive redwoods. Rain makes the bark glow deep red."
|
|
134
|
+
duration: "30–45 min + 28 min drive"
|
|
135
|
+
kid_friendly: true
|
|
136
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=41.796,-124.087"
|
|
137
|
+
|
|
138
|
+
- name: "Natural Bridges, Boardman"
|
|
139
|
+
lat: 42.150
|
|
140
|
+
lng: -124.348
|
|
141
|
+
type: scenic
|
|
142
|
+
label: "Scenic"
|
|
143
|
+
description: "Dramatic rock arches carved by the Pacific. One of Oregon's most photogenic spots. Quick pullover, massive visual payoff."
|
|
144
|
+
duration: "20–30 min"
|
|
145
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=42.150,-124.348"
|
|
146
|
+
|
|
147
|
+
- name: "Secret Beach"
|
|
148
|
+
lat: 42.139
|
|
149
|
+
lng: -124.354
|
|
150
|
+
type: hike
|
|
151
|
+
label: "Hike"
|
|
152
|
+
description: "Short but steep trail to a hidden cove with towering sea stacks. Feels like discovering a lost world. Watch footing on wet rocks."
|
|
153
|
+
duration: "30–45 min"
|
|
154
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=42.139,-124.354"
|
|
155
|
+
|
|
156
|
+
- name: "Gold Beach"
|
|
157
|
+
lat: 42.407
|
|
158
|
+
lng: -124.422
|
|
159
|
+
type: food
|
|
160
|
+
label: "Lunch"
|
|
161
|
+
description: "Charming fishing town at the Rogue River mouth. Fresh seafood lunch stop, then continue north to Florence."
|
|
162
|
+
duration: "45 min–1 hr"
|
|
163
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Gold+Beach+OR"
|
|
164
|
+
|
|
165
|
+
- name: "Florence, OR"
|
|
166
|
+
lat: 43.983
|
|
167
|
+
lng: -124.100
|
|
168
|
+
type: city
|
|
169
|
+
label: "Stay"
|
|
170
|
+
description: "Arrived early — rested at hotel, then headed to Heceta Head for sunset."
|
|
171
|
+
duration: "Afternoon rest"
|
|
172
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Florence+OR"
|
|
173
|
+
|
|
174
|
+
- name: "Heceta Head Lighthouse (sunset)"
|
|
175
|
+
lat: 44.137
|
|
176
|
+
lng: -124.128
|
|
177
|
+
type: scenic
|
|
178
|
+
label: "Sunset"
|
|
179
|
+
description: "15 min from Florence. One of America's most photographed lighthouses, 205 feet above the Pacific. Arrived 7 PM for golden hour. Sunset ~7:45 PM. Spectacular!"
|
|
180
|
+
duration: "45 min–1 hr"
|
|
181
|
+
parking_fee: "$12 OR State Parks"
|
|
182
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.137,-124.128"
|
|
183
|
+
|
|
184
|
+
# ========== DAY 3 ==========
|
|
185
|
+
- number: 3
|
|
186
|
+
title: "Florence → Coast Cruise → Cannon Beach → Astoria"
|
|
187
|
+
date: "Monday, April 6"
|
|
188
|
+
status: completed
|
|
189
|
+
color: "#2e7db5"
|
|
190
|
+
|
|
191
|
+
summary:
|
|
192
|
+
drive: "4–4.5 hrs"
|
|
193
|
+
hike: "1.5–2.5 hrs"
|
|
194
|
+
miles: "~195 mi"
|
|
195
|
+
|
|
196
|
+
weather:
|
|
197
|
+
high: "59°F"
|
|
198
|
+
low: "37°F"
|
|
199
|
+
sky: "Patchy fog AM, then sunny"
|
|
200
|
+
rain_chance: "Low"
|
|
201
|
+
note: "Best weather day of the trip — sunny and 59°F! Morning fog burned off by 8 AM."
|
|
202
|
+
|
|
203
|
+
meals:
|
|
204
|
+
breakfast: "BW Pier Point free breakfast"
|
|
205
|
+
lunch: "Pelican Brewing, Pacific City — oceanfront craft beer + burgers"
|
|
206
|
+
dinner: "Ecola Seafoods, Cannon Beach — legendary fish & chips, chowder"
|
|
207
|
+
|
|
208
|
+
lodging:
|
|
209
|
+
name: "Best Western Columbia River Waterfront Hotel"
|
|
210
|
+
location: "Astoria, Oregon"
|
|
211
|
+
price_estimate: "~$140/night"
|
|
212
|
+
confirmation: "XXXXX9012"
|
|
213
|
+
booked: true
|
|
214
|
+
lat: 46.189
|
|
215
|
+
lng: -123.831
|
|
216
|
+
notes: "Right on the Columbia River. Pool, hot tub, free breakfast. Steps from Riverwalk and sea lions."
|
|
217
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Best+Western+Columbia+River+Waterfront+Hotel+Astoria+OR"
|
|
218
|
+
|
|
219
|
+
alerts:
|
|
220
|
+
- "⏰ Dad had 7:30–8:30 PM work meeting. Arrived Astoria by 6:30, family hit pool, Dad took call from room."
|
|
221
|
+
|
|
222
|
+
tips:
|
|
223
|
+
- "Heceta Head done at sunset last night — skipped it this morning, gained 45 min for Cannon Beach."
|
|
224
|
+
- "Left Florence at 9:30 AM (family was tired). Skipped mid-coast stops, drove straight to Cannon Beach."
|
|
225
|
+
- "Also visited Goonies House and Astoria Column same evening — removed from Day 4."
|
|
226
|
+
|
|
227
|
+
stops:
|
|
228
|
+
- name: "Oregon Coast cruise"
|
|
229
|
+
lat: 44.750
|
|
230
|
+
lng: -124.060
|
|
231
|
+
type: scenic
|
|
232
|
+
label: "Scenic"
|
|
233
|
+
description: "Straight north from Florence on 101. Sunny day = incredible visibility. Quick pullovers at viewpoints."
|
|
234
|
+
duration: "Ongoing"
|
|
235
|
+
|
|
236
|
+
- name: "Cannon Beach & Haystack Rock"
|
|
237
|
+
lat: 45.892
|
|
238
|
+
lng: -123.962
|
|
239
|
+
type: scenic
|
|
240
|
+
label: "Scenic"
|
|
241
|
+
description: "Iconic 235-foot Haystack Rock. Tidepools, puffins, galleries, coffee. Parked at municipal lot (163 E Gower St) — everything walkable from there."
|
|
242
|
+
duration: "2–3 hrs"
|
|
243
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=163+E+Gower+St+Cannon+Beach+OR"
|
|
244
|
+
|
|
245
|
+
- name: "Ecola State Park"
|
|
246
|
+
lat: 45.924
|
|
247
|
+
lng: -123.973
|
|
248
|
+
type: hike
|
|
249
|
+
label: "Hike"
|
|
250
|
+
description: "Dramatic viewpoints over Cannon Beach and Tillamook Rock Lighthouse. Great late afternoon light."
|
|
251
|
+
duration: "1–1.5 hrs"
|
|
252
|
+
parking_fee: "$12 OR State Parks"
|
|
253
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Ecola+State+Park+OR"
|
|
254
|
+
|
|
255
|
+
# ========== DAY 4 ==========
|
|
256
|
+
- number: 4
|
|
257
|
+
title: "Astoria → Columbia River Gorge → Troutdale"
|
|
258
|
+
date: "Tuesday, April 7"
|
|
259
|
+
status: completed
|
|
260
|
+
color: "#6b52c4"
|
|
261
|
+
|
|
262
|
+
summary:
|
|
263
|
+
drive: "2.5–3 hrs"
|
|
264
|
+
hike: "2–3 hrs"
|
|
265
|
+
miles: "~120 mi"
|
|
266
|
+
|
|
267
|
+
weather:
|
|
268
|
+
high: "78°F"
|
|
269
|
+
low: "49°F"
|
|
270
|
+
sky: "Breezy AM, partly sunny, warm"
|
|
271
|
+
rain_chance: "Low"
|
|
272
|
+
note: "Warmest day of the trip! Gorge was breezy with waterfall mist. Troutdale hit 78°F — perfect for evening outdoors."
|
|
273
|
+
|
|
274
|
+
meals:
|
|
275
|
+
breakfast: "BW free breakfast, then coffee at Astoria Coffee Co."
|
|
276
|
+
lunch: "Multnomah Falls Lodge cafeteria"
|
|
277
|
+
dinner: "McMenamins Edgefield — note: most areas are 21+ only. Not ideal for families with minors."
|
|
278
|
+
|
|
279
|
+
lodging:
|
|
280
|
+
name: "Best Western Plus Cascade Inn & Suites"
|
|
281
|
+
location: "Troutdale, Oregon"
|
|
282
|
+
price_estimate: "~$150/night"
|
|
283
|
+
confirmation: "XXXXX3456"
|
|
284
|
+
booked: true
|
|
285
|
+
lat: 45.539
|
|
286
|
+
lng: -122.390
|
|
287
|
+
notes: "Gateway to the Gorge. Pool, hot tub, sauna, free breakfast."
|
|
288
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Best+Western+Plus+Cascade+Inn+Suites+Troutdale+OR"
|
|
289
|
+
|
|
290
|
+
alerts:
|
|
291
|
+
- "⚠️ McMenamins Edgefield: most bars, soaking pool, and venues are 21+ only. NOT family-friendly for minors. Research age policies before recommending."
|
|
292
|
+
|
|
293
|
+
tips:
|
|
294
|
+
- "Goonies House and Astoria Column done previous evening — skipped in morning, slept in."
|
|
295
|
+
- "Did Multnomah-Wahkeena loop (big hike) + Latourell Falls. Skipped Horsetail Falls."
|
|
296
|
+
- "Multnomah Falls: NO timed-entry permit needed before May 22."
|
|
297
|
+
|
|
298
|
+
stops:
|
|
299
|
+
- name: "Multnomah Falls"
|
|
300
|
+
lat: 45.576
|
|
301
|
+
lng: -122.116
|
|
302
|
+
type: hike
|
|
303
|
+
label: "Hike"
|
|
304
|
+
description: "Oregon's tallest waterfall at 620 feet — roaring with spring snowmelt. Did the Multnomah-Wahkeena loop for the full experience. No permit needed before May 22."
|
|
305
|
+
duration: "2–3 hrs (loop)"
|
|
306
|
+
reservation_required: false
|
|
307
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Multnomah+Falls+Oregon"
|
|
308
|
+
|
|
309
|
+
- name: "Latourell Falls"
|
|
310
|
+
lat: 45.537
|
|
311
|
+
lng: -122.218
|
|
312
|
+
type: hike
|
|
313
|
+
label: "Hike"
|
|
314
|
+
description: "Columnar basalt backdrop with electric spring greens. 2.4-mile loop trail. Quieter and more intimate than Multnomah."
|
|
315
|
+
duration: "1–1.5 hrs"
|
|
316
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Latourell+Falls+Oregon"
|
|
317
|
+
|
|
318
|
+
- name: "McMenamins Edgefield"
|
|
319
|
+
lat: 45.539
|
|
320
|
+
lng: -122.412
|
|
321
|
+
type: activity
|
|
322
|
+
label: "Evening"
|
|
323
|
+
description: "74-acre converted estate — brewery, distillery, winery, restaurants. WARNING: most venues are 21+ only. Not suitable for families with minors."
|
|
324
|
+
duration: "2–3 hrs"
|
|
325
|
+
kid_friendly: false
|
|
326
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=McMenamins+Edgefield+Troutdale+Oregon"
|
|
327
|
+
|
|
328
|
+
# ========== DAY 5 ==========
|
|
329
|
+
- number: 5
|
|
330
|
+
title: "Silver Falls → Boulder Falls Inn"
|
|
331
|
+
date: "Wednesday, April 8"
|
|
332
|
+
status: completed
|
|
333
|
+
color: "#c48512"
|
|
334
|
+
|
|
335
|
+
summary:
|
|
336
|
+
drive: "2 hrs total"
|
|
337
|
+
hike: "3–4 hrs"
|
|
338
|
+
miles: "~110 mi"
|
|
339
|
+
|
|
340
|
+
weather:
|
|
341
|
+
high: "44°F"
|
|
342
|
+
low: "32°F"
|
|
343
|
+
sky: "Frost AM, then mostly sunny"
|
|
344
|
+
rain_chance: "10%"
|
|
345
|
+
note: "Cold start — 32°F with frost on trail early. Warmed to mid-40s. Waterfall spray is COLD at these temps. Layers + rain jacket essential."
|
|
346
|
+
|
|
347
|
+
meals:
|
|
348
|
+
breakfast: "BW free hot breakfast at Cascade Inn"
|
|
349
|
+
lunch: "South Falls Lodge cafe inside the park"
|
|
350
|
+
dinner: "1847 Bar & Grill at Boulder Falls Inn — Pacific NW cuisine overlooking Japanese garden"
|
|
351
|
+
|
|
352
|
+
lodging:
|
|
353
|
+
name: "Best Western PREMIER Boulder Falls Inn"
|
|
354
|
+
location: "Lebanon, Oregon"
|
|
355
|
+
price_estimate: "~$150/night"
|
|
356
|
+
confirmation: "XXXXX7890"
|
|
357
|
+
booked: true
|
|
358
|
+
lat: 44.530
|
|
359
|
+
lng: -122.907
|
|
360
|
+
notes: "Only 35 min from Silver Falls. Japanese garden with waterfalls, koi ponds, gazebos. On-site 1847 Bar & Grill. Heated outdoor pool + sauna. Premier-tier rooms with robes."
|
|
361
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Best+Western+Premier+Boulder+Falls+Inn+Lebanon+Oregon"
|
|
362
|
+
|
|
363
|
+
tips:
|
|
364
|
+
- "April = peak waterfall flow! Walk BEHIND 4 waterfalls on the Trail of Ten Falls."
|
|
365
|
+
- "Go clockwise from South Falls. 5-mile loop hits 7 falls in ~3 hrs."
|
|
366
|
+
- "Trail is muddy — waterproof shoes essential. $12 parking."
|
|
367
|
+
- "Shorter option: 2.5-mile loop (South Falls → Lower South → Lower North) still walks behind 2 waterfalls."
|
|
368
|
+
|
|
369
|
+
stops:
|
|
370
|
+
- name: "Silver Falls State Park"
|
|
371
|
+
lat: 44.877
|
|
372
|
+
lng: -122.654
|
|
373
|
+
type: hike
|
|
374
|
+
label: "Hike"
|
|
375
|
+
description: "Oregon's crown jewel — Trail of Ten Falls. Walk behind 177-foot South Falls through a carved basalt cave. 5-mile loop passes 7 thundering waterfalls at peak April flow."
|
|
376
|
+
duration: "3–4 hrs"
|
|
377
|
+
parking_fee: "$12"
|
|
378
|
+
kid_friendly: true
|
|
379
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Silver+Falls+State+Park+South+Falls+Oregon"
|
|
380
|
+
|
|
381
|
+
- name: "Boulder Falls Inn"
|
|
382
|
+
lat: 44.530
|
|
383
|
+
lng: -122.907
|
|
384
|
+
type: activity
|
|
385
|
+
label: "Stay"
|
|
386
|
+
description: "BW Premier oasis — one-acre Japanese garden, koi ponds, waterfalls, walking paths. Robes in room, dinner at 1847 Bar & Grill overlooking the garden. Heated pool + sauna."
|
|
387
|
+
duration: "Evening"
|
|
388
|
+
kid_friendly: true
|
|
389
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Best+Western+Premier+Boulder+Falls+Inn+Lebanon+Oregon"
|
|
390
|
+
|
|
391
|
+
# ========== DAY 6 ==========
|
|
392
|
+
- number: 6
|
|
393
|
+
title: "Lebanon → I-5 South → Home"
|
|
394
|
+
date: "Thursday, April 9"
|
|
395
|
+
status: completed
|
|
396
|
+
color: "#c44b25"
|
|
397
|
+
|
|
398
|
+
summary:
|
|
399
|
+
drive: "8.5–9 hrs"
|
|
400
|
+
hike: "—"
|
|
401
|
+
miles: "~510 mi"
|
|
402
|
+
|
|
403
|
+
weather:
|
|
404
|
+
high: "60–72°F (warming south)"
|
|
405
|
+
low: "38°F"
|
|
406
|
+
sky: "Clear to partly cloudy"
|
|
407
|
+
rain_chance: "Low"
|
|
408
|
+
note: "Beautiful drive through Willamette Valley, Rogue Valley, past Mt. Shasta. Steadily warming."
|
|
409
|
+
|
|
410
|
+
meals:
|
|
411
|
+
breakfast: "BW Premier free breakfast. Walk Japanese garden one more time."
|
|
412
|
+
lunch: "Ashland, OR — Standing Stone Brewing or Greenleaf Restaurant"
|
|
413
|
+
snack: "Mt. Shasta City — Seven Suns Coffee & Cafe"
|
|
414
|
+
|
|
415
|
+
lodging:
|
|
416
|
+
name: "Home"
|
|
417
|
+
location: "Folsom, CA"
|
|
418
|
+
booked: true
|
|
419
|
+
lat: 38.678
|
|
420
|
+
lng: -121.176
|
|
421
|
+
notes: "Arrive ~7–9 PM depending on stops."
|
|
422
|
+
|
|
423
|
+
tips:
|
|
424
|
+
- "15 min from hotel to I-5 at Albany, then straight south."
|
|
425
|
+
- "Ashland is a gem — walk the charming downtown, 45 min lunch."
|
|
426
|
+
- "Mt. Shasta views from I-5 are spectacular on clear April days."
|
|
427
|
+
|
|
428
|
+
stops:
|
|
429
|
+
- name: "Ashland, OR"
|
|
430
|
+
lat: 42.195
|
|
431
|
+
lng: -122.710
|
|
432
|
+
type: food
|
|
433
|
+
label: "Lunch"
|
|
434
|
+
description: "Home of the Oregon Shakespeare Festival. Charming downtown with great restaurants. About 3.5 hrs from Lebanon via I-5."
|
|
435
|
+
duration: "45 min–1 hr"
|
|
436
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Downtown+Ashland+OR"
|
|
437
|
+
|
|
438
|
+
- name: "Mt. Shasta views"
|
|
439
|
+
lat: 41.310
|
|
440
|
+
lng: -122.310
|
|
441
|
+
type: scenic
|
|
442
|
+
label: "Scenic"
|
|
443
|
+
description: "14,179-foot stratovolcano visible for hours along I-5. Stop at the vista point for photos. Snow-capped in April."
|
|
444
|
+
duration: "10–15 min"
|
|
445
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=41.310,-122.310"
|
|
446
|
+
|
|
447
|
+
- name: "Folsom — Home!"
|
|
448
|
+
lat: 38.678
|
|
449
|
+
lng: -121.176
|
|
450
|
+
type: city
|
|
451
|
+
label: "Finish"
|
|
452
|
+
description: "1,600 miles of redwoods, coast, waterfalls, Japanese gardens, and memories."
|
|
453
|
+
|
|
454
|
+
# ============================================================
|
|
455
|
+
# ROUTES — map polylines
|
|
456
|
+
# ============================================================
|
|
457
|
+
routes:
|
|
458
|
+
# Day 1: Folsom → Redwoods → Crescent City
|
|
459
|
+
- day: 1
|
|
460
|
+
color: "#2d7a50"
|
|
461
|
+
width: 4
|
|
462
|
+
points:
|
|
463
|
+
- [38.678, -121.176]
|
|
464
|
+
- [40.589, -122.376]
|
|
465
|
+
- [41.316, -124.007]
|
|
466
|
+
- [41.756, -124.201]
|
|
467
|
+
|
|
468
|
+
# Day 2: Crescent City → Boardman → Florence
|
|
469
|
+
- day: 2
|
|
470
|
+
color: "#2e7db5"
|
|
471
|
+
width: 4
|
|
472
|
+
points:
|
|
473
|
+
- [41.796, -124.087]
|
|
474
|
+
- [42.15, -124.35]
|
|
475
|
+
- [42.407, -124.42]
|
|
476
|
+
- [43.0, -124.40]
|
|
477
|
+
- [43.8, -124.10]
|
|
478
|
+
- [43.983, -124.100]
|
|
479
|
+
|
|
480
|
+
# Day 3: Florence → Coast → Cannon Beach → Astoria
|
|
481
|
+
- day: 3
|
|
482
|
+
color: "#2e7db5"
|
|
483
|
+
width: 4
|
|
484
|
+
points:
|
|
485
|
+
- [43.983, -124.100]
|
|
486
|
+
- [44.6, -124.06]
|
|
487
|
+
- [45.5, -123.98]
|
|
488
|
+
- [45.892, -123.962]
|
|
489
|
+
- [46.189, -123.831]
|
|
490
|
+
|
|
491
|
+
# Day 4: Astoria → Gorge → Troutdale
|
|
492
|
+
- day: 4
|
|
493
|
+
color: "#6b52c4"
|
|
494
|
+
width: 4
|
|
495
|
+
points:
|
|
496
|
+
- [46.189, -123.831]
|
|
497
|
+
- [46.1, -123.3]
|
|
498
|
+
- [45.9, -122.8]
|
|
499
|
+
- [45.576, -122.116]
|
|
500
|
+
- [45.539, -122.412]
|
|
501
|
+
|
|
502
|
+
# Day 5: Troutdale → Silver Falls → Lebanon
|
|
503
|
+
- day: 5
|
|
504
|
+
color: "#c48512"
|
|
505
|
+
width: 3.5
|
|
506
|
+
points:
|
|
507
|
+
- [45.539, -122.412]
|
|
508
|
+
- [45.0, -122.6]
|
|
509
|
+
- [44.877, -122.654]
|
|
510
|
+
- [44.530, -122.907]
|
|
511
|
+
|
|
512
|
+
# Day 6: Lebanon → I-5 → Home
|
|
513
|
+
- day: 6
|
|
514
|
+
color: "#c44b25"
|
|
515
|
+
width: 3.5
|
|
516
|
+
points:
|
|
517
|
+
- [44.530, -122.907]
|
|
518
|
+
- [44.63, -123.1]
|
|
519
|
+
- [43.2, -123.3]
|
|
520
|
+
- [42.195, -122.710]
|
|
521
|
+
- [41.310, -122.310]
|
|
522
|
+
- [40.589, -122.376]
|
|
523
|
+
- [39.5, -122.0]
|
|
524
|
+
- [38.678, -121.176]
|
|
525
|
+
|
|
526
|
+
# ============================================================
|
|
527
|
+
# THEME
|
|
528
|
+
# ============================================================
|
|
529
|
+
theme:
|
|
530
|
+
font_family: "DM Sans, system-ui, sans-serif"
|
|
531
|
+
accent_color: "#2d7a50"
|
|
532
|
+
map_style: "terrain"
|
|
533
|
+
dark_mode: false
|
|
534
|
+
hero_style: "photo"
|
|
535
|
+
|
|
536
|
+
# ============================================================
|
|
537
|
+
# AGENT CONTEXT
|
|
538
|
+
# ============================================================
|
|
539
|
+
agent_context:
|
|
540
|
+
preferences:
|
|
541
|
+
pace: moderate
|
|
542
|
+
budget: mid-range
|
|
543
|
+
accommodation_chain: "Best Western (Rewards member)"
|
|
544
|
+
interests:
|
|
545
|
+
- waterfalls
|
|
546
|
+
- coastal scenery
|
|
547
|
+
- redwoods
|
|
548
|
+
- hiking
|
|
549
|
+
- food
|
|
550
|
+
- unique lodging
|
|
551
|
+
mobility: "All family members fully mobile, kids can handle 5-mile hikes"
|
|
552
|
+
constraints:
|
|
553
|
+
max_drive_per_day: "6 hours preferred, 8 max"
|
|
554
|
+
must_see:
|
|
555
|
+
- "Redwoods (old-growth)"
|
|
556
|
+
- "Oregon Coast"
|
|
557
|
+
- "Multnomah Falls"
|
|
558
|
+
- "Silver Falls (walk behind waterfalls)"
|
|
559
|
+
avoid:
|
|
560
|
+
- "Seattle traffic"
|
|
561
|
+
- "Crater Lake (Rim Drive closed in April)"
|
|
562
|
+
- "North Cascades Highway (closed — rockslide)"
|
|
563
|
+
schedule_blocks:
|
|
564
|
+
- day: 3
|
|
565
|
+
time: "7:30 PM"
|
|
566
|
+
duration: "60 min"
|
|
567
|
+
note: "Dad's work meeting — need hotel WiFi by 7:25 PM"
|
|
568
|
+
iteration_log:
|
|
569
|
+
- date: "2026-03-15"
|
|
570
|
+
change: "Cut Washington state (North Cascades closed, Seattle adds 14-hr return day)"
|
|
571
|
+
- date: "2026-03-18"
|
|
572
|
+
change: "Added Silver Falls State Park — peak April waterfall flow"
|
|
573
|
+
- date: "2026-03-20"
|
|
574
|
+
change: "Pushed Day 2 to Florence instead of Gold Beach — balances driving"
|
|
575
|
+
- date: "2026-03-20"
|
|
576
|
+
change: "Swapped Seaside for Astoria — Goonies house, Astoria Column, better character"
|
|
577
|
+
- date: "2026-03-21"
|
|
578
|
+
change: "Swapped Portland downtown for Troutdale — McMenamins Edgefield next door, skip traffic"
|
|
579
|
+
- date: "2026-03-21"
|
|
580
|
+
change: "Swapped Eugene for Boulder Falls Inn — 35 min from Silver Falls vs 1.5 hrs, Japanese garden"
|
|
581
|
+
- date: "2026-04-05"
|
|
582
|
+
change: "Moved Heceta Head to Day 2 sunset — family arrived Florence early"
|
|
583
|
+
- date: "2026-04-06"
|
|
584
|
+
change: "Late start Day 3 (9:30 AM) — skipped mid-coast stops, straight to Cannon Beach"
|
|
585
|
+
- date: "2026-04-06"
|
|
586
|
+
change: "Did Goonies House + Astoria Column on Day 3 evening — removed from Day 4"
|
|
587
|
+
- date: "2026-04-07"
|
|
588
|
+
change: "McMenamins Edgefield: most areas 21+ only — NOT family-friendly. Lesson learned."
|
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tripkit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Open-source framework for AI-assisted trip planning with beautiful interactive visualizers",
|
|
5
|
+
"main": "convert.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"tripkit": "convert.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"convert.js",
|
|
11
|
+
"renderers/html/tripkit-renderer.html",
|
|
12
|
+
"schema/tripkit.schema.yaml",
|
|
13
|
+
"examples/oregon-spring-2026.yaml",
|
|
14
|
+
"agent/questionnaire.yaml",
|
|
15
|
+
"agent/AGENT-SKILL.md",
|
|
16
|
+
"docs/screenshot.png",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"convert": "node convert.js",
|
|
22
|
+
"example": "node convert.js examples/oregon-spring-2026.yaml examples/oregon-spring-2026.html",
|
|
23
|
+
"test": "node convert.js examples/oregon-spring-2026.yaml /tmp/tripkit-test.html && test -s /tmp/tripkit-test.html && echo 'OK'",
|
|
24
|
+
"prepublishOnly": "npm test"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"trip-planning",
|
|
28
|
+
"travel",
|
|
29
|
+
"road-trip",
|
|
30
|
+
"itinerary",
|
|
31
|
+
"leaflet",
|
|
32
|
+
"map",
|
|
33
|
+
"ai-agent",
|
|
34
|
+
"yaml"
|
|
35
|
+
],
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/piti/tripkit.git"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://github.com/piti/tripkit#readme",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/piti/tripkit/issues"
|
|
43
|
+
},
|
|
44
|
+
"author": "Peter Kwidzinski",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=18"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"js-yaml": "^4.1.0"
|
|
51
|
+
}
|
|
52
|
+
}
|