flight-planner
0
总安装量
1
周安装量
安装命令
npx skills add https://github.com/probichaux/clawdskills --skill flight-planner
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Flight Planner
End-to-end flight planning: route â winds â timing â calendar.
Workflow
When asked to plan a flight:
-
Parse the route â Extract airport sequence (e.g., “HSV to JWN to HMP to HSV”)
-
Calculate each leg â Use
flight_time.pyfor each leg:~/clawd/skills/flight-time/scripts/flight_time.py KDEP KARR --altitude ALT --tas TAS --json -
Optimize altitude â Check multiple altitudes (4000, 6000, 8000, 10000) for the longest leg and pick the best ground speed. Note the recommendation.
-
Add ground time â 30 minutes at each intermediate stop (pickup/dropoff)
-
Build timeline â Start from requested departure time, sequence all legs and ground stops
-
Ask about attendees â Before creating calendar entry, ask:
“Should anyone be invited to this flight?”
-
Create calendar entry â Use
m365cal.py createwith:- Subject: Route summary (e.g., “Flight: HSV-JWN-HMP-HSV”)
- Duration: Total block time
- Body: Full timeline and leg details
- Attendees: As specified
Default Parameters
- TAS: 185 kt
- Fuel burn: 24 gph
- Altitude: 6000 ft (optimize from there)
- Ground time: 30 min per stop
Example Output Format
âï¸ FLIGHT PLAN: HSV-JWN-HMP-HSV
Date: Jan 29, 2026 | Depart: 12:00
LEG 1: HSV â JWN
⢠93 nm | TC 357° | 0:35
⢠Winds 300°@48kt (tailwind)
LEG 2: JWN â HMP
⢠210 nm | TC 142° | 2:23
⢠Winds 320°@52kt (headwind)
⢠â ï¸ Better at 8000ft: 2:03
[... more legs ...]
TIMELINE
12:00 Depart HSV
12:35 Arrive JWN (30 min ground)
13:05 Depart JWN
[...]
TOTALS: 446 nm | 3:44 flight | 4:44 block | ~90 gal
Should anyone be invited to this flight?
Dependencies
~/clawd/skills/flight-time/scripts/flight_time.pyâ Time/wind calculations~/clawd/skills/m365-calendar/scripts/m365cal.pyâ Calendar integration