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

E1009 Units

ASecurity

Use when verify that every coordinate and derived quantity in a space-system interface document or software parameter list states its unit as the SI standard or an explicitly listed stated exception, per ECSS-E-ST-10-09C §5.4.3. For each parameter: determine the quantity type (distance, angle, time, angular rate, velocity, mass, force, pressure, temperature, frequency, acceleration), identify the prescribed SI unit, check whether the actual stated unit is SI or appears on the stated-exception...

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

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 e1009-units --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1009 Units?

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

Security grade badge for E1009 Units
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e1009-units/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e1009-units)

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

Download with Pro
Files
SKILL.md
---
name: e1009-units
description: "Use when verify that every coordinate and derived quantity in a space-system interface document or software parameter list states its unit as the SI standard or an explicitly listed stated exception, per ECSS-E-ST-10-09C §5.4.3. For each parameter: determine the quantity type (distance, angle, time, angular rate, velocity, mass, force, pressure, temperature, frequency, acceleration), identify the prescribed SI unit, check whether the actual stated unit is SI or appears on the stated-exception list, and flag any parameter whose unit is neither. Output a per-parameter verdict (si, stated_exception, or non_compliant) and a summary of all findings. Trigger: ecss, e-st-10-system-scope, units, SI-units, coordinates, reference-frames, stated-exceptions, quantity-types, parameter-verification."
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-10-system-scope, units, SI-units, coordinates, reference-frames, stated-exceptions, quantity-types]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Reference Frames — Unit Assignment (space-systems/ecss/e1009-units)

Use when the task is to verify that every coordinate and derived quantity
in a space-system interface document or software parameter list carries
a compliant unit — either the SI standard unit or an explicitly listed
stated exception — per ECSS-E-ST-10-09C §5.4.3.

## Domain quick reference

- §5.4.3 requires that each coordinate or derived quantity state its
  unit. The default is the SI base or coherent derived unit for that
  quantity. A unit that is not SI is only permitted when explicitly
  identified as a stated exception in the document; any other non-SI
  unit is non-compliant.
- Quantity types covered: distance (SI: m; exception: km), angle
  (SI: rad; exceptions: deg, arcmin, arcsec), time (SI: s; exceptions:
  min, h, day, yr, JD, MJD), angular rate (SI: rad/s; exceptions:
  deg/s, rpm, deg/h), velocity (SI: m/s; exception: km/s), mass
  (SI: kg; exception: g), force (SI: N), pressure (SI: Pa; exceptions:
  kPa, MPa), temperature (SI: K; exception: degC), frequency
  (SI: Hz; exceptions: kHz, MHz, GHz), acceleration (SI: m/s²;
  exception: km/s²).
- A stated exception must be traceable to an explicit entry in the
  standard or the project's unit declaration table. An undeclared
  non-SI unit is non-compliant regardless of how common it is in
  practice.
- The verdict for each parameter is one of three values: si
  (the parameter's unit matches the SI standard unit), stated_exception
  (the unit appears on the listed exception table), or non_compliant
  (the unit is neither SI nor a stated exception). An unknown quantity
  type also produces a finding and must be resolved before the
  parameter can be accepted.

## Workflow

1. Collect every quantity from the interface document or parameter
   list. Each entry must carry a quantity type label and an explicit
   unit string.
2. For each entry, look up the quantity type in the unit table. If the
   type is not found, record it as unknown and flag it — it cannot be
   assessed until the type is identified.
3. Compare the stated unit against the SI unit for that quantity type.
   If they match, record status as si. If the unit appears in the
   stated-exception set for that type, record stated_exception. If
   neither, record non_compliant with the expected SI unit and the
   available exceptions.
4. Aggregate the per-parameter verdicts. Report counts for si,
   stated_exception, non_compliant, and unknown_quantity. The
   parameter list is fully compliant only when non_compliant and
   unknown_quantity counts are both zero.
5. For each non-compliant finding, provide the offending unit, the
   correct SI unit, and the permitted exceptions so the author can
   correct the document.

## Pitfalls

- Accepting a commonly used unit without checking whether it appears
  on the stated-exception list. Frequent use in the industry does not
  make a unit compliant; only an explicit entry in the exception table
  does.
- Treating an unknown quantity type as implicitly SI-compliant. An
  unknown type must be resolved; it cannot be passed without a lookup
  result.
- Confusing unit prefixes with stated exceptions. Prefixed variants
  (km, kPa, MHz) are compliant only when explicitly listed for that
  quantity type. The base SI unit is always compliant; a prefix is not
  automatically a stated exception.
- Using degrees and radians interchangeably without recording which one
  the parameter document declared. Both are in the table, but the
  stated unit must match whatever the document actually writes. Mixing
  them silently is the most common numerical error in reference-frame
  implementations.

## Behavior contract (gate 3)

The unit-table lookup, SI check, stated-exception check, and
parameter-list aggregation logic is exercised by the gate 3 contract
test: scripts/test_e1009_units.py against scripts/e1009_units_logic.py
(stdlib unittest, offline). Run:
python3 scripts/test_e1009_units.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 →