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

E20 Telemetry Monitoring Coverage

ASecurity

Use when determine whether the telemetry set of a spacecraft subsystem or payload is sufficient to monitor it in flight under ECSS-E-ST-20C clause 4.1.4: categorize each parameter as housekeeping, discrete status, payload measurement or event diagnostic, compute the sampling rate its observed bandwidth demands and compare it with the rate actually allocated, verify that every parameter feeding an onboard limit check carries an ordered warning and alarm pair inside the sensor range, sum the re...

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

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 e20-telemetry-monitoring-coverage --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E20 Telemetry Monitoring Coverage?

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

Security grade badge for E20 Telemetry Monitoring Coverage
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e20-telemetry-monitoring-coverage/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e20-telemetry-monitoring-coverage)

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

Download with Pro
Files
SKILL.md
---
name: e20-telemetry-monitoring-coverage
description: "Use when determine whether the telemetry set of a spacecraft subsystem or payload is sufficient to monitor it in flight under ECSS-E-ST-20C clause 4.1.4: categorize each parameter as housekeeping, discrete status, payload measurement or event diagnostic, compute the sampling rate its observed bandwidth demands and compare it with the rate actually allocated, verify that every parameter feeding an onboard limit check carries an ordered warning and alarm pair inside the sensor range, sum the resulting source bit rate against the downlink allocation, and flag any monitored function left without a parameter. Trigger: ecss, e-st-20-electrical-scope, telemetry-monitoring-coverage, housekeeping-telemetry, telemetry-sampling-rate, limit-checking, downlink-bit-rate, parameter-coverage-gap, onboard-monitoring."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: ecss
    reference-only: true
gated: false
domain: space-systems
pack: space-systems
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-20-electrical-scope, e20-telemetry-monitoring-coverage, housekeeping-telemetry, telemetry-sampling-rate, limit-checking, downlink-bit-rate, onboard-monitoring]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Electrical & Electronic — Telemetry Monitoring Coverage (space-systems/ecss/e20-telemetry-monitoring-coverage)

Use when the task is the flight-operations telemetry sufficiency check
of ECSS-E-ST-20C clause 4.1.4 -- deciding whether the parameters a
subsystem or payload produces are enough, fast enough, bounded enough
and small enough to actually monitor it in flight.

## Domain quick reference

- Clause 4.1.4 asks a coverage question, not a formatting one: for
  every function that has to be monitored during operations, is there
  a parameter that observes it, at a rate that resolves the behaviour,
  with limits that let the onboard monitoring act, and inside the
  downlink that carries it. Four questions, four independent ways to
  fail.
- Parameters fall into four families that carry different sampling
  demands. A housekeeping analog measurement (temperature, voltage,
  current) is slowly varying and is oversampled modestly. A discrete
  status needs the heaviest oversampling of the continuous families,
  because a transition that lands between two samples is invisible. A
  payload measurement is sampled against its own signal bandwidth at
  close to the Nyquist limit, since the data volume is dominated by
  it. An event diagnostic is the highest-rate family: it exists to
  capture a short transient, so it is sampled well above the rate that
  merely reconstructs the waveform.
- The required rate is Nyquist (twice the observed bandwidth) times
  the family's oversampling factor. Comparing the allocated rate
  against the raw bandwidth instead of the required rate is the common
  arithmetic error, and it understates the requirement by at least a
  factor of two.
- A parameter that feeds an onboard limit check has to carry four
  ordered thresholds -- low alarm below low warning below high warning
  below high alarm -- and all four have to sit inside the sensor range
  that produces the parameter. A threshold outside the range can never
  be crossed, so the monitoring silently never fires.
- Source bit rate is bits per sample times sample rate, summed over
  the set, and it competes for a fixed downlink allocation. Raising a
  rate to fix a sampling finding can create a budget finding, so the
  two are assessed together, never one after the other.
- A critical monitored function needs more than a parameter pointed at
  it: at least one of its parameters has to be limit-checked, or the
  function is observable only in replay, not monitored onboard.

## Workflow

1. Categorize every parameter into its family; reject an unrecognized
   family rather than defaulting it into housekeeping.
2. Compute the required sample rate from the observed bandwidth and
   the family oversampling factor, and compare it with the allocated
   rate. Record the ratio so a marginal parameter is visible.
3. For each limit-checked parameter, check the four thresholds are
   strictly ordered and all lie inside the sensor range.
4. Sum bits per sample times sample rate over the set and compare the
   total against the downlink allocation; report the margin as a
   fraction of the allocation, not only a pass or fail.
5. Map parameters onto the monitored functions and flag any function
   with no parameter; for a critical function, also flag the absence
   of any limit-checked parameter among those covering it.
6. Aggregate all four finding families. The set is sufficient only
   when sampling, limits, budget and function coverage are all clear.

## Pitfalls

- Sizing the sample rate against the parameter's bandwidth rather than
  twice it. That is an aliased parameter that looks well sampled in
  the budget table and reconstructs a wrong value in flight.
- Giving a discrete status the same oversampling as a slowly varying
  analog measurement. A relay that changes state and returns between
  two samples leaves no trace at all in the telemetry.
- Declaring limits on a parameter without checking them against the
  sensor range. An alarm threshold beyond full scale is a monitor that
  can never trip, and it reads as configured in every review.
- Closing the sampling findings first and the downlink budget second.
  Each rate increase spends allocation, so a set can pass both checks
  in isolation and fail them together.
- Counting a function as covered because a parameter names it. If none
  of the covering parameters is limit-checked, a critical function has
  observation without onboard monitoring.

## Behavior contract (gate 3)

The parameter categorization, required-rate, limit-ordering,
downlink-budget and function-coverage logic is exercised by the gate 3
contract test: `scripts/test_e20_telemetry_monitoring_coverage.py`
against `scripts/e20_telemetry_monitoring_coverage_logic.py` (stdlib
unittest, offline). Run:
python3 scripts/test_e20_telemetry_monitoring_coverage.py

## Compliance

- ECSS standards are freely downloadable (ESA); cite the source and
  paraphrase 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 →