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 Sterilization Exposure Cycles

ASecurity

Compute what a sterilization exposure campaign actually delivered to its specimens, cycle by cycle, out of the logged time-temperature and dose-rate records. Use when specimens have been through repeated dry-heat, radiation or chemical cycles and each cycle must be shown to have met its defined set-point window before the accumulated exposure is credited to the qualification. Integrates dwell above the set-point with the ramp excluded, forms the thermal lethality equivalent at the reference t...

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

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-sterilization-exposure-cycles --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q7053 Sterilization Exposure Cycles?

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

Security grade badge for Q7053 Sterilization Exposure Cycles
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q7053-sterilization-exposure-cycles/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q7053-sterilization-exposure-cycles)

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

Download with Pro
Files
SKILL.md
---
name: q7053-sterilization-exposure-cycles
description: "Compute what a sterilization exposure campaign actually delivered to its specimens, cycle by cycle, out of the logged time-temperature and dose-rate records. Use when specimens have been through repeated dry-heat, radiation or chemical cycles and each cycle must be shown to have met its defined set-point window before the accumulated exposure is credited to the qualification. Integrates dwell above the set-point with the ramp excluded, forms the thermal lethality equivalent at the reference temperature, accumulates delivered dose, and flags an excursion past the material limit, an under-dwell cycle, or a cumulative exposure beyond what the specimen is qualified for. Trigger: ecss, q-st-70-53, sterilization-exposure-cycle, dry-heat-dwell-time, thermal-lethality-equivalent, accumulated-radiation-dose, cycle-setpoint-window, material-temperature-excursion."
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-sterilization-exposure-cycles, sterilization-exposure-cycle, dry-heat-dwell-time, thermal-lethality-equivalent, accumulated-radiation-dose, material-temperature-excursion]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Sterilization Compatibility — Exposure Cycle Execution (space-systems/ecss/q7053-sterilization-exposure-cycles)

Use when the task is the procedure step of a sterilization compatibility
campaign: turning the chamber logs of the exposure cycles into the
statement that each cycle was the cycle the plan defined, and that the
accumulated exposure the specimens carry is the accumulated exposure
that was intended.

## Domain quick reference

- The dwell that counts is the time the specimen was at or above the
  set-point, not the time the door was shut. Ramp up, ramp down and any
  dip below the set-point are excluded, and the crossings are
  interpolated between log samples rather than snapped to the nearest
  sample, or a slow ramp on a coarse log silently buys dwell that never
  happened.
- Time above a set-point is not the whole story for dry heat. Time at a
  higher temperature is worth disproportionately more, and the
  equivalent time at the reference temperature is what compares two
  differently shaped cycles. The equivalence follows the declared
  thermal resistance parameter of the process, which is an input rather
  than a constant of nature.
- A radiation cycle accumulates dose as rate times time, and the
  campaign total is what the material capability is compared against.
  Dose delivered in more cycles than planned is still dose: the
  material sees the sum.
- A cycle that overshoots is not a conservative cycle. An excursion
  above the material temperature limit damages the specimen by a
  mechanism the campaign was not testing, so the excursion is a finding
  even when the dwell requirement was comfortably met.
- Cycle count and cumulative exposure are separate limits. A campaign
  can meet its cycle count while sitting over the qualified cumulative
  dose, and it can sit under the cumulative limit while short of the
  cycles the plan required.

## Workflow

1. Validate each cycle: an identifier, a log of time and temperature
   samples with strictly increasing time, a set-point, a required
   dwell, and for a radiation cycle a non-negative dose rate and
   duration. A log with fewer than two samples cannot carry a dwell.
2. Integrate the dwell at or above the set-point, interpolating each
   crossing linearly between the bracketing samples.
3. Form the thermal lethality equivalent at the reference temperature
   over the whole log, using the declared thermal resistance parameter,
   so cycles of different shapes can be added.
4. Accumulate the delivered dose for the cycle as rate times duration.
5. Compare the cycle against its window: dwell at or above the
   required dwell, peak temperature at or below the material limit,
   absorbing an equality at either bound with the named tolerance.
6. Sum across the campaign: total dwell, total lethality equivalent,
   total dose and the count of conforming cycles.
7. Report per-cycle records, campaign totals and every finding: an
   under-dwell cycle, an excursion above the material limit, fewer
   conforming cycles than required, or a cumulative dose above the
   qualified value.

## Pitfalls

- Crediting the whole chamber cycle as dwell. The ramp is not exposure
  at the set-point, and on a long ramp the difference is most of the
  cycle.
- Snapping a set-point crossing to the nearest logged sample. On a
  one-sample-per-minute log that is a minute of dwell per crossing,
  invented in the direction the operator wanted.
- Adding raw dwell times across cycles run at different temperatures.
  Ten minutes at a high temperature and ten at a low one are not twenty
  equivalent minutes, and only the lethality equivalent is additive.
- Treating an over-temperature excursion as margin. It is an
  uncontrolled stressor applied to the specimen, and the property
  change it causes is attributed to the process by every later reader
  of the report.
- Crediting a repeated cycle because the plan allowed that many cycles.
  The cycle count and the cumulative dose are checked separately, and
  the material sees the sum whatever the count says.

## Behavior contract (gate 3)

The log validation, interpolated dwell integration, lethality
equivalence, dose accumulation, per-cycle conformance and campaign
totals are exercised by the gate 3 contract test:
scripts/test_q7053_sterilization_exposure_cycles.py against
scripts/q7053_sterilization_exposure_cycles_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_q7053_sterilization_exposure_cycles.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 →