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

E2001 Measurement Procedure Documentation

ASecurity

Use when audit an emission-yield measurement-procedure document against ECSS-E-ST-20-01C clause 9.5.1: confirm the written procedure records every mandatory item -- normative-references, measurement-facility description, electron-gun beam parameters, sample-description carrying material identity, batch identifier, thickness and surface-finish, sample-preparation and grounding, the bias-and-collector measurement-method, data-reduction from measured currents, uncertainty-budget, run environment...

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

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 e2001-measurement-procedure-documentation --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E2001 Measurement Procedure Documentation?

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

Security grade badge for E2001 Measurement Procedure Documentation
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e2001-measurement-procedure-documentation/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e2001-measurement-procedure-documentation)

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

Download with Pro
Files
SKILL.md
---
name: e2001-measurement-procedure-documentation
description: "Use when audit an emission-yield measurement-procedure document against ECSS-E-ST-20-01C clause 9.5.1: confirm the written procedure records every mandatory item -- normative-references, measurement-facility description, electron-gun beam parameters, sample-description carrying material identity, batch identifier, thickness and surface-finish, sample-preparation and grounding, the bias-and-collector measurement-method, data-reduction from measured currents, uncertainty-budget, run environmental-conditions and record identification -- categorize each declared entry as mandatory, optional or uncategorized, flag present-but-thin entries too sparse to be repeatable elsewhere, score procedure-completeness against the mandatory set, and refuse a sample-description missing material identity, batch identifier, thickness or surface-finish. Trigger: ecss, e-st-20-01c, emission-yield-measurement, measurement-procedure-documentation, procedure-completeness-audit, sample-description-record, uncertainty-budget-item."
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, e2001-measurement-procedure-documentation, emission-yield-measurement, measurement-procedure-documentation, sample-description-record, procedure-completeness-audit, uncertainty-budget-item]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Multipaction — Emission-Yield Measurement-Procedure Documentation (space-systems/ecss/e2001-measurement-procedure-documentation)

Use when the task is the clause 9.5.1 audit of an ECSS-E-ST-20-01C
secondary-electron-emission yield measurement-procedure document --
deciding whether the written procedure carries the minimum set of
recorded items, from the normative-references at the front to the
sample-description that identifies exactly which specimen was placed in
the chamber.

## Domain quick reference

- Clause 9.5.1 fixes a floor on what the emission-yield
  measurement-procedure must state in writing. The floor exists so a
  second laboratory can repeat the run and land on the same yield
  curve; a procedure that omits an item is not merely untidy, the
  measurement it produced is unverifiable and cannot be cited as
  representative data.
- The mandatory set covers ten recorded items: normative-references
  (which standards and applicable documents govern the run),
  measurement-facility description (chamber, pumping arrangement,
  achievable base-pressure), electron-gun parameters (energy span,
  beam current, spot geometry, incidence angle), sample-description
  (material identity, batch identifier, thickness, surface-finish),
  sample-preparation (cleaning, handling, mounting, grounding path),
  measurement-method (bias scheme, collector arrangement, pulse
  duration), data-reduction (how the yield is derived from the
  measured currents), uncertainty-budget (contributions and how they
  combine), environmental-conditions during the run (temperature,
  pressure) and record-identification (operator, date, document
  reference).
- A handful of further items are recognized but optional -- a
  surface-analysis record, a beam-alignment record, a witness-specimen
  record. They are categorized separately so their absence never
  suppresses completeness, and an entry matching neither list is
  uncategorized: it is reported, it is not counted, and it never
  substitutes for a mandatory item.
- Presence alone is not the check. Each item carries a minimum depth,
  expressed here as a per-item word floor on the recorded text. An
  entry that is present but below its floor is flagged
  present-but-thin: the heading exists, the repeatable content does
  not.
- The sample-description is validated structurally rather than by
  depth: material identity and batch identifier must be non-empty
  strings, thickness must be a positive length, and surface-finish
  must be stated. A missing or non-positive field is rejected, because
  the emission yield of a metal is a property of the surface actually
  presented to the beam, not of the generic material name.

## Workflow

1. Normalize every declared procedure item key (case, spacing,
   underscores) and categorize it as mandatory, optional or
   uncategorized. Reject a key that is not a string or that normalizes
   to nothing.
2. For each present item, measure the recorded detail against that
   item's word floor and mark it sufficient or present-but-thin. An
   uncategorized key has no floor and is never depth-checked.
3. Validate the normative-reference list: every entry needs an
   identifier and an issue or date, and a repeated identifier is a
   finding rather than a duplicate to be silently collapsed.
4. Validate the sample-description structurally -- material identity,
   batch identifier, positive thickness, stated surface-finish --
   raising on any field that is absent, blank or non-positive.
5. Score procedure-completeness as the fraction of mandatory items
   both present and sufficient. Compare it against the required floor
   with a representation tolerance so an exactly-complete record is
   never rejected by floating-point residue.
6. Aggregate the findings: missing mandatory items, present-but-thin
   items, reference-list defects, sample-description defects and
   uncategorized entries. The procedure is compliant only when the
   first four lists are empty.

## Pitfalls

- Counting a heading as an item. A section titled uncertainty-budget
  with one sentence under it satisfies no one; the depth floor exists
  precisely to separate a populated item from a placeholder.
- Letting optional items inflate the score. A procedure carrying three
  optional records and eight of ten mandatory items is not eighty
  percent complete plus extra credit -- it is missing two mandatory
  items and therefore non-compliant.
- Treating an uncategorized entry as a mandatory item under a local
  name. Site vocabulary drifts; the fix is to map the local name onto
  the standard key before the audit, not to let an unrecognized key
  quietly discharge a mandatory obligation.
- Accepting a sample-description that names only the material. Two
  aluminium coupons from different batches with different
  surface-finish states yield materially different emission curves,
  so the batch identifier and finish are part of the identity, not
  metadata.
- Comparing the completeness fraction with a bare equality or a
  hand-widened threshold. The fraction is a ratio of small integers
  and can land a few units in the last place away from unity; absorb
  that in the comparison tolerance, never by lowering the floor.

## Behavior contract (gate 3)

The item categorization, depth assessment, reference-list validation,
sample-description validation and completeness scoring are exercised
by the gate 3 contract test:
`scripts/test_e2001_measurement_procedure_documentation.py` against
`scripts/e2001_measurement_procedure_documentation_logic.py`
(stdlib unittest, offline). Run:
python3 scripts/test_e2001_measurement_procedure_documentation.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 →