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

E2020 Centralised Undervoltage Protection Redundancy

ASecurity

Assess a centralised undervoltage protection that serves several current limiters for single point failure tolerance under clause 5.2.5.3.1 of ECSS-E-ST-20-20C. Use when one sensing and voting chain arms or trips the undervoltage protection of a whole distribution unit. Walk each redundancy stage as a k-of-n vote, remove one unit at a time, and test both directions: whether the surviving units still protect every limiter served, and whether one unit failing active trips the bus on its own. Re...

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

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 e2020-centralised-undervoltage-protection-redundancy --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E2020 Centralised Undervoltage Protection Redundancy?

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

Security grade badge for E2020 Centralised Undervoltage Protection Redundancy
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e2020-centralised-undervoltage-protection-redundan/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e2020-centralised-undervoltage-protection-redundan)

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

Download with Pro
Files
SKILL.md
---
name: e2020-centralised-undervoltage-protection-redundancy
description: "Assess a centralised undervoltage protection that serves several current limiters for single point failure tolerance under clause 5.2.5.3.1 of ECSS-E-ST-20-20C. Use when one sensing and voting chain arms or trips the undervoltage protection of a whole distribution unit. Walk each redundancy stage as a k-of-n vote, remove one unit at a time, and test both directions: whether the surviving units still protect every limiter served, and whether one unit failing active trips the bus on its own. Report each loss path and each spurious path, and flag an architecture that serves a single limiter as outside the shared protection case. Trigger: ecss, e-st-20-20c, centralised-undervoltage-protection, undervoltage-protection-single-point-failure, undervoltage-voting-redundancy, spurious-undervoltage-trip-path, undervoltage-protection-cross-strapping, shared-undervoltage-sensing-chain."
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, e-st-20-20c, e2020-centralised-undervoltage-protection-redundancy, centralised-undervoltage-protection, undervoltage-protection-single-point-failure, undervoltage-voting-redundancy, spurious-undervoltage-trip-path, undervoltage-protection-cross-strapping, shared-undervoltage-sensing-chain]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Power Supply — Centralised Undervoltage Protection Redundancy (space-systems/ecss/e2020-centralised-undervoltage-protection-redundancy)

Use when the task is clause 5.2.5.3.1 of ECSS-E-ST-20-20C: an undervoltage
protection shared by several current limiters has to survive any single point
failure. This leaf takes the architecture of the shared chain — sensing,
comparison, voting, trip distribution — and walks every unit failure through
it in both directions.

## Domain quick reference

- Centralising the protection is what creates the requirement. A limiter with
  its own undervoltage watchdog fails alone; one shared chain that arms or
  trips a whole distribution unit puts every limiter behind a single set of
  parts, so the clause asks that no one part can take the function down.
- The chain is a series of stages and the protection needs all of them. A
  limiter is protected only while every stage serving it works, so redundancy
  at the sensing stage buys nothing if the trip distribution behind it is a
  single driver.
- Each stage is a k-of-n vote and the two failure directions pull against each
  other. Losing a unit is survivable while at least k of the survivors remain,
  which pushes the vote down; a unit failing active reaches the output when a
  single active input satisfies the vote, which pushes the vote up. One of
  two, OR'd, tolerates a loss and trips spuriously on a single failure; two of
  two tolerates a spurious failure and loses the function on a single loss.
  Two of three is the smallest arrangement that clears both.
- A spurious trip is a real single point failure, not a nuisance. The
  undervoltage protection removes loads; a stuck comparator that asserts on a
  healthy bus switches off every limiter the stage serves, and the healthy
  stages downstream cannot tell that command from a genuine one.
- Cross-strapping and shared hardware are expressed by the same unit appearing
  in more than one stage, and the walk has to remove it from all of them at
  once. A unit that sits in both the sensing and the distribution stage is one
  failure, not two.
- Coverage is per limiter, not per architecture. A stage that serves a subset
  takes only that subset down, and a limiter no stage serves at all has no
  protection to make tolerant in the first place.

## Workflow

1. Validate the architecture: named limiters without duplicates, named stages
   with a non-empty unit set, a vote between one and the unit count, and a
   serves list drawn from the declared limiters.
2. Collect the distinct unit identifiers across every stage so shared hardware
   is counted once.
3. Establish the no-failure baseline: which limiters are protected when
   nothing has failed.
4. Walk the loss direction. Remove each unit from every stage it appears in,
   re-evaluate each stage's vote against its survivors, and record every
   limiter that drops out of the baseline.
5. Walk the spurious direction. For each unit, find the stages where a single
   active input satisfies the vote and record the limiters those stages serve.
6. Check scope and coverage: fewer than two served limiters is not the shared
   case the clause addresses, and a limiter no stage serves is its own
   finding.
7. Return the verdict with both point lists and the findings behind them; the
   architecture is tolerant only when both walks come back empty.

## Pitfalls

- Walking only the loss direction. Half the single point failures of a
  protection chain are spurious actuations, and an OR'd pair — the usual
  answer to "make it redundant" — is exactly the arrangement that passes the
  loss walk and fails the spurious one.
- Declaring the chain redundant because the sensing stage is triplicated. The
  weakest stage sets the answer, and the trip distribution is frequently the
  one left simplex.
- Treating a unit that appears in two stages as two independent items. It is
  one failure and it has to be removed from both stages together, otherwise a
  cross-strapped architecture grades better than it behaves.
- Reading a stage that serves a subset of limiters as harmless. It is a single
  point failure for the limiters it does serve, and the report has to name
  them rather than average them away.
- Assuming a two-of-two vote is redundancy. It is a series pair for the loss
  direction: either unit going quiet disables the protection entirely.
- Grading a dedicated protection against this clause without saying so. When
  the chain serves one limiter, the shared case does not apply, and the result
  is reported for information rather than passed off as compliance.

## Behavior contract (gate 3)

The architecture validation, distinct-unit collection, per-limiter stage
lookup, k-of-n survivor evaluation, loss walk, spurious-actuation walk,
subset-serving coverage, shared-case scope check and verdict are exercised by
the gate 3 contract test:
scripts/test_e2020_centralised_undervoltage_protection_redundancy.py against
scripts/e2020_centralised_undervoltage_protection_redundancy_logic.py
(stdlib unittest, offline). Run:
python3 scripts/test_e2020_centralised_undervoltage_protection_redundancy.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 →