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

E50 Uplink Frame Rejection Rate

ASecurity

Compute the rate at which a spacecraft rejects uplink frames and grade it against its bound, per ECSS-E-ST-50C clause 5.6.11.6: take the assumed bit error rate and the full on-air frame length, evaluate an uncoded frame as a log-domain tail and a corrected frame as a binomial tail, then report the retransmissions and the frames a pass is expected to lose. Use when an uplink budget quotes a per-frame rejection figure, an operator reports repeated telecommand retransmissions, or a decoder's str...

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

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 e50-uplink-frame-rejection-rate --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Uplink Frame Rejection Rate?

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

Security grade badge for E50 Uplink Frame Rejection Rate
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-uplink-frame-rejection-rate/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-uplink-frame-rejection-rate)

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

Download with Pro
Files
SKILL.md
---
name: e50-uplink-frame-rejection-rate
description: "Compute the rate at which a spacecraft rejects uplink frames and grade it against its bound, per ECSS-E-ST-50C clause 5.6.11.6: take the assumed bit error rate and the full on-air frame length, evaluate an uncoded frame as a log-domain tail and a corrected frame as a binomial tail, then report the retransmissions and the frames a pass is expected to lose. Use when an uplink budget quotes a per-frame rejection figure, an operator reports repeated telecommand retransmissions, or a decoder's strength is being traded against frame length. Trigger: ecss, e-st-50c-communications-scope, uplink-frame-rejection-rate, telecommand-frame-rejection, binomial-decoder-tail, uplink-retransmission-overhead, frame-length-error-trade."
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)"
clauses:
  - standard: ECSS-E-ST-50C Rev.2
    clause: 5.6.11.6
    items: [a]
    relation: verifies
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50c-communications-scope, e50-uplink-frame-rejection-rate, uplink-frame-rejection-rate, telecommand-frame-rejection, binomial-decoder-tail, uplink-retransmission-overhead, frame-length-error-trade]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — Uplink Frame Rejection Rate (space-systems/ecss/e50-uplink-frame-rejection-rate)

Use when the task is the single obligation of ECSS-E-ST-50C clause 5.6.11.6 —
that the rate at which uplink frames are rejected stays inside its stated
bound at the assumed bit error rate — and the question is what that rate
actually is for a given frame and decoder.

## Domain quick reference

- A rejection is the good outcome. The frame was damaged and the receiver
  noticed; the clause bounds how often that happens because each one buys
  a retransmission, not because detection is a fault.
- The rate is a property of the whole on-air frame, not of its payload.
  Header, trailer and check symbol bits all ride the same channel and all
  contribute, so the length that matters is information plus every
  overhead bit.
- With no correction the rate is the probability that at least one bit is
  wrong. It grows with frame length faster than proportionally, which is
  why doubling the payload costs more than twice the rejections.
- With a decoder that corrects a fixed number of bit errors the rate is a
  binomial tail: the probability of more errors than it can fix. That is
  not a scaled version of the uncoded number, and correcting a single bit
  typically buys orders of magnitude, not a factor of two.
- The per-frame figure is not the operationally interesting one. Multiply
  it by the frames in a pass and by the mean transmissions per delivered
  frame before deciding whether the link is usable.
- The direct forms of both expressions are numerically unusable at real
  rates. One minus a near-one number and a tail reached by subtracting a
  near-one head both return noise, so the small side is summed directly
  and the arithmetic stays in the log domain.
- A rate that lands on its bound passes. Tail probabilities go through
  exponentials and logarithms that are not correctly rounded, so the
  comparison carries a relative tolerance instead of a strict inequality.

## Workflow

1. Add the overhead bits to the information bits to get the length the
   channel actually sees.
2. Take the assumed bit error rate as an input, refusing zero, one and
   anything outside them.
3. With no correction, evaluate the rejection rate in the log domain so
   a rate near ten to the minus nine survives.
4. With a decoder, sum whichever side of the binomial is the small one -
   the tail directly when the decoder is comfortably stronger than the
   expected error count, the head otherwise - and cap the number of terms.
5. Multiply the rate by the frames in a pass, and turn it into mean
   transmissions per delivered frame.
6. Evaluate the case this clause pins down alongside the mission's own:
   a frame of two hundred and fifty-six octets carried at a link error
   rate of ten to the minus five, whose rejection rate has to come out
   under ten to the minus five. Report it beside the frame sizes the
   mission actually flies rather than in place of them; where those are
   longer, holding the same bound may call for a better error rate at
   the decoder input or a stronger code.
7. Compare with the bound inclusively and return the rate, the coding
   scheme, the pass-level consequence and the verdict.

## Obligations

| Item | Step |
|---|---|
| ECSS-E-ST-50C Rev.2 5.6.11.6a | 6 |

## Pitfalls

- Using the payload length. The check symbol and headers are exposed to
  the channel too, and leaving them out understates the rate.
- Writing the uncoded rate as one minus a product. At the rates in this
  clause that subtracts two numbers agreeing to fifteen digits.
- Scaling the uncoded rate to approximate a coded one. The relationship
  is a binomial tail and the two differ by orders of magnitude.
- Reaching a small tail by subtracting the head from one. The head is
  indistinguishable from one in double precision and the tail comes back
  as exactly zero.
- Reporting only the per-frame figure. A rate of one in ten thousand is
  a lost frame every few seconds on a fast uplink.
- Forgetting that retransmissions compound. The mean transmissions per
  delivered frame, not the rejection rate, is what consumes the pass.
- Grading a rate that lands on the bound with a strict comparison. The
  verdict then depends on the platform's exponential.

## Behavior contract (gate 3)

Probability and bound validation, whole-count and frame-length assembly,
the log-domain uncoded rate, the binomial tail on both its small sides,
the summation guard, monotonicity in decoder strength, coding-scheme
naming, expected rejections per pass, retransmission overhead, the
inclusive bound comparison and the within / exceeded verdict are
exercised by the gate 3 contract test:
scripts/test_e50_uplink_frame_rejection_rate.py against
scripts/e50_uplink_frame_rejection_rate_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_e50_uplink_frame_rejection_rate.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 →