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 Mech Frames

ASecurity

Use when define mechanical body frames for a spacecraft under ECSS-E-ST-10-09C §5.4.5: determine each frame's type (spacecraft body, equipment, or sensor mounting), verify the direction cosine matrix (DCM) satisfies orthogonality and proper-rotation constraints, confirm every equipment and sensor frame names a valid parent frame traceable to the spacecraft body frame, and validate that each equipment and sensor frame carries a tied alignment data record with a declared measurement status (mea...

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

Works with

claude codecli

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill e1009-mech-frames --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1009 Mech Frames?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1009-mech-frames
description: "Use when define mechanical body frames for a spacecraft under ECSS-E-ST-10-09C §5.4.5: determine each frame's type (spacecraft body, equipment, or sensor mounting), verify the direction cosine matrix (DCM) satisfies orthogonality and proper-rotation constraints, confirm every equipment and sensor frame names a valid parent frame traceable to the spacecraft body frame, and validate that each equipment and sensor frame carries a tied alignment data record with a declared measurement status (measured, nominal, or estimated). Trigger: ecss, e-st-10-system-scope, mechanical-frames, body-frame, alignment-data, dcm, coordinate-frame, spacecraft-frame, sensor-mounting-frame."
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, mechanical-frames, body-frame, alignment-data, dcm, coordinate-frame, spacecraft-frame, sensor-mounting-frame]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Simulation Modelling — Mechanical Body Frames (space-systems/ecss/e1009-mech-frames)

Use when the task is to define and validate mechanical body frames under
ECSS-E-ST-10-09C §5.4.5 — establishing the spacecraft body frame as the
root, attaching equipment and sensor mounting frames to it, verifying the
direction cosine matrix of each frame, and confirming that every
equipment and sensor frame carries a tied alignment data record.

## Domain quick reference

- ECSS-E-ST-10-09C §5.4.5 recognises three frame categories: the
  **spacecraft body frame** (root frame, origin at a designated structural
  reference point, parent = none), **equipment frames** (one per unit,
  origin at a defined mounting interface, parent must resolve to the
  spacecraft body frame), and **sensor mounting frames** (one per sensing
  element, parent must also resolve through the hierarchy to the spacecraft
  body frame). Each frame is described by a name, a 3-element origin
  vector, and a 3×3 direction cosine matrix (DCM) that rotates vectors
  expressed in that frame into the parent frame.
- A DCM is valid when it is orthogonal (R · Rᵀ = I within tolerance) and
  its determinant equals +1. A determinant of −1 indicates a reflection,
  not a physical rotation, and must be rejected. The tolerance for
  numerical orthogonality is 1 × 10⁻⁶ on the max element of |R·Rᵀ − I|.
- Alignment data ties a frame to the physical hardware. Each equipment
  and sensor frame must carry: the nominal DCM (as-designed rotation from
  the frame to its parent), a declared measurement status (measured,
  nominal, or estimated), and optionally a measured DCM obtained from
  post-integration theodolite or photogrammetry data. A frame whose
  measurement status is declared "measured" but whose measured DCM is
  absent warrants a warning.
- The parent chain of every non-spacecraft frame must be finite and
  acyclic: following parent links from any frame must eventually reach
  the spacecraft body frame without repeating a node.

## Workflow

1. Identify the spacecraft body frame and confirm it is defined with
   `parent = None`, a named origin, and a valid DCM (typically the
   identity matrix). Register it as the root of the frame hierarchy.
2. For each equipment frame, confirm the required fields are present
   (name, type, parent, origin, DCM), resolve the parent to an already
   registered frame, verify DCM orthogonality and determinant, and add
   the frame to the registry only if all checks pass.
3. For each sensor mounting frame, apply the same field, parent, and
   DCM checks as for equipment frames. Sensor frames may be parented to
   an equipment frame (which must itself already be registered) rather
   than directly to the spacecraft body frame.
4. For every equipment and sensor frame that has been accepted into the
   registry, confirm that an alignment data record exists naming that
   frame. Each alignment record must carry: `frame_name` (matching a
   registered frame), `nominal_dcm` (a valid 3×3 rotation matrix), and
   `measurement_status` (one of: measured, nominal, estimated). Flag
   any equipment or sensor frame with no alignment record as an
   incomplete alignment data package.
5. For each alignment record whose status is "measured", confirm a
   `measured_dcm` is present; if it is absent, raise a warning rather
   than a hard error, as the measurement may be planned but not yet
   delivered. If a `measured_dcm` is present, validate its orthogonality
   and determinant independently.
6. Walk the parent chain of every registered frame to confirm no cycle
   exists. A cycle indicates a data entry error and must be raised as a
   hard error.
7. Aggregate all hard errors and warnings per frame and per alignment
   record; the overall frame-set passes only when every frame and every
   alignment record is free of hard errors.

## Pitfalls

- Accepting a DCM with determinant −1 as a rotation: a pure sign error
  on one axis produces a reflection matrix that satisfies orthogonality
  but is physically invalid as a frame definition.
- Omitting the alignment record for sensor frames on the grounds that
  the sensor's position "is obvious from the drawing": the alignment data
  record is a contractual deliverable under §5.4.5 and its absence is a
  finding regardless of how well the geometry is understood informally.
- Nesting frames more than two levels deep without checking the full
  parent chain: a three-level chain (spacecraft → equipment → sensor) is
  valid, but a mis-typed parent name can silently truncate the chain or
  introduce a cycle that is invisible when checking only the immediate
  parent.
- Treating a "nominal" measurement status as equivalent to "measured":
  nominal indicates the as-designed value has not been verified by
  physical measurement; it is acceptable at early programme phases but
  must be replaced by "measured" before the alignment data package is
  closed for flight.

## Behavior contract (gate 3)

The frame-type, DCM orthogonality, parent-chain, and alignment-record
logic is exercised by the gate 3 contract test:
scripts/test_e1009_mech_frames.py against
scripts/e1009_mech_frames_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e1009_mech_frames.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 →