plan-hiking-tour
关于
This Claude Skill helps plan hiking tours by selecting trails based on SAC/UIAA difficulty ratings, estimating time using the Munter method, and analyzing elevation and safety. It supports day hikes, multi-day hut-to-hut tours, and alpine routes, considering terrain classification and group fitness. Developers can use it to generate itineraries, calculate realistic hiking times, and assess route safety for a given group.
快速安装
Claude Code
推荐npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/plan-hiking-tour在 Claude Code 中复制并粘贴此命令以安装该技能
技能文档
謀徒步之行
謀徒步之行,含徑擇、估時、海拔析、安全評,適不同體能之群。
用時
- 謀日徒步或多日徒行
- 依群體之體能與閱歷擇徑
- 為謀徑而估實際徒步之時
- 評徑於當前情下是否安全
- 謀棚至棚之行附宿之事務
入
- 必要:徒步之區
- 必要:群體概覽(人數、體能、閱歷)
- 必要:可用之時(日徒步之久或日數)
- 可選:難度之偏(SAC T1-T6,或述:易/中/難)
- 可選:海拔升降之耐(米)
- 可選:所欲含之峰、棚、目的地
- 可選:季節與預期氣象窗
法
第一步:定所需
立制徑擇之諸參。
Group Fitness Classification:
┌──────────────┬──────────────────────────────────────────────────┐
│ Level │ Capabilities │
├──────────────┼──────────────────────────────────────────────────┤
│ Beginner │ 3-4 hrs walking, <500 m elevation gain, │
│ │ well-marked paths only (SAC T1-T2) │
├──────────────┼──────────────────────────────────────────────────┤
│ Intermediate │ 5-7 hrs walking, 500-1000 m elevation gain, │
│ │ mountain trails with some exposure (SAC T2-T3) │
├──────────────┼──────────────────────────────────────────────────┤
│ Advanced │ 7-10 hrs walking, 1000-1500 m elevation gain, │
│ │ alpine trails, scrambling (SAC T3-T5) │
├──────────────┼──────────────────────────────────────────────────┤
│ Expert │ 10+ hrs, 1500+ m gain, via ferrata, glacier, │
│ │ technical terrain (SAC T5-T6, UIAA I-III) │
└──────────────┴──────────────────────────────────────────────────┘
SAC Hiking Scale Reference:
T1 - Hiking: Well-maintained paths, no exposure
T2 - Mountain hiking: Marked trails, some steep sections
T3 - Demanding: Exposed sections, scree, basic scrambling
T4 - Alpine hiking: Simple scrambling, steep exposed terrain
T5 - Demanding alpine: Challenging scrambling, glacier crossings
T6 - Difficult alpine: Very exposed climbing, technical ice/rock
記群體之最弱者之體能級,此定難度之上限。
得:清晰之所需概覽,含群體之級、時預算、海拔之耐、必含或必避之制。
敗則:群體體能殊者,謀以最弱者為準,然為較強者識可選之延伸(如他人於棚息時行峰側程)。
第二步:擇徑之候
研而擇符所需之候徑。
徑數據之源:
- 徒步指南與區域之網
- OpenStreetMap(徑標
sac_scale) - 國/區徑數據庫(如 SchweizMobil、Alpenverein)
- WebSearch 「[區] hiking trails [難度]」
各候徑採之:
Trail Data Sheet:
┌─────────────────────┬──────────────────────────────────────┐
│ Field │ Value │
├─────────────────────┼──────────────────────────────────────┤
│ Trail name/number │ │
│ Start point │ Name, elevation, access │
│ End point │ Name, elevation, access │
│ Distance (km) │ │
│ Elevation gain (m) │ │
│ Elevation loss (m) │ │
│ Highest point (m) │ │
│ Difficulty (SAC) │ │
│ Exposure │ None / Moderate / Significant │
│ Markings │ Well-marked / Sparse / Unmarked │
│ Huts/shelters │ Names and locations along route │
│ Water sources │ Reliable / Seasonal / None │
│ Season │ Months when passable │
│ Escape routes │ Points where you can exit early │
└─────────────────────┴──────────────────────────────────────┘
擇 2-3 候符所需,加一較易之備用。
得:候徑短列附完整數據表,皆於群體能力之內。
敗則:若無徑符諸制,先鬆最不要之制(常先距後難)。若徑數據不全,記缺處而謀於現場驗或詢地之觀光局。
第三步:以 Munter 式算時
以瑞士高山會(SAC)之 Munter 式估徒步之時,為實際謀劃。
Munter Formula:
Time (hours) = (horizontal_km + vertical_km) / pace
Where:
- horizontal_km = trail distance in km
- vertical_km = elevation gain in meters / 100
(each 100 m up counts as 1 km)
- pace = km/h achieved on flat ground
Pace by Fitness Level:
┌──────────────┬────────────────┬──────────────────────────────┐
│ Level │ Pace (km/h) │ Notes │
├──────────────┼────────────────┼──────────────────────────────┤
│ Beginner │ 3.5 │ Includes frequent stops │
│ Intermediate │ 4.0 │ Steady pace, short breaks │
│ Advanced │ 4.5 │ Efficient pace, few breaks │
│ Expert │ 5.0 │ Fast and steady │
│ With kids │ 2.5-3.0 │ Very frequent stops │
│ Heavy pack │ Subtract 0.5 │ Multi-day with full pack │
└──────────────┴────────────────┴──────────────────────────────┘
Descent Adjustment:
- Gentle descent (<20% grade): adds minimal time
- Steep descent (>20% grade): add elevation_loss_m / 200 hours
- Very steep/technical: add elevation_loss_m / 150 hours
例算:
Trail: 12 km distance, 850 m elevation gain, 400 m steep descent
Group: Intermediate (pace = 4.0 km/h)
Ascent component: (12 + 850/100) / 4.0 = (12 + 8.5) / 4.0 = 5.1 hours
Descent component: 400 / 200 = 2.0 hours additional for steep descent
Total estimate: 5.1 + 2.0 = 7.1 hours (round to 7-7.5 hours)
Add breaks: +30 min lunch, +15 min x 3 short breaks = +75 min
Total with breaks: approximately 8.5 hours trailhead to trailhead
得:諸候徑之時估,含休息之時。估當保守(早至勝於暮行)。
敗則:若所算時逾日光,徑過長。或縮之(覓近端或以交通略段)或分二日。群體未試者,首日用初級之速,依實效調之。
第四步:評安全
評所擇徑之客觀與主觀之患。
Safety Assessment Checklist:
┌──────────────────────┬────────────┬──────────────────────────────┐
│ Hazard │ Rating │ Mitigation │
├──────────────────────┼────────────┼──────────────────────────────┤
│ Weather forecast │ Good/Fair/ │ Check 3 sources; define │
│ │ Poor │ turn-around weather triggers │
├──────────────────────┼────────────┼──────────────────────────────┤
│ Thunderstorm risk │ Low/Med/ │ Plan to be below treeline │
│ │ High │ by early afternoon │
├──────────────────────┼────────────┼──────────────────────────────┤
│ Snow/ice on trail │ None/Some/ │ Check snow line; carry │
│ │ Extensive │ microspikes if needed │
├──────────────────────┼────────────┼──────────────────────────────┤
│ River crossings │ Dry/Normal/│ Check recent rainfall; │
│ │ High water │ identify bridges or fords │
├──────────────────────┼────────────┼──────────────────────────────┤
│ Exposure/fall risk │ None/Mod/ │ Assess group comfort level; │
│ │ Significant│ carry slings for short-roping│
├──────────────────────┼────────────┼──────────────────────────────┤
│ Trail condition │ Good/Fair/ │ Check maintenance reports; │
│ │ Poor │ plan for slower pace if poor │
├──────────────────────┼────────────┼──────────────────────────────┤
│ Escape routes │ Multiple/ │ Identify exit points and │
│ │ Few/None │ nearest road access │
├──────────────────────┼────────────┼──────────────────────────────┤
│ Cell coverage │ Good/Spotty│ Download offline maps; │
│ │ /None │ carry emergency beacon if │
│ │ │ remote │
└──────────────────────┴────────────┴──────────────────────────────┘
Overall Safety Rating:
GREEN - All factors favorable, proceed as planned
YELLOW - One or more concerns, proceed with extra caution and backup plan
RED - Significant hazards present, postpone or choose alternative route
得:完之安全評,諸患皆評,緩解皆記。一總 GREEN/YELLOW/RED 之評以決行否。
敗則:若主徑評 RED,易為第二步之備。若諸選皆 RED(如劣氣象),延行。勿為時程便宜越 RED 之評。
第五步:謀事務
理徒步之日或多日之行之諸實事。
Logistics Checklist:
┌──────────────────────┬──────────────────────────────────────────┐
│ Category │ Details to confirm │
├──────────────────────┼──────────────────────────────────────────┤
│ Trailhead access │ Driving directions, parking, bus/train │
│ Hut reservations │ Booking required? Half-board available? │
│ Water resupply │ Reliable sources along route │
│ Food │ Packed lunch, hut meals, snacks │
│ Gear │ See check-hiking-gear skill │
│ Emergency contacts │ Mountain rescue #, local emergency │
│ Map and navigation │ Paper map, offline GPS, waypoints loaded │
│ Group communication │ Meeting points if group separates │
│ Return transport │ Last bus/train time from endpoint │
│ Parking shuttle │ If start != end, how to retrieve car │
└──────────────────────┴──────────────────────────────────────────┘
多日之行:
- 早預棚(熱門棚數月前已滿)
- 謀食水補給點
- 識每日之退場點(若有傷或氣轉之撤)
- 行程示一未行者
得:諸事務皆確或標待。棚已預。徒步起終之交通已備。緊急謀已記。
敗則:若棚滿,察近側選(露宿屋、營、低棚附長徑)。若徒步起點難至(如路閉),備他途或調起點。
第六步:生徒步謀劃文
匯諸事為一徒步謀劃文。
Hiking Plan Document Structure:
1. Summary
- Route name, dates, total distance/elevation
- Group members and emergency contacts
- Overall difficulty and safety rating
2. Day-by-Day Itinerary
- Start/end points with times
- Distance, elevation gain/loss, estimated time
- Key waypoints and navigation notes
- Water sources and meal plans
- Escape route options
3. Safety Information
- Weather forecast (to be updated day-of)
- Known hazards and mitigations
- Turn-around time and triggers
- Emergency procedures and contacts
4. Logistics
- Transport arrangements
- Accommodation bookings
- Gear checklist reference
5. Maps
- Overview map with all days
- Elevation profile for each day
得:完整徒步謀劃,可頒同行諸員並留之緊急聯絡。謀當可行而無需他研。
敗則:若謀有發前未能補之缺,明記之並指人各釋。關鍵安全之缺(無退場、無氣象察謀)必發前釋。
驗
- 徑難度合群體之體能與閱歷
- 時估用 Munter 式並用合群體之速
- 安全評已完,諸患皆評
- 總安全評為 GREEN 或 YELLOW(非 RED)
- 多日行之棚/宿預已確
- 諸段之水補給點已識
- 諸日之退場已圖
- 緊急聯絡與程序已記
- 行程已頒一未行之緊急聯絡
- 已生裝備清單(透 check-hiking-gear 技能)
陷
- 為最速者謀:必為最慢之員謀。群速依其最弱。
- 忽下行時:陡降緩而傷膝。Munter 式計之,然多人輕之。
- 無折返時:設硬之折返時(高山道常為早午後)以避暮行或午後雷。
- 略備徑:氣與情變。常備一較易之選。
- 首日過載:始以較短較易之日,以察群速與適應,尤於高處。
- 低估海拔:2500 m 上,未適應者減速 10-20%。3000 m 上,高山病之險真。
- 棚預之假:熱門高山棚(尤阿爾卑斯)需提前數週至數月預。旺季勿假步入可入。
參
check-hiking-gear— 為所謀之徒步生優化之裝備清單assess-trail-conditions— 評所擇徑當前之情plan-tour-route— 非徒步段之較廣行謀create-spatial-visualization— 視覺化徒步徑與海拔剖generate-tour-report— 將徒步謀匯為格式之報
GitHub 仓库
相关推荐技能
executing-plans
设计该Skill用于当开发者提供完整实施计划时,以受控批次方式执行代码实现。它会先审阅计划并提出疑问,然后分批次执行任务(默认每批3个任务),并在批次间暂停等待审查。关键特性包括分批次执行、内置检查点和架构师审查机制,确保复杂系统实现的可控性。
requesting-code-review
设计该Skill可在完成任务、实现主要功能或合并代码前自动调度代码审查子代理,确保实现符合需求和计划。它支持通过指定git SHA范围进行精准的代码变更审查,帮助开发者在关键节点及时发现潜在问题。核心原则是"早审查、勤审查",适用于开发流程的各个关键阶段。
connect-mcp-server
设计这个Skill指导开发者如何将MCP服务器连接到Claude Code,支持HTTP、stdio和SSE三种传输协议。它涵盖了从安装配置到认证安全的完整流程,适用于集成GitHub、Notion、数据库等外部服务。当开发者需要添加集成、配置外部工具或提及MCP相关功能时,这个Skill能提供实用的操作指南。
web-cli-teleport
设计该Skill帮助开发者根据任务特性选择Claude Code的Web或CLI界面,并指导如何在两种环境间无缝迁移会话。它能分析任务复杂度、迭代需求等要素,推荐最优工作界面和工作流。关键特性包括会话状态管理、环境切换指导和上下文优化建议。
