Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Descent Performance

ASecurity

Use when you must compute the descent performance of a fixed-wing aircraft for descent planning: convert the glide slope into the descent gradient, find the rate of descent from the groundspeed and the gradient, estimate the glide range from the aerodynamic efficiency and the height to lose, locate the best glide speed from the wing loading, and plan a step-down descent with the descent distance, the time to descend between flight levels, and the fuel burned in the descent segment. Produces t...

2 stars
0 votes
0 copies
0 views
Added 9/27/2026
ai-agentspythonrustgoperformance

Works with

claude code

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill descent-performance --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Descent Performance?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Descent Performance
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-descent-performance/badge)](https://www.skillsdirectory.com/skills/ashfordeou-descent-performance)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: descent-performance
description: "Use when you must compute the descent performance of a fixed-wing aircraft for descent planning: convert the glide slope into the descent gradient, find the rate of descent from the groundspeed and the gradient, estimate the glide range from the aerodynamic efficiency and the height to lose, locate the best glide speed from the wing loading, and plan a step-down descent with the descent distance, the time to descend between flight levels, and the fuel burned in the descent segment. Produces the descent gradient, rate of descent in m/s, glide range in meters, best glide speed, descent time, and descent fuel that gate the descent planning assessment. Trigger: rate of descent, descent gradient, glide range, best glide speed, step-down descent, descent fuel, descent time."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: far-25
    reference-only: true
  - id: cs-25
    reference-only: true
gated: false
domain: flight-mechanics
pack: flight-mechanics
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: flight-mechanics
  subdomain: performance
  tags: [descent-performance, rate-of-descent, descent-gradient, glide-range, descent-fuel, descent-time, step-down-descent, wing-loading]
  version: 0.1.0
  author: Aero Agent Skills
---

# Descent Performance (flight-mechanics/performance/descent-performance)

Use when the task is descent analysis for planning: descent gradient
and angle, rate of descent, glide range, best glide speed,
step-down descent distance, segment time, and descent fuel for a
fixed-wing aircraft.

## Domain quick reference

- Descent gradient: the vertical path slope tan(gamma),
  dimensionless; percent = gradient * 100. A 3 deg path is a 5.24%
  gradient, about 318 ft per nautical mile (the standard instrument
  glide slope).
- Descent angle: gamma = atan(gradient) in degrees, the inverse of
  the gradient.
- Rate of descent: RoD = groundspeed * gradient in m/s, for a
  constant-gradient path. On shallow paths V * sin(gamma) agrees;
  the gradient form is exact for the path slope.
- Glide range: range = E * height_to_lose in m, the horizontal
  distance covered per unit height lost in a glide, where E = L/D
  (aerodynamic efficiency) in steady gliding flight.
- Best glide speed: v = sqrt(2 W / (rho * S * CL_LDmax)) in m/s,
  the speed at which the glide ratio is maximum, from weight, air
  density, wing area, and the lift coefficient at maximum L/D.
- Top of descent distance: d = height_to_lose / gradient in m, the
  horizontal distance at which a constant-gradient step-down must
  start to reach the target height.
- Descent segment time: t = height_to_lose / RoD in seconds, at a
  constant rate of descent.
- Descent fuel: m_fuel = fuel_flow * t in kg, from the average fuel
  flow (idle or flight-idle thrust) over the segment.
- Units are SI throughout: forces in N (weight W = mass * g0),
  speeds in m/s, angles in degrees, height in m, time in s, fuel in
  kg.
- Descent performance sits in the FAR-25 / CS-25 transport context
  for descent and emergency-descent considerations; the mathematics
  here is standard flight mechanics.

## Workflow

1. Fix the descent strategy: constant-gradient step-down (VNAV
   style) or a glide leg (engine-out case).
2. Convert the path angle to the descent gradient with
   descent_gradient, or a given slope to its angle with
   descent_angle_from_gradient; verify it is positive.
3. Compute the rate of descent with rate_of_descent from the
   groundspeed and the gradient.
4. For a glide leg, estimate the glide range with glide_range and
   the best glide speed with best_glide_speed from weight, density,
   wing area, and CL at max L/D.
5. Plan the step-down: top of descent distance with
   top_of_descent_distance, segment time with descent_time.
6. Compute the descent fuel with descent_fuel from the average fuel
   flow and the segment time.
7. Check the profile against the arrival constraint and the fuel
   reserve before gating.

## Pitfalls

- Mixing mass and weight in best_glide_speed: W is the weight in
  newtons (mass * g0), not mass in kg, or the speed comes out low
  by sqrt(g0).
- Using the air speed instead of the groundspeed for rate of
  descent: the path is flown over the ground, so RoD =
  groundspeed * gradient.
- Feeding the gradient as percent: gradient is dimensionless
  (tan); percent is * 100. Convert before computing RoD or the TOD
  distance.
- Taking the angle for the gradient: descent_gradient takes
  degrees and converts inside; never pre-convert to radians.
- Using the full descent height for one step-down leg: each leg
  loses only its own height step; plan leg by leg.
- A zero gradient means level flight: no descent, no glide range,
  no TOD distance; the functions raise, not divide by zero.
- Dividing instead of multiplying for glide range: range =
  E * height_to_lose, not E / height.

## Behavior contract (gate 3)

The descent gradient, angle, rate of descent, glide range, best
glide speed, TOD distance, segment time, and descent fuel logic is
exercised by the gate 3 contract test:
scripts/test_descent_performance.py against
scripts/descent_performance_logic.py (stdlib unittest, offline).
Run:
python3 scripts/test_descent_performance.py

## Compliance

- Standards referenced, not reproduced: FAR-25 is US government
  work (public domain) and CS-25 is a free EASA download; descent
  performance from the path slope and glide ratio is common
  flight-mechanics methodology, summary-only per standards-map.yaml.
- compliance: STANDARDS-REF, gated: false.

Attribution

ashfordeOUashfordeOU
View sourceMore from ashfordeOU →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

694821 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →