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

Q7053 Hardware Functionality Check

ASecurity

Verify that an assembly still works after a sterilization-compatibility exposure, in the evaluation clauses of ECSS-Q-ST-70-53C. Use when post-exposure functional measurements exist and someone has to state whether the hardware's functions survived the process. Grades every parameter against its own one-sided or two-sided window, absorbs the instrument resolution at the bound instead of widening it, treats a repeated-actuation series as intermittent when any single actuation leaves the window...

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 q7053-hardware-functionality-check --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q7053 Hardware Functionality Check?

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

Security grade badge for Q7053 Hardware Functionality Check
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q7053-hardware-functionality-check/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q7053-hardware-functionality-check)

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

Download with Pro
Files
SKILL.md
---
name: q7053-hardware-functionality-check
description: "Verify that an assembly still works after a sterilization-compatibility exposure, in the evaluation clauses of ECSS-Q-ST-70-53C. Use when post-exposure functional measurements exist and someone has to state whether the hardware's functions survived the process. Grades every parameter against its own one-sided or two-sided window, absorbs the instrument resolution at the bound instead of widening it, treats a repeated-actuation series as intermittent when any single actuation leaves the window while the mean stays inside, forms the actuation margin against the resisting load and its factor, weights the verdicts by criticality, and refuses to let a safety-critical loss pass behind a healthy index. Trigger: ecss, q-st-70-53-sterilization-compatibility-scope, post-sterilization-functional-integrity, functional-parameter-window, intermittent-actuation-detection, mechanism-actuation-margin, criticality-weighted-functional-index."
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, q-st-70-53-sterilization-compatibility-scope, q7053-hardware-functionality-check, post-sterilization-functional-integrity, functional-parameter-window, intermittent-actuation-detection, mechanism-actuation-margin, criticality-weighted-functional-index]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Sterilization Compatibility — Hardware Functionality Check (space-systems/ecss/q7053-hardware-functionality-check)

Use when the task is the functional half of an ECSS-Q-ST-70-53C
compatibility evaluation — taking the post-exposure functional
measurements of an assembly and deciding whether the sterilization
process left it able to do its job.

## Domain quick reference

- A functional requirement is a window, and the window is not always
  two-sided. Insulation resistance has a floor only; leak rate has a
  ceiling only; an actuation time usually has both. A parameter graded
  against the wrong shape of window either fails a healthy unit or
  passes a dead one.
- A single post-exposure reading is not evidence for a mechanism. The
  failure mode a sterilization exposure produces in an assembly is
  usually intermittent — a swollen seal, a redeposited residue, a
  softened lubricant — so a repeated-actuation series is graded sample
  by sample, and one excursion is a finding even when the mean of the
  series sits comfortably inside the window.
- A mechanism is graded on margin, not on whether it moved. The
  available drive is compared with the resisting load multiplied by its
  required factor, and the margin is what is left over; a mechanism that
  actuates with no margin has already failed the evaluation.
- Criticality decides what an aggregate verdict is allowed to say. A
  weighted index is useful for ranking units against each other, but a
  safety-critical function outside its window is a reject no matter how
  good the index looks.
- A reading within the instrument resolution of a bound is not a
  breach. That is absorbed by the declared resolution of the
  measurement, which is different from widening the window.

## Workflow

1. Validate each function record: a name, a known criticality, at least
   one finite bound, a consistent min-max pair, a non-negative
   resolution, and either a single measured value or a non-empty series
   of repeated actuations.
2. Grade each sample against the window, treating a sample within the
   resolution of a bound as meeting that bound, and record the margin to
   the nearest bound.
3. Mark a series intermittent when its mean lies inside the window but
   at least one sample does not; report the worst sample.
4. Where a mechanism record carries a drive and a resisting load, form
   the actuation margin as the available drive over the resisting load
   times its factor, minus one, and require a non-negative result.
5. Weight each function by its criticality and form the functional
   index as the weighted share of functions that passed.
6. Set the overall verdict to reject whenever any safety-critical
   function failed, whenever any function is intermittent, or whenever
   the index falls under the declared threshold.
7. Report findings naming each failed function, each intermittent one,
   and each mechanism with a negative actuation margin.

## Pitfalls

- Grading a one-sided requirement with a two-sided band. An insulation
  resistance that rose is not a defect, and inventing a ceiling for it
  turns a healthy reading into a reject.
- Averaging a repeated-actuation series before grading it. The mean
  hides exactly the intermittency the exposure is most likely to have
  caused.
- Reporting that a mechanism actuated. Actuation without margin is a
  pass by luck; the margin against the factored resisting load is the
  graded quantity.
- Letting a weighted index overrule a safety-critical loss. The index
  ranks; it does not decide. A safety-critical function outside its
  window ends the evaluation.
- Widening a window to swallow a reading close to the bound. The
  instrument resolution is declared with the measurement and applied to
  the sample; the window stays as specified.

## Behavior contract (gate 3)

The record validation, one-sided and two-sided window grading,
resolution absorption, intermittency detection, actuation-margin
formation, criticality weighting and the safety-critical override are
exercised by the gate 3 contract test:
scripts/test_q7053_hardware_functionality_check.py against
scripts/q7053_hardware_functionality_check_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_q7053_hardware_functionality_check.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 →