flight-ops-calculators

flight-ops-calculators is a skill for Claude Code, Codex from deepskyai/agent-tools. It costs 305 tokens per session (2,350 once invoked), scanned A, original, MIT.

A collection of ten offline calculators for flight operations, including climb geometry, fuel quantities, wind, altitude, airspeed, diversion planning, descent, weight and balance, and holding entries.

In plain words
What is it for?
Use the calculators to solve pilot planning problems such as crosswind, fuel uplift, top of descent, center of gravity, equal-time points, diversion radius, and holding entry.
Why use it?
It performs aviation calculations locally with repeatable results, without network access, external packages, or API keys.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/deepskyai/agent-tools/flight-ops-calculators
Any agent
npx skills add deepskyai/agent-tools --skill flight-ops-calculators
Clone the repo
git clone --depth 1 https://github.com/deepskyai/agent-tools

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flight-ops-calculators

README.md
[![agentmods](https://agentmods.dev/badge/skills/deepskyai/agent-tools/flight-ops-calculators.svg)](https://agentmods.dev/skills/deepskyai/agent-tools/flight-ops-calculators)
Your own site
<a href="https://agentmods.dev/skills/deepskyai/agent-tools/flight-ops-calculators"><img src="https://agentmods.dev/badge/skills/deepskyai/agent-tools/flight-ops-calculators.svg" alt="Measured on agentmods" height="20"></a>
Per session 305 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,350 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00305 $0.02350
Opus 5 $0.00152 $0.01175
Sonnet 5 $0.00061 $0.00470
Haiku 4.5 $0.00030 $0.00235

Measured 5d ago against content hash cc01b0e87e93, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

flight-ops-calculators scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 11 executable files (scripts/airspeed.py, scripts/altitude.py, scripts/descent.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/flight-ops-calculators/SKILL.md · 202 lines

How it starts

The opening of the file, as written. The whole thing — 202 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Flight Ops Calculators

Ten deterministic command-line tools in scripts/. All JSON-by-default, all with --pretty for humans, all pure Python stdlib (no deps, no network, no API keys). Run any with --help for usage.

scripts/
├── gradient.py          climb/descent geometry solver
├── fuel_uplift.py       Jet A-1 uplift reconciliation (3% rule)
├── wind_components.py   crosswind / headwind
├── altitude.py          PA / DA / ISA-dev
├── airspeed.py          CAS / TAS / Mach
├── pet_psr.py           Point of Equal Time & Point of Safe Return
├── descent.py           Top-of-Descent (3× rule + tax)
├── weight_balance.py    W&B + CG + %MAC
├── etops.py             EDTO / ETOPS diversion radius
└── holding.py           direct / parallel / teardrop entry
tests/
└── test_all.py          34 zero-dep assertions; `python3 tests/test_all.py`

See references/formulas.md for derivations, constants, and edge cases. Run the test suite any time you edit a script: python3 tests/test_all.py.


1. gradient.py — climb/descent solver

Eight variables — distance_nm, time_min, gs_kt, altitude_ft, rate_fpm, angle_deg, gradient_pct, gradient_ft_per_nm — and six relationships. Supply any sufficient subset (typically 3 values), solves for the rest. Sign convention: + climb, − descent for altitude, rate, angle, and gradient.

Triggers: "climb gradient", "ROC required", "3-to-1 descent", "TOD distance", "angle vs %", "ft/NM", obstacle clearance, any 3 of the variables above.

# Required gradient to clear 1500 ft in 5 NM at 140 kt
python3 scripts/gradient.py --distance-nm 5 --altitude-ft 1500 --gs-kt 140 --pretty

# 3° descent from FL100 at GS 250 — how far out is TOD, what's the ROD?
python3 scripts/gradient.py --altitude-ft -10000 --angle-deg -3 --gs-kt 250 --pretty

# ROC for 5% gradient at GS 180
python3 scripts/gradient.py --gradient-pct 5 --gs-kt 180 --pretty

2. fuel_uplift.py — Jet A-1 uplift reconciliation

Compares mass ordered vs mass actually delivered (volume × SG × temp correction), flags >3% deltas (the Jet A-1 SG-band rule).

Read the full file on GitHub · 202 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 202 lines · 305 tokens per session scan A cc01b0e87e93

Subscribe to this mod's changes

flight-ops-calculators is a skill published in the GitHub repository deepskyai/agent-tools (1 stars, last pushed 1mo ago), licensed MIT. It adds 305 tokens to every session and 2,350 once invoked, about $0.0015 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

onekgpd

Query the 1000 Genomes Project dataset (3,202 whole-genome-sequenced individuals, GRCh38) at the level of individual participants. Use when a question is about individuals or variants in the 1000 Genomes Project cohort: which individuals carry variants matching specific criteria in a gene or region, which individuals…

K-Dense-AI/scientific-agent-skills · 143 tokens

pkpd-modeling

Pharmacokinetic and pharmacodynamic modelling and simulation - non-compartmental analysis, compartmental and population PK, PK/PD and exposure-response, TMDD, PBPK orientation, bioequivalence, allometric scaling and first-in-human dose, drug interaction prediction, and Bayesian therapeutic drug monitoring. Use when…

K-Dense-AI/scientific-agent-skills · 273 tokens

biopython

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use…

K-Dense-AI/scientific-agent-skills · 76 tokens

clinical-decision-support

Prepare and validate research-only clinical decision-support evaluation, evidence-profile, cohort, survival, biomarker/model, privacy, and governance artifacts. Use for aggregate or synthetic research documentation and traceability—not patient care or live clinical operation.

K-Dense-AI/scientific-agent-skills · 50 tokens

experimental-design

Design experiments and studies BEFORE data is collected — choosing a design, randomizing, blocking, and laying out treatment combinations so results are interpretable. Use whenever someone is planning a study, asks how to assign subjects/samples to groups, mentions randomization, blocking, stratification, controls…

K-Dense-AI/scientific-agent-skills · 200 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens