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 Failure Modes

ASecurity

Evaluate whether a communications link still meets its performance requirement in every failure mode the mission declares, per ECSS-E-ST-50C clause 5.6.11.4: sum each mode's concurrent decibel contributors, subtract them from the nominal margin, grade every mode against the required margin, name the mode that governs, and return any required mode the budget never covered as unassessed rather than as passing. Use when a link budget shows a healthy nominal column and the failure-mode columns ar...

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

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-failure-modes --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Failure Modes?

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

Security grade badge for E50 Failure Modes
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-failure-modes/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-failure-modes)

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

Download with Pro
Files
SKILL.md
---
name: e50-failure-modes
description: "Evaluate whether a communications link still meets its performance requirement in every failure mode the mission declares, per ECSS-E-ST-50C clause 5.6.11.4: sum each mode's concurrent decibel contributors, subtract them from the nominal margin, grade every mode against the required margin, name the mode that governs, and return any required mode the budget never covered as unassessed rather than as passing. Use when a link budget shows a healthy nominal column and the failure-mode columns are empty, optimistic, or graded one contributor at a time. Trigger: ecss, e-st-50c-communications-scope, link-performance-failure-modes, degraded-link-margin, governing-worst-case-link-mode, redundancy-recovered-link-failure, uncovered-failure-mode, concurrent-degradation-stack-up."
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.4
    items: [a]
    relation: verifies
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50c-communications-scope, e50-failure-modes, link-performance-failure-modes, degraded-link-margin, governing-worst-case-link-mode, redundancy-recovered-link-failure, uncovered-failure-mode, concurrent-degradation-stack-up]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — Failure Modes (space-systems/ecss/e50-failure-modes)

Use when the task is the single obligation of ECSS-E-ST-50C clause 5.6.11.4 —
that the communications link performance requirements are stated for, and hold
in, the failure modes declared for the mission — and the question is what a
link budget must show beyond its nominal column.

## Domain quick reference

- The nominal case is the easy case and it is not the requirement. The
  requirement is that performance survives the declared failure modes, so
  a budget that only proves the undegraded link has proved the wrong
  thing.
- A declared mode with no figure against it is unassessed, not passing.
  Absence of a number is absence of evidence; grading it green because
  nothing was written is how a missing analysis becomes a signed-off one.
- Degradation contributors inside one mode are concurrent and add. A mode
  built from three one-and-a-half decibel losses is worse than a mode
  built from one three decibel loss, which is why the largest single
  contributor is a poor guide to which mode governs.
- The governing mode is whichever applicable mode leaves the least
  margin. It has to be found by grading every mode, not guessed from the
  failure that sounds most severe.
- Direction matters. An uplink receiver failure does not degrade the
  downlink, and grading it against the downlink requirement both wastes
  margin and hides the mode that actually constrains that link.
- Recovery by redundancy changes how long a mode lasts, not whether the
  link works while it lasts. A redundancy-recovered mode still has to be
  graded, because the switchover is not instantaneous.
- Decibel margins add and subtract exactly on every host. Taking a power
  of ten or a logarithm to reach the same answer introduces host-dependent
  rounding for no benefit, so the arithmetic stays in decibels and the
  compliance comparison carries an explicit tolerance.

## Workflow

1. Normalise the declared modes, refusing a duplicate name and a negative
   degradation, and sort them so the grading order is deterministic.
2. Sum each mode's concurrent contributors in a fixed order and subtract
   the sum from the nominal margin to get that mode's margin.
3. Decide which modes apply to the link direction under assessment and
   grade only those against the requirement.
4. Compare each margin with the requirement inclusively, so a mode that
   lands exactly on the bound is met rather than a coin toss.
5. Name the applicable mode that leaves the least margin as the governing
   case.
6. Compare the declared modes with the modes the mission requires — a
   set that always holds, at least, the link lost outright, the margin
   reduced while the link still closes, and a carrier that is acquired
   only sporadically — and return any absentee as uncovered, which
   makes the whole assessment unassessed rather than compliant.

## Obligations

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

## Pitfalls

- Reporting compliance from the nominal margin alone. The clause exists
  precisely because that column always looks fine.
- Treating a required mode nobody analysed as a pass. An empty cell is an
  open action, and the verdict has to say so rather than round it up.
- Grading contributors one at a time inside a mode. They occur together,
  so the mode's real cost is their sum, and a per-contributor grade lets a
  stack-up through.
- Assuming the loudest failure governs. Three modest concurrent losses
  routinely beat one large loss, and only a full grading finds it.
- Applying a one-direction failure to both links. It overstates the
  downlink case, understates the uplink case, and moves the governing mode
  to the wrong place.
- Excusing a mode because redundancy recovers it. The link still has to
  work during the failure and through the switchover.
- Using a strict comparison on a margin that lands on the requirement.
  The answer then depends on the last bit of a floating-point sum, and
  two hosts disagree about a compliant design.

## Behavior contract (gate 3)

The decibel and direction validation, mode normalisation with duplicate
and negative-degradation rejection, concurrent contributor summation, the
per-mode margin, the inclusive margin comparison, direction filtering,
governing-mode selection, uncovered-mode detection and the three-way
met / not-met / unassessed verdict are exercised by the gate 3 contract
test: scripts/test_e50_failure_modes.py against
scripts/e50_failure_modes_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e50_failure_modes.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 →