tripkit 1.0.1 → 1.2.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/CHANGELOG.md +22 -0
- package/README.md +14 -1
- package/agent/AGENT-SKILL.md +114 -68
- package/convert.js +84 -13
- package/examples/new-england-fall-2026.yaml +471 -0
- package/examples/nyc-long-weekend-2026.yaml +283 -0
- package/examples/oregon-spring-2026.yaml +2 -0
- package/examples/southwest-parks-2026.yaml +463 -0
- package/package.json +7 -2
- package/renderers/html/tripkit-renderer.html +90 -16
- package/schema/tripkit.schema.yaml +7 -0
- package/scripts/check-skill-coverage.js +66 -0
- package/validate.js +226 -0
|
@@ -0,0 +1,471 @@
|
|
|
1
|
+
# ============================================================
|
|
2
|
+
# New England Fall Foliage 2026
|
|
3
|
+
# 5-day VT/NH loop from Boston — leaf-peeping, covered bridges,
|
|
4
|
+
# small-town inns. Showcases: scenic drives, food/shopping mix,
|
|
5
|
+
# regional inns (not a chain).
|
|
6
|
+
# ============================================================
|
|
7
|
+
|
|
8
|
+
trip:
|
|
9
|
+
title: "New England Fall Foliage 2026"
|
|
10
|
+
subtitle: "Vermont · White Mountains · Covered Bridges"
|
|
11
|
+
dates: "October 4–8, 2026"
|
|
12
|
+
total_days: 5
|
|
13
|
+
total_miles: "~700 mi"
|
|
14
|
+
total_stops: 14
|
|
15
|
+
travelers:
|
|
16
|
+
adults: 2
|
|
17
|
+
children: 0
|
|
18
|
+
origin: "Boston, MA (fly in / fly out)"
|
|
19
|
+
origin_lat: 42.360
|
|
20
|
+
origin_lng: -71.059
|
|
21
|
+
vehicle: "Rental sedan"
|
|
22
|
+
|
|
23
|
+
days:
|
|
24
|
+
# ========== DAY 1 ==========
|
|
25
|
+
- number: 1
|
|
26
|
+
title: "Boston → North Conway, NH"
|
|
27
|
+
date: "Sunday, October 4"
|
|
28
|
+
status: upcoming
|
|
29
|
+
color: "#c8542a"
|
|
30
|
+
|
|
31
|
+
summary:
|
|
32
|
+
drive: "3.5 hrs"
|
|
33
|
+
hike: "30 min"
|
|
34
|
+
miles: "~165 mi"
|
|
35
|
+
|
|
36
|
+
weather:
|
|
37
|
+
high: "62°F"
|
|
38
|
+
low: "44°F"
|
|
39
|
+
sky: "Sunny, crisp"
|
|
40
|
+
rain_chance: "10%"
|
|
41
|
+
note: "Peak foliage in the White Mountains — colors are 7–10 days early this year per the VT/NH foliage tracker."
|
|
42
|
+
|
|
43
|
+
meals:
|
|
44
|
+
breakfast: "Tatte Bakery, Boston — quick pre-drive"
|
|
45
|
+
lunch: "Polly's Pancake Parlor, Sugar Hill NH — 1938 farm restaurant, real maple syrup tap"
|
|
46
|
+
dinner: "Moat Mountain Smokehouse, North Conway — local brewery, ribs"
|
|
47
|
+
|
|
48
|
+
lodging:
|
|
49
|
+
name: "White Mountain Hotel & Resort"
|
|
50
|
+
location: "North Conway, NH"
|
|
51
|
+
price_estimate: "~$240/night"
|
|
52
|
+
confirmation: "XXXXX1234"
|
|
53
|
+
booked: true
|
|
54
|
+
lat: 44.0436
|
|
55
|
+
lng: -71.1364
|
|
56
|
+
notes: "View of Cathedral Ledge from the lobby. Pool, hot tub, fire pit. Walk to Diana's Baths trail."
|
|
57
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=White+Mountain+Hotel+North+Conway+NH"
|
|
58
|
+
|
|
59
|
+
tips:
|
|
60
|
+
- "Drive Kancamagus Highway (Rt 112) west-to-east — mountain views unfold around each bend."
|
|
61
|
+
- "Polly's needs a 30+ min wait Sundays — call ahead and they'll add you to the list while you drive."
|
|
62
|
+
- "Stop at Sabbaday Falls — 0.6 mile boardwalk, perfect 30-min leg stretch."
|
|
63
|
+
|
|
64
|
+
stops:
|
|
65
|
+
- name: "Polly's Pancake Parlor"
|
|
66
|
+
lat: 44.2006
|
|
67
|
+
lng: -71.7820
|
|
68
|
+
type: food
|
|
69
|
+
label: "Lunch"
|
|
70
|
+
description: "Family-run since 1938. Pancakes are made from grain ground that morning. Sit by the window facing Mt. Washington."
|
|
71
|
+
duration: "1 hr"
|
|
72
|
+
kid_friendly: true
|
|
73
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.2006,-71.7820"
|
|
74
|
+
|
|
75
|
+
- name: "Sabbaday Falls (Kancamagus Hwy)"
|
|
76
|
+
lat: 43.9947
|
|
77
|
+
lng: -71.4006
|
|
78
|
+
type: hike
|
|
79
|
+
label: "Stretch"
|
|
80
|
+
description: "Easy 0.6-mile boardwalk to a 3-tier waterfall in a granite gorge. Always cool down here, even in October."
|
|
81
|
+
duration: "30 min"
|
|
82
|
+
parking_fee: "$5 White Mtn NF day pass"
|
|
83
|
+
kid_friendly: true
|
|
84
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=43.9947,-71.4006"
|
|
85
|
+
|
|
86
|
+
- name: "Cathedral Ledge"
|
|
87
|
+
lat: 44.0681
|
|
88
|
+
lng: -71.1681
|
|
89
|
+
type: scenic
|
|
90
|
+
label: "Sunset"
|
|
91
|
+
description: "Drive to the top — short paved road. Cliff overlook 700 ft above Echo Lake. Panorama from Mt. Washington to the Whites. 15 min before sunset, perfect light."
|
|
92
|
+
duration: "30 min"
|
|
93
|
+
parking_fee: "Free"
|
|
94
|
+
kid_friendly: true
|
|
95
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.0681,-71.1681"
|
|
96
|
+
|
|
97
|
+
# ========== DAY 2 ==========
|
|
98
|
+
- number: 2
|
|
99
|
+
title: "White Mountains full day"
|
|
100
|
+
date: "Monday, October 5"
|
|
101
|
+
status: upcoming
|
|
102
|
+
color: "#b8401e"
|
|
103
|
+
|
|
104
|
+
summary:
|
|
105
|
+
drive: "1.5 hrs"
|
|
106
|
+
hike: "2–3 hrs"
|
|
107
|
+
miles: "~60 mi"
|
|
108
|
+
|
|
109
|
+
weather:
|
|
110
|
+
high: "58°F"
|
|
111
|
+
low: "40°F"
|
|
112
|
+
sky: "Mostly sunny, gusty above tree line"
|
|
113
|
+
rain_chance: "20%"
|
|
114
|
+
note: "Mt. Washington summit is famously the worst weather in the world — wind speeds can hit 100 mph year-round. Check the summit forecast before going up."
|
|
115
|
+
|
|
116
|
+
meals:
|
|
117
|
+
breakfast: "Hotel breakfast"
|
|
118
|
+
lunch: "Mt. Washington Cog Railway snack bar at the summit"
|
|
119
|
+
dinner: "Stonehurst Manor, North Conway — wood-fired pizza in a Gilded Age mansion"
|
|
120
|
+
|
|
121
|
+
lodging:
|
|
122
|
+
name: "White Mountain Hotel & Resort"
|
|
123
|
+
location: "North Conway, NH"
|
|
124
|
+
price_estimate: "~$240/night"
|
|
125
|
+
confirmation: "XXXXX1234"
|
|
126
|
+
booked: true
|
|
127
|
+
lat: 44.0436
|
|
128
|
+
lng: -71.1364
|
|
129
|
+
notes: "Second night — same room"
|
|
130
|
+
|
|
131
|
+
alerts:
|
|
132
|
+
- "🚂 Mt. Washington Cog Railway sells out 2–3 weeks ahead in October. Book the 9 AM departure for clearest summit views."
|
|
133
|
+
|
|
134
|
+
tips:
|
|
135
|
+
- "Cog Railway > Auto Road for kids and first-timers. 3 hrs round-trip vs 4+ hrs and stressful."
|
|
136
|
+
- "Crawford Notch State Park is the most underrated stop in NH — pull over at Mt. Willard trailhead."
|
|
137
|
+
- "Flume Gorge is a 2-mile loop, gentle, and absurdly photogenic. Tiered boardwalks through a slot."
|
|
138
|
+
|
|
139
|
+
stops:
|
|
140
|
+
- name: "Mt. Washington Cog Railway"
|
|
141
|
+
lat: 44.2705
|
|
142
|
+
lng: -71.3486
|
|
143
|
+
type: activity
|
|
144
|
+
label: "Summit"
|
|
145
|
+
description: "Steam-and-biodiesel cog railway up the steepest railroad track in the world. 1 hr each way + 1 hr at the summit. Bring layers — summit is often 40°F colder than base."
|
|
146
|
+
duration: "3 hrs"
|
|
147
|
+
reservation_required: true
|
|
148
|
+
reservation_url: "https://www.thecog.com"
|
|
149
|
+
parking_fee: "$10 base parking, $84 ticket"
|
|
150
|
+
kid_friendly: true
|
|
151
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.2705,-71.3486"
|
|
152
|
+
|
|
153
|
+
- name: "Crawford Notch — Mt. Willard"
|
|
154
|
+
lat: 44.2152
|
|
155
|
+
lng: -71.4045
|
|
156
|
+
type: hike
|
|
157
|
+
label: "Quick hike"
|
|
158
|
+
description: "3.2-mile out-and-back, 900 ft climb, 2 hrs. Easy grade on an old carriage road. Cliff-edge view straight down the notch — best foliage shot in NH."
|
|
159
|
+
duration: "2 hrs"
|
|
160
|
+
parking_fee: "Free with NH State Parks pass"
|
|
161
|
+
kid_friendly: true
|
|
162
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.2152,-71.4045"
|
|
163
|
+
|
|
164
|
+
- name: "Flume Gorge"
|
|
165
|
+
lat: 44.0976
|
|
166
|
+
lng: -71.6814
|
|
167
|
+
type: scenic
|
|
168
|
+
label: "Walk"
|
|
169
|
+
description: "2-mile loop through a 90-ft-deep granite slot canyon. Wooden boardwalks, waterfalls, a 100-yr-old covered bridge at the end. Buy timed tickets online."
|
|
170
|
+
duration: "1.5 hrs"
|
|
171
|
+
reservation_required: true
|
|
172
|
+
reservation_url: "https://www.nhstateparks.org/visit/state-parks/franconia-notch-state-park"
|
|
173
|
+
parking_fee: "$18 adult"
|
|
174
|
+
kid_friendly: true
|
|
175
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.0976,-71.6814"
|
|
176
|
+
|
|
177
|
+
# ========== DAY 3 ==========
|
|
178
|
+
- number: 3
|
|
179
|
+
title: "NH → Stowe, VT"
|
|
180
|
+
date: "Tuesday, October 6"
|
|
181
|
+
status: upcoming
|
|
182
|
+
color: "#d97f3a"
|
|
183
|
+
|
|
184
|
+
summary:
|
|
185
|
+
drive: "3 hrs"
|
|
186
|
+
hike: "1 hr"
|
|
187
|
+
miles: "~135 mi"
|
|
188
|
+
|
|
189
|
+
weather:
|
|
190
|
+
high: "60°F"
|
|
191
|
+
low: "42°F"
|
|
192
|
+
sky: "Partly cloudy"
|
|
193
|
+
rain_chance: "30%"
|
|
194
|
+
note: "Vermont is ~3 days behind NH on peak — colors should be perfect today."
|
|
195
|
+
|
|
196
|
+
meals:
|
|
197
|
+
breakfast: "Hotel breakfast"
|
|
198
|
+
lunch: "Hill Farmstead Brewery (Greensboro Bend) — by appointment, world-class beer in a cow pasture"
|
|
199
|
+
dinner: "Doc Ponds, Stowe — local sourcing, 25 drafts, the burger is famous"
|
|
200
|
+
|
|
201
|
+
lodging:
|
|
202
|
+
name: "Lodge at Spruce Peak"
|
|
203
|
+
location: "Stowe, VT"
|
|
204
|
+
price_estimate: "~$380/night"
|
|
205
|
+
confirmation: "XXXXX5678"
|
|
206
|
+
booked: true
|
|
207
|
+
lat: 44.5314
|
|
208
|
+
lng: -72.7818
|
|
209
|
+
notes: "Slopeside on Mt. Mansfield. Heated outdoor pool, fire pits, gondola from the lobby."
|
|
210
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Lodge+at+Spruce+Peak+Stowe+VT"
|
|
211
|
+
|
|
212
|
+
tips:
|
|
213
|
+
- "Lake Willoughby is a glacial fjord that looks like Norway dropped into Vermont. Worth the 30-min detour off I-91."
|
|
214
|
+
- "Hill Farmstead requires reservations and they sell out a week ahead — book Monday for Tuesday."
|
|
215
|
+
- "Stowe Recreation Path is a 5.5-mile flat paved trail along the river — perfect evening stroll from the hotel."
|
|
216
|
+
|
|
217
|
+
stops:
|
|
218
|
+
- name: "Lake Willoughby"
|
|
219
|
+
lat: 44.7389
|
|
220
|
+
lng: -72.0119
|
|
221
|
+
type: scenic
|
|
222
|
+
label: "Fjord"
|
|
223
|
+
description: "5-mile glacial lake hemmed in by 1,000-ft cliffs (Mt. Pisgah and Mt. Hor). Pull over at the south beach for the postcard shot."
|
|
224
|
+
duration: "30 min"
|
|
225
|
+
kid_friendly: true
|
|
226
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.7389,-72.0119"
|
|
227
|
+
|
|
228
|
+
- name: "Trapp Family Lodge"
|
|
229
|
+
lat: 44.5118
|
|
230
|
+
lng: -72.7088
|
|
231
|
+
type: scenic
|
|
232
|
+
label: "Tour"
|
|
233
|
+
description: "Yes, that Trapp family. Austrian-style lodge on 2,500 acres run by the von Trapp grandchildren. Brewery on-site, Linzer torte at the bakery."
|
|
234
|
+
duration: "1.5 hrs"
|
|
235
|
+
kid_friendly: true
|
|
236
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.5118,-72.7088"
|
|
237
|
+
|
|
238
|
+
- name: "Stowe Village"
|
|
239
|
+
lat: 44.4654
|
|
240
|
+
lng: -72.6873
|
|
241
|
+
type: shopping
|
|
242
|
+
label: "Browse"
|
|
243
|
+
description: "Compact 2-block downtown. Shaw's General Store (since 1895), Stowe Mercantile for maple syrup, Black Cap Coffee for an afternoon refill."
|
|
244
|
+
duration: "1 hr"
|
|
245
|
+
kid_friendly: true
|
|
246
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.4654,-72.6873"
|
|
247
|
+
|
|
248
|
+
# ========== DAY 4 ==========
|
|
249
|
+
- number: 4
|
|
250
|
+
title: "Stowe → Woodstock, VT"
|
|
251
|
+
date: "Wednesday, October 7"
|
|
252
|
+
status: upcoming
|
|
253
|
+
color: "#a85525"
|
|
254
|
+
|
|
255
|
+
summary:
|
|
256
|
+
drive: "2 hrs"
|
|
257
|
+
hike: "1 hr"
|
|
258
|
+
miles: "~95 mi"
|
|
259
|
+
|
|
260
|
+
weather:
|
|
261
|
+
high: "63°F"
|
|
262
|
+
low: "44°F"
|
|
263
|
+
sky: "Sunny — peak day for photos"
|
|
264
|
+
rain_chance: "5%"
|
|
265
|
+
note: "Drive south on Rt 100 — most scenic road in Vermont, follows the spine of the Green Mountains."
|
|
266
|
+
|
|
267
|
+
meals:
|
|
268
|
+
breakfast: "Hotel breakfast or PK Coffee, Stowe"
|
|
269
|
+
lunch: "Worthy Burger, South Royalton — grass-fed beef, train-car dining room"
|
|
270
|
+
dinner: "Mangalitsa, Woodstock — farm-to-table, the chef raises his own pigs"
|
|
271
|
+
|
|
272
|
+
lodging:
|
|
273
|
+
name: "Woodstock Inn & Resort"
|
|
274
|
+
location: "Woodstock, VT"
|
|
275
|
+
price_estimate: "~$420/night"
|
|
276
|
+
confirmation: "XXXXX9012"
|
|
277
|
+
booked: true
|
|
278
|
+
lat: 43.6233
|
|
279
|
+
lng: -72.5183
|
|
280
|
+
notes: "Owned by the Rockefellers since the '60s. Full spa, two golf courses, a brewery in the basement."
|
|
281
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=Woodstock+Inn+Woodstock+VT"
|
|
282
|
+
|
|
283
|
+
tips:
|
|
284
|
+
- "Smugglers' Notch (Rt 108) closes for winter Oct 15ish — drive it now or it's a 90-min detour."
|
|
285
|
+
- "Quechee Gorge has an upper viewpoint right off Rt 4 (free, 5 min) — skip the gift shops."
|
|
286
|
+
- "Sleepy Hollow Farm (Pomfret) is the most-photographed spot in Vermont. Park considerately, walk in, take 5 photos, leave."
|
|
287
|
+
|
|
288
|
+
stops:
|
|
289
|
+
- name: "Smugglers' Notch"
|
|
290
|
+
lat: 44.5587
|
|
291
|
+
lng: -72.7850
|
|
292
|
+
type: scenic
|
|
293
|
+
label: "Drive"
|
|
294
|
+
description: "Narrow pass between Mt. Mansfield and Sterling Peak — boulders the size of houses on either side of a single-lane road. Pullouts for hiking and photos."
|
|
295
|
+
duration: "30–45 min"
|
|
296
|
+
parking_fee: "Free"
|
|
297
|
+
kid_friendly: true
|
|
298
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=44.5587,-72.7850"
|
|
299
|
+
|
|
300
|
+
- name: "Quechee Gorge"
|
|
301
|
+
lat: 43.6398
|
|
302
|
+
lng: -72.4083
|
|
303
|
+
type: scenic
|
|
304
|
+
label: "Photo stop"
|
|
305
|
+
description: "Vermont's Little Grand Canyon. 165-ft drop, 10-min walk along the rim from the highway bridge."
|
|
306
|
+
duration: "30 min"
|
|
307
|
+
parking_fee: "Free"
|
|
308
|
+
kid_friendly: true
|
|
309
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=43.6398,-72.4083"
|
|
310
|
+
|
|
311
|
+
- name: "Sleepy Hollow Farm"
|
|
312
|
+
lat: 43.7314
|
|
313
|
+
lng: -72.5097
|
|
314
|
+
type: scenic
|
|
315
|
+
label: "Photo"
|
|
316
|
+
description: "Cliché Vermont in one frame — red barn, white farmhouse, sugar maples, dirt road. Be respectful: this is private property, photograph from the road only."
|
|
317
|
+
duration: "15 min"
|
|
318
|
+
kid_friendly: true
|
|
319
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=43.7314,-72.5097"
|
|
320
|
+
|
|
321
|
+
- name: "Woodstock village green"
|
|
322
|
+
lat: 43.6242
|
|
323
|
+
lng: -72.5181
|
|
324
|
+
type: shopping
|
|
325
|
+
label: "Browse"
|
|
326
|
+
description: "Voted prettiest small town in America by approximately every magazine. Wander the green, cross the covered bridge, browse F. H. Gillingham (1886)."
|
|
327
|
+
duration: "1.5 hrs"
|
|
328
|
+
kid_friendly: true
|
|
329
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=43.6242,-72.5181"
|
|
330
|
+
|
|
331
|
+
# ========== DAY 5 ==========
|
|
332
|
+
- number: 5
|
|
333
|
+
title: "Woodstock → Boston (fly out)"
|
|
334
|
+
date: "Thursday, October 8"
|
|
335
|
+
status: upcoming
|
|
336
|
+
color: "#7a3818"
|
|
337
|
+
|
|
338
|
+
summary:
|
|
339
|
+
drive: "2.5 hrs"
|
|
340
|
+
hike: "30 min"
|
|
341
|
+
miles: "~155 mi"
|
|
342
|
+
|
|
343
|
+
weather:
|
|
344
|
+
high: "65°F"
|
|
345
|
+
low: "46°F"
|
|
346
|
+
sky: "Sunny"
|
|
347
|
+
rain_chance: "5%"
|
|
348
|
+
note: "Easy drive day. Walden Pond is a nice palate-cleanser before BOS."
|
|
349
|
+
|
|
350
|
+
meals:
|
|
351
|
+
breakfast: "Mon Vert Cafe, Woodstock — sit on the porch"
|
|
352
|
+
lunch: "Concord Cheese Shop — sandwich + pond picnic"
|
|
353
|
+
dinner: "BOS terminal — your call"
|
|
354
|
+
|
|
355
|
+
lodging:
|
|
356
|
+
name: "Home"
|
|
357
|
+
location: "Returning home"
|
|
358
|
+
booked: true
|
|
359
|
+
lat: 42.3601
|
|
360
|
+
lng: -71.0589
|
|
361
|
+
notes: "Flight out of BOS — return rental 2 hrs before"
|
|
362
|
+
|
|
363
|
+
tips:
|
|
364
|
+
- "If you have an extra hour, stop at Sugar Hill Sampler (Lyme NH) for one last bottle of maple."
|
|
365
|
+
- "Walden Pond has a 1.7-mile loop trail and a replica of Thoreau's cabin — 30-min stop."
|
|
366
|
+
- "BOS rental return is at Logan; airtrain to terminal is fast."
|
|
367
|
+
|
|
368
|
+
stops:
|
|
369
|
+
- name: "Walden Pond"
|
|
370
|
+
lat: 42.4380
|
|
371
|
+
lng: -71.3387
|
|
372
|
+
type: scenic
|
|
373
|
+
label: "Pilgrimage"
|
|
374
|
+
description: "Yes, that Walden Pond. 1.7-mile loop trail, replica cabin, swimming beach. 30 min in autumn light is enough to make you want to re-read Thoreau."
|
|
375
|
+
duration: "45 min–1 hr"
|
|
376
|
+
parking_fee: "$15 non-resident parking"
|
|
377
|
+
kid_friendly: true
|
|
378
|
+
navigate_url: "https://www.google.com/maps/dir/?api=1&destination=42.4380,-71.3387"
|
|
379
|
+
|
|
380
|
+
# ============================================================
|
|
381
|
+
# ROUTES — follow I-93, Kancamagus Hwy (Rt 112), I-91, Rt 100,
|
|
382
|
+
# Rt 4. Hand-curated to keep the polylines on real roads.
|
|
383
|
+
# ============================================================
|
|
384
|
+
routes:
|
|
385
|
+
# Day 1: Boston → Lake Winnipesaukee → Sugar Hill → Kancamagus → North Conway
|
|
386
|
+
- day: 1
|
|
387
|
+
color: "#c8542a"
|
|
388
|
+
width: 4
|
|
389
|
+
points:
|
|
390
|
+
- [42.360, -71.059]
|
|
391
|
+
- [43.473, -71.555]
|
|
392
|
+
- [44.201, -71.782]
|
|
393
|
+
- [43.995, -71.401]
|
|
394
|
+
- [44.068, -71.168]
|
|
395
|
+
- [44.044, -71.136]
|
|
396
|
+
|
|
397
|
+
# Day 2: North Conway → Cog Railway → Crawford Notch → Flume → North Conway
|
|
398
|
+
- day: 2
|
|
399
|
+
color: "#b8401e"
|
|
400
|
+
width: 4
|
|
401
|
+
points:
|
|
402
|
+
- [44.044, -71.136]
|
|
403
|
+
- [44.270, -71.349]
|
|
404
|
+
- [44.215, -71.404]
|
|
405
|
+
- [44.098, -71.681]
|
|
406
|
+
- [44.044, -71.136]
|
|
407
|
+
|
|
408
|
+
# Day 3: North Conway → Littleton → Lake Willoughby → Stowe
|
|
409
|
+
- day: 3
|
|
410
|
+
color: "#d97f3a"
|
|
411
|
+
width: 4
|
|
412
|
+
points:
|
|
413
|
+
- [44.044, -71.136]
|
|
414
|
+
- [44.305, -71.770]
|
|
415
|
+
- [44.739, -72.012]
|
|
416
|
+
- [44.512, -72.709]
|
|
417
|
+
- [44.465, -72.687]
|
|
418
|
+
- [44.531, -72.782]
|
|
419
|
+
|
|
420
|
+
# Day 4: Stowe → Smugglers' Notch → Montpelier → Quechee → Woodstock
|
|
421
|
+
- day: 4
|
|
422
|
+
color: "#a85525"
|
|
423
|
+
width: 4
|
|
424
|
+
points:
|
|
425
|
+
- [44.531, -72.782]
|
|
426
|
+
- [44.559, -72.785]
|
|
427
|
+
- [44.260, -72.575]
|
|
428
|
+
- [43.640, -72.408]
|
|
429
|
+
- [43.731, -72.510]
|
|
430
|
+
- [43.624, -72.518]
|
|
431
|
+
|
|
432
|
+
# Day 5: Woodstock → Concord NH → Walden Pond → Boston
|
|
433
|
+
- day: 5
|
|
434
|
+
color: "#7a3818"
|
|
435
|
+
width: 4
|
|
436
|
+
points:
|
|
437
|
+
- [43.624, -72.518]
|
|
438
|
+
- [43.208, -71.538]
|
|
439
|
+
- [42.438, -71.339]
|
|
440
|
+
- [42.360, -71.059]
|
|
441
|
+
|
|
442
|
+
theme:
|
|
443
|
+
font_family: "Instrument Serif, Georgia, serif"
|
|
444
|
+
accent_color: "#c8542a"
|
|
445
|
+
map_style: "terrain"
|
|
446
|
+
|
|
447
|
+
agent_context:
|
|
448
|
+
preferences:
|
|
449
|
+
pace: "relaxed"
|
|
450
|
+
budget: "luxury"
|
|
451
|
+
accommodation_chain: ""
|
|
452
|
+
interests:
|
|
453
|
+
- "fall foliage"
|
|
454
|
+
- "small towns"
|
|
455
|
+
- "farm-to-table food"
|
|
456
|
+
- "covered bridges"
|
|
457
|
+
- "history"
|
|
458
|
+
constraints:
|
|
459
|
+
max_drive_per_day: "3.5 hours"
|
|
460
|
+
must_see:
|
|
461
|
+
- "Peak foliage in VT"
|
|
462
|
+
- "Mt. Washington summit"
|
|
463
|
+
- "A covered bridge"
|
|
464
|
+
- "A real Vermont general store"
|
|
465
|
+
iteration_log:
|
|
466
|
+
- date: "2026-09-01"
|
|
467
|
+
change: "Originally Boston → Maine coast → NH. Pivoted to a Vermont loop after the foliage tracker showed VT peaking the week of our trip."
|
|
468
|
+
- date: "2026-09-12"
|
|
469
|
+
change: "Booked Lodge at Spruce Peak — the only ski-resort lodge open mid-week in October."
|
|
470
|
+
- date: "2026-09-25"
|
|
471
|
+
change: "Added Sleepy Hollow Farm — saw it in three different fall-foliage articles, decided we had to."
|