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

Q7050 Cleanroom Classification

ASecurity

Coordinate the airborne particle qualification of a cleanroom that hosts contamination-monitored flight hardware, sizing the ISO 14644-1 sample plan and the ISO 14644-2 re-qualification interval before the room is accepted. Use when a room of known floor area must be qualified to a target class at one or more reference particle sizes, and the sample location count, single-sample volume, sampling time and interval all have to be fixed and then graded against what the counter actually delivered...

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 q7050-cleanroom-classification --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q7050 Cleanroom Classification?

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

Security grade badge for Q7050 Cleanroom Classification
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q7050-cleanroom-classification/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q7050-cleanroom-classification)

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

Download with Pro
Files
SKILL.md
---
name: q7050-cleanroom-classification
description: "Coordinate the airborne particle qualification of a cleanroom that hosts contamination-monitored flight hardware, sizing the ISO 14644-1 sample plan and the ISO 14644-2 re-qualification interval before the room is accepted. Use when a room of known floor area must be qualified to a target class at one or more reference particle sizes, and the sample location count, single-sample volume, sampling time and interval all have to be fixed and then graded against what the counter actually delivered. Derives the limit concentration per reference size, the minimum locations for the area, the volume needed to collect enough particles at the limit, and the per-location verdict. Trigger: ecss, q-st-70-50, iso-14644-1, iso-14644-2, cleanroom-airborne-particle-qualification, sample-location-count, single-sample-volume, room-requalification-interval, limit-particle-concentration."
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-50-particle-contamination-monitoring-scope, q7050-cleanroom-classification, cleanroom-airborne-particle-qualification, sample-location-count, single-sample-volume, limit-particle-concentration, room-requalification-interval]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Particle Contamination Monitoring — Cleanroom Qualification Coordination (space-systems/ecss/q7050-cleanroom-classification)

Use when the task is the interface toward the facility side of particle
contamination monitoring: deciding what the airborne particle
qualification of the room has to consist of, and whether the campaign
that was run actually qualifies it for the hardware inside.

## Domain quick reference

- A room class is a statement about airborne concentration at a
  reference particle size. The allowed concentration falls steeply with
  size, so a room that holds its class at half a micrometre may be well
  outside it at five, and each reference size the programme cares about
  is a separate limit to be met.
- The number of sample locations is driven by the floor area, not by
  convenience or by how many probe positions the contractor owns. Too
  few locations do not produce an optimistic room, they produce a room
  whose class was never measured, because the spatial variation the
  location count exists to capture went unsampled.
- The single-sample volume is set by the limit itself. A sample must be
  large enough that a room sitting exactly at its limit would deliver a
  statistically meaningful number of particles; a small sample at a
  tight class counts a handful of particles and the verdict is
  dominated by counting noise. A volume floor and a minimum sampling
  time apply on top.
- Sampling time follows from volume and the counter flow rate. A flow
  rate quoted for a different probe, or a run cut short, delivers less
  volume than the plan and silently invalidates the location.
- Qualification is not a one-off. The interval before the room must be
  qualified again is shorter for the tighter classes, and a monitoring
  regime that lets the interval lapse leaves the hardware in a room
  with no current evidence.

## Workflow

1. Validate the room: floor area, target class, the reference particle
   sizes and the counter flow rate. A non-positive area, a negative
   class or a non-positive size is an input error, not a value to clamp.
2. Derive the limit concentration for each reference size from the
   target class, using the programme size exponent.
3. Determine the minimum number of sample locations for the floor area
   from the programme location table when one is supplied, and from the
   area square-root rule when it is not.
4. Size the single sample: the volume that would collect the required
   particle count at the tightest limit, raised to the volume floor,
   and the sampling time that volume needs at the counter flow rate,
   raised to the minimum time.
5. Grade every reported location: convert its counts and sampled volume
   into a concentration per reference size and compare with the limit,
   absorbing an equality at the limit with the named tolerance.
6. Check campaign coverage: locations reported against locations
   required, and each location's sampled volume against the required
   single-sample volume.
7. Check the re-qualification interval for the target class against the
   interval the facility operates on, and report the sample plan, the
   per-location verdicts and every finding.

## Pitfalls

- Sizing the sample plan on the room the operator expects rather than
  the class being claimed. The volume comes from the limit, so a
  tighter class needs a larger sample, and reusing a plan written for a
  looser room under-samples exactly where precision matters.
- Averaging the locations into one room concentration and comparing
  that with the limit. The location count exists because the room is
  not uniform; a single hot location is the finding, and an average
  buries it.
- Sampling fewer locations than the area requires and calling the
  campaign a pass. An unsampled region is not a compliant region, and
  the shortfall is a coverage finding in its own right.
- Treating a sample volume shortfall as a rounding matter. A location
  sampled below the required volume has a verdict built on too few
  particles, and the honest response is to re-run that location.
- Letting the re-qualification interval lapse because the last campaign
  passed comfortably. The interval is a property of the class, not of
  how good the last result looked.

## Behavior contract (gate 3)

The limit-concentration derivation, location-count rule, single-sample
volume and time sizing, per-location grading, coverage checks and
interval check are exercised by the gate 3 contract test:
scripts/test_q7050_cleanroom_classification.py against
scripts/q7050_cleanroom_classification_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_q7050_cleanroom_classification.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 →