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 Property Degradation Assessment

ASecurity

Assess the property degradation a sterilization-compatibility exposure leaves behind, in the evaluation clauses of ECSS-Q-ST-70-53C. Use when pre-exposure and post-exposure measurements exist and someone has to say whether the material still meets its mechanical, physical and functional requirements. Forms each property's relative change against its own baseline, applies that property's limit in its own direction (loss-limited, gain-limited or two-sided), absorbs the measurement resolution at...

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-property-degradation-assessment --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q7053 Property Degradation Assessment?

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

Security grade badge for Q7053 Property Degradation Assessment
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q7053-property-degradation-assessment/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q7053-property-degradation-assessment)

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

Download with Pro
Files
SKILL.md
---
name: q7053-property-degradation-assessment
description: "Assess the property degradation a sterilization-compatibility exposure leaves behind, in the evaluation clauses of ECSS-Q-ST-70-53C. Use when pre-exposure and post-exposure measurements exist and someone has to say whether the material still meets its mechanical, physical and functional requirements. Forms each property's relative change against its own baseline, applies that property's limit in its own direction (loss-limited, gain-limited or two-sided), absorbs the measurement resolution at the limit instead of widening the limit, rolls the per-property verdicts up per category, names the governing property by utilisation, and flags a category left unmeasured. Trigger: ecss, q-st-70-53-sterilization-compatibility-scope, sterilization-property-degradation, allowable-property-change-limit, degradation-category-rollup, governing-degraded-property, unmeasured-property-category."
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-property-degradation-assessment, sterilization-property-degradation, allowable-property-change-limit, degradation-category-rollup, governing-degraded-property, unmeasured-property-category]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Sterilization Compatibility — Property Degradation Assessment (space-systems/ecss/q7053-property-degradation-assessment)

Use when the task is the evaluation step of an ECSS-Q-ST-70-53C
materials-and-hardware compatibility test — turning a table of
pre-exposure and post-exposure property values into a per-property,
per-category and overall statement of how much the sterilization
process degraded the item.

## Domain quick reference

- Degradation is a change relative to the item's own baseline, not an
  absolute value read against a datasheet. Two batches of the same
  polymer can start at different tensile strengths; the compatibility
  question is what the exposure did to each of them, so every property
  is normalised by its own pre-exposure measurement.
- The allowable change has a direction. Tensile strength and elongation
  are loss-limited: a gain is not a failure. Mass and hardness are
  usually gain-limited or two-sided, because an uptake of sterilant or a
  post-cure embrittlement both show as an increase. Applying a symmetric
  band to a loss-limited property fails items that improved.
- Properties fall into three evaluation categories — mechanical,
  physical and functional — and a compatibility statement covers all
  three. A category with no property measured is a coverage gap in the
  evaluation, not an implicit pass.
- A change smaller than the measurement resolution of the method is not
  evidence of degradation. It is absorbed by recording the property as
  resolution-limited, which is different from widening the allowable
  change: the limit stays where the specification put it.
- The property that governs is the one with the highest utilisation of
  its own allowable change, not the one with the largest raw percentage.
  A 4 % loss against a 5 % limit governs over a 20 % loss against a
  50 % limit.

## Workflow

1. Validate each property record: a positive finite baseline, a finite
   exposed value, a known category, a known direction, a positive
   allowable change and a non-negative resolution.
2. Form the relative change (exposed minus baseline, over baseline). If
   the absolute difference is within the declared resolution, record the
   change as zero and mark the property resolution-limited.
3. Convert the signed change into an adverse fraction according to the
   direction: the loss for a loss-limited property, the gain for a
   gain-limited one, the magnitude for a two-sided one. A favourable
   change has an adverse fraction of zero.
4. Compare the adverse fraction with the allowable change, absorbing
   floating-point representation error at the boundary with a named
   tolerance rather than by relaxing the allowable value.
5. Roll the records up per category: the worst utilisation in the
   category, and whether every property in it stayed within its limit.
6. Name the governing property as the highest utilisation across all
   categories, breaking an exact tie on the property name so the result
   is reproducible.
7. Report findings: each property over its limit, and each of the three
   categories that carries no measured property at all.

## Pitfalls

- Applying one blanket percentage to every property. The allowable
  change belongs to the property, and a single number across a mixed
  mechanical and functional set either passes a critical loss or fails a
  harmless one.
- Treating a favourable change as degradation. A two-sided band is a
  deliberate choice for properties where an increase is also harmful; it
  is not the safe default for a loss-limited property.
- Ranking on the raw percentage change. Utilisation against each
  property's own limit is what decides which property governs the
  compatibility statement.
- Widening the limit to swallow measurement noise. Noise is handled by
  the declared resolution of the method, applied to the measured
  difference; the limit stays as specified.
- Reading silence as a pass. A category with nothing measured leaves the
  compatibility statement incomplete and is reported as a finding in its
  own right.

## Behavior contract (gate 3)

The record validation, relative-change and resolution handling,
direction-aware adverse fraction, limit comparison, category rollup and
governing-property selection are exercised by the gate 3 contract test:
scripts/test_q7053_property_degradation_assessment.py against
scripts/q7053_property_degradation_assessment_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_q7053_property_degradation_assessment.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 →