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 Transform Def

ASecurity

"Use when define each coordinate transformation in a spacecraft or system

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

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-transform-def --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1009 Transform Def?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1009-transform-def
description: "Use when define each coordinate transformation in a spacecraft or system
  model under ECSS-E-ST-10-09C §5.4.9: specify every transform with a verbal statement,
  a rotation-matrix equation, and a figure reference; express each matrix relative to
  its parent frame using a declared row-column convention; and verify that numerical
  precision is consistent across all entries in the model. Check orthogonality
  (R^T R = I, determinant +1) for each rotation matrix, confirm the parent frame is
  in the defined frame set, and flag any transform missing its verbal description,
  figure reference, or declared convention. Trigger: ecss, e-st-10-system-scope,
  coordinate-transformation, rotation-matrix, parent-frame, row-column-convention,
  precision-consistency, frame-definition."
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, coordinate-transformation, rotation-matrix, parent-frame, row-column-convention, precision-consistency, frame-definition]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Coordinate Transformations — Definition and Convention (space-systems/ecss/e1009-transform-def)

Use when the task is to document every coordinate transformation in a spacecraft
or system model per ECSS-E-ST-10-09C §5.4.9 — pairing a verbal description and a
rotation-matrix equation with a figure reference for each transform, enforcing a
declared row-column convention across the whole model, and checking that numerical
precision is uniform throughout.

## Domain quick reference

- §5.4.9 requires that each transformation be expressed in three complementary
  forms: a verbal statement naming the origin and destination frames, a
  mathematical 3×3 rotation matrix written relative to the parent frame, and a
  graphical illustration (figure or drawing) that makes the angular relationship
  unambiguous.
- All rotation matrices in the model must follow one declared row-column
  convention — typically the Direction Cosine Matrix (DCM) convention where
  rows are the child-frame unit vectors expressed in the parent frame, or an
  alternative active/passive sign convention. Mixing conventions within one
  model is a root cause of sign errors; the convention is an attribute of the
  model, not of individual transforms.
- A valid rotation matrix is orthogonal: the product of its transpose with
  itself equals the identity matrix (R^T R = I) and its determinant equals +1.
  A determinant of -1 signals an improper rotation (reflection); both conditions
  are checked as part of the definition audit.
- Precision consistency means all transforms in the set carry the same number
  of significant decimal places. An entry defined to two decimal places while
  others carry fifteen-digit floating-point values introduces a hidden error
  budget that the model does not account for.
- Each matrix is referenced to its parent frame — the frame from which the
  rotation is measured. That parent frame must appear in the model's defined
  frame set; an undefined parent frame breaks the transformation chain.

## Workflow

1. List every coordinate transformation in the model and confirm that each one
   names a parent frame and a child frame. Reject any entry that is missing
   either frame name before continuing.
2. For each transform, check that a verbal description is on record and that it
   references the parent frame by name. A description that says "rotation about
   Z" without naming the parent frame is incomplete.
3. Verify that a figure reference is on record for each transform (drawing
   number, figure label, or equivalent). Flag any entry without a graphical
   reference as incomplete per §5.4.9.
4. Declare the model-wide row-column convention (DCM, active, or passive).
   Check that every transform entry carries the same declared convention; flag
   any that deviate.
5. For each rotation matrix, verify orthogonality: compute R^T R and compare to
   the 3×3 identity matrix within a tolerance (default 1 × 10^-6 Frobenius
   norm). Also check that the determinant equals +1 within the same tolerance.
   Flag non-orthogonal matrices and matrices with determinant ≠ +1 separately.
6. Confirm that every parent frame named in the transform set is present in the
   model's defined frame list. Flag transforms whose parent frame has no
   definition on record.
7. Check numerical precision consistency across all matrices: compute the
   maximum number of significant decimal places used in each matrix, assign
   each a precision level (low ≤ 2 dp, medium 3–6 dp, high ≥ 7 dp), and flag
   any entry whose precision level differs from the set's highest level.
8. Aggregate findings by transform entry; a transform is compliant when it has
   a verbal description, a figure reference, an orthogonal matrix with
   determinant +1, a parent frame on record, the model-wide convention, and
   precision consistent with the rest of the model.

## Pitfalls

- Defining the rotation matrix relative to the child frame instead of the
  parent frame — §5.4.9 requires the parent-frame reference; inverting the
  relation without documenting it is a common source of cascading sign errors
  in the transformation chain.
- Omitting the graphical representation on the grounds that the matrix is
  sufficient — the figure is not optional; it is the one artifact that makes
  the angular sense unambiguous to reviewers who did not build the model.
- Leaving the row-column convention undeclared and trusting that all engineers
  share the same assumption — when the convention is implicit, the first
  engineer to hand the model to a new team member inherits an integration risk.
- Treating orthogonality as guaranteed because the matrix was generated by a
  library — accumulated floating-point error in long transformation chains can
  push R^T R away from identity; the check is a safeguard, not a formality.
- Defining some transforms at full floating-point precision and others to two
  or three rounded places — the lower-precision entries dominate the total
  angular error budget and the inconsistency is invisible until the model is
  compared end-to-end.

## Behavior contract (gate 3)

The transform-completeness, orthogonality, parent-frame, convention, and
precision-consistency logic is exercised by the gate 3 contract test:
scripts/test_e1009_transform_def.py against
scripts/e1009_transform_def_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e1009_transform_def.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 →