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 Probability Of Accepting Corrupted Uplink Frames

ASecurity

Derive how often a spacecraft accepts a corrupted uplink frame as sound and grade it against its bound, per ECSS-E-ST-50C clause 5.6.11.7: multiply the residual corruption figure by the escape probability of every detection layer, build two to the minus k from an exact integer power of two, raise the per-frame number to a mission number, and search for the shortest check field that would suffice. Use when an uplink case bounds rejections but never bounds undetected corruption, or a frame chec...

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

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-probability-of-accepting-corrupted-uplink-frames --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Probability Of Accepting Corrupted Uplink Frames?

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

Security grade badge for E50 Probability Of Accepting Corrupted Uplink Frames
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-probability-of-accepting-corrupted-uplink-fram/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-probability-of-accepting-corrupted-uplink-fram)

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

Download with Pro
Files
SKILL.md
---
name: e50-probability-of-accepting-corrupted-uplink-frames
description: "Derive how often a spacecraft accepts a corrupted uplink frame as sound and grade it against its bound, per ECSS-E-ST-50C clause 5.6.11.7: multiply the residual corruption figure by the escape probability of every detection layer, build two to the minus k from an exact integer power of two, raise the per-frame number to a mission number, and search for the shortest check field that would suffice. Use when an uplink case bounds rejections but never bounds undetected corruption, or a frame check field length is being chosen. Trigger: ecss, e-st-50c-communications-scope, corrupted-uplink-frame-acceptance, undetected-uplink-frame-error, frame-check-escape-probability, uplink-detection-layer-stack, check-field-length-selection."
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.7
    items: [a]
    relation: verifies
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50c-communications-scope, e50-probability-of-accepting-corrupted-uplink-frames, corrupted-uplink-frame-acceptance, undetected-uplink-frame-error, frame-check-escape-probability, uplink-detection-layer-stack, check-field-length-selection]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — Probability of Accepting Corrupted Uplink Frames (space-systems/ecss/e50-probability-of-accepting-corrupted-uplink-frames)

Use when the task is the single obligation of ECSS-E-ST-50C clause 5.6.11.7 —
that the probability of accepting a corrupted uplink frame as if it were
sound stays inside its stated bound — and the question is what that
probability is for a given detection design.

## Domain quick reference

- This is the dangerous half of the pair with the rejection rate. A
  rejected frame is a detected fault that costs a retransmission; an
  accepted corrupted frame is an undetected fault that gets executed, so
  its bound is always much tighter.
- The figure is a product of two independent things: how often a frame
  reaches the detector corrupted, and how often the detector misses. The
  first comes from the channel and any correction; the second comes only
  from the detection code.
- The escape probability of a well-behaved detection code of k bits is
  two to the minus k, and it does not move with the bit error rate.
  Improving the channel therefore buys the first factor and nothing at
  all from the second.
- Independent detection layers multiply. A frame check field plus an
  authentication tag plus a sequence check escape together only when all
  of them escape, which is why two sixteen-bit layers behave like one
  thirty-two bit layer.
- A layer that detects nothing is a layer with escape probability one. It
  belongs in the product as such, rather than being silently dropped,
  because dropping it hides that it was ever counted.
- The per-frame figure understates the exposure. The number worth
  arguing about is the chance of at least one acceptance across every
  frame the mission uplinks, and a rare per-frame event over a long
  mission is not rare.
- Two to the minus k has to be built from an exact integer power of two.
  Raising two to a negative power in floating point gives a value whose
  last bit can differ between hosts, and the shortest sufficient check
  length then comes out one bit different.

## Workflow

1. Take the residual corruption probability from the rejection analysis,
   after any error correction, rather than recomputing it here.
2. Build the escape probability of the frame check field by dividing one
   by an exact integer power of two, refusing a length that is a unit
   mistake.
3. Multiply in any further independent detection layer, keeping a layer
   that detects nothing visible as a factor of one.
4. Multiply the two factors to get the per-frame figure.
5. Raise it to the mission figure over the frames the mission uplinks,
   in the log domain, and report the mean gap between acceptances.
6. Compare with the bound inclusively. Take that bound from the limit
   the standard sets on accepting an erroneous telecommand at clause
   5.4.3 — which tightens as the count of telecommands the mission
   sends grows — rather than from a figure chosen here, since this
   probability has to sit inside that limit. Then search upward
   through integer check lengths for the shortest field that would
   satisfy it.

## Obligations

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

## Pitfalls

- Reusing the rejection bound here. Undetected acceptance is a different
  event with a far tighter limit, and one bound cannot serve both.
- Expecting a cleaner channel to fix an escape problem. The escape factor
  is fixed by the code length; only a longer or better code moves it.
- Counting a detection layer twice because it appears in two documents.
  The layers multiply, so a duplicate silently buys imaginary orders of
  magnitude.
- Dropping a layer that detects nothing instead of entering it as one.
  The product is then right by accident and unauditable.
- Quoting the per-frame figure as the answer. Over a mission's frame
  count the mission figure can be thousands of times larger.
- Raising two to a negative power in floating point. The exact integer
  power of two is free and reproducible.
- Solving for the check length with a logarithm. An integer search
  returns the same integer everywhere; a logarithm can land either side
  of a bit boundary.

## Behavior contract (gate 3)

Probability and count validation with controlled endpoints, the exact
integer power-of-two escape probability, its ceiling, the multiplication
of independent detection layers including a no-op layer, the per-frame
product, the log-domain mission figure, the mean gap between
acceptances, the inclusive bound comparison, the integer search for the
shortest sufficient check length and the within / exceeded verdict are
exercised by the gate 3 contract test:
scripts/test_e50_probability_of_accepting_corrupted_uplink_frames.py
against
scripts/e50_probability_of_accepting_corrupted_uplink_frames_logic.py
(stdlib unittest, offline). Run:
python3 scripts/test_e50_probability_of_accepting_corrupted_uplink_frames.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 →