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 Frame

ASecurity

Use when define and validate a spacecraft reference frame under ECSS-E-ST-10C §5.4.1: establish the frame origin and three orthogonal right-handed axes, label each axis with a physical direction reference, determine whether the frame is inertial or time-varying (body-fixed, orbit-referenced, or planet-fixed), supply an epoch for inertial frames, confirm the name follows the ECSS uppercase-alphanumeric convention, and verify that any child frame traces an unbroken chain back to a root inertial...

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

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-frame --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1009 Frame?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1009-frame
description: "Use when define and validate a spacecraft reference frame under ECSS-E-ST-10C §5.4.1: establish the frame origin and three orthogonal right-handed axes, label each axis with a physical direction reference, determine whether the frame is inertial or time-varying (body-fixed, orbit-referenced, or planet-fixed), supply an epoch for inertial frames, confirm the name follows the ECSS uppercase-alphanumeric convention, and verify that any child frame traces an unbroken chain back to a root inertial frame. Trigger: ecss, e-st-10-system-scope, reference-frame, coordinate-frame, axes, right-handed, inertial, body-fixed, orbit-referenced, frame-naming."
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, reference-frame, coordinate-frame, axes, right-handed, inertial, body-fixed]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS System Engineering — Reference Frames (space-systems/ecss/e1009-frame)

Use when the task is to define or validate a spacecraft coordinate reference
frame under ECSS-E-ST-10C §5.4.1 — specifying origin, axis orientations,
handedness, time-dependence classification, naming, and frame-chain traceability.

## Domain quick reference

- A reference frame is uniquely described by (a) its origin — a physically
  identifiable point such as the spacecraft centre of mass or a sensor focal
  point — and (b) three mutually orthogonal unit vectors that form a
  right-handed coordinate triad (x, y, z such that z = x × y).
- Frames are categorized by their time-dependence:
  - **Inertial** — origin and axes are fixed relative to the celestial sphere;
    must carry an epoch (e.g. J2000.0); used as the root of the frame tree.
  - **Body-fixed** — axes rotate with the spacecraft structure; time-varying
    (changes with attitude); traced to an inertial root via the attitude
    rotation sequence.
  - **Orbit-referenced** — axes aligned with orbital position/velocity vectors
    (e.g. radial–transverse–normal); time-varying and mission-phase-dependent.
  - **Planet-fixed** — axes rotate with a planetary body (e.g. ECEF for Earth);
    time-varying relative to inertial space.
  - **Topocentric** — origin at a ground station or landing site; time-varying
    due to planetary rotation.
- Naming: ECSS §5.4.1 requires names to be unambiguous, uppercase
  alphanumeric with underscores, starting with a letter, and ≤ 64 characters
  (e.g. `SC_BODY`, `ECI_J2000`, `RTN_ORB`).
- Every non-root frame must reference a parent frame; the chain from any
  leaf frame to the inertial root must be traceable without gaps.

## Workflow

1. **Identify the origin**: Record a physically identifiable anchor point
   (e.g. spacecraft centre of mass, instrument aperture centre, ground-station
   reference mark). Reject any frame whose origin is vague or
   unverifiable from documentation.
2. **Assign axis directions**: Specify three unit vectors. Each must have
   magnitude 1.0 (within numerical tolerance). The pair (x, y) must be
   orthogonal (x · y = 0). Derive z = x × y and confirm the result matches
   the declared z axis; flag any deviation above tolerance.
3. **Categorize by time-dependence**: Assign the frame type from the
   enumeration above (inertial, body-fixed, orbit-referenced, planet-fixed,
   topocentric). Inertial frames must carry an explicit epoch. Body-fixed and
   orbit-referenced frames must be flagged as time-varying. Inertial frames
   must be flagged as time-independent.
4. **Apply naming convention**: Validate the frame name against the ECSS
   convention — uppercase letters and digits, underscores allowed,
   must begin with a letter, max 64 characters.
5. **Establish parent linkage**: For every non-root frame, record the name
   of its parent frame. Confirm the parent name appears in the defined
   frame set. Flag any frame whose parent is undefined.
6. **Produce the frame record**: Emit a complete frame definition record
   with origin description, axis unit vectors, frame type, time-dependence
   flag, epoch (if inertial), parent frame (if non-root), and name. A frame
   record is complete only when all fields above are present and validated.

## Pitfalls

- Using non-unit direction vectors (e.g. direction cosines not normalized)
  leads to incorrect rotation matrix computation downstream; always normalize
  and re-verify magnitude before recording.
- Omitting the epoch from an inertial frame makes the frame ambiguous across
  precession epochs (e.g. J2000.0 vs. J2050.0 differ by non-negligible
  amounts for high-precision pointing); treat a missing epoch as an error,
  not a default.
- Marking a body-fixed or orbit-referenced frame as time-independent
  conflates its instantaneous snapshot with the frame definition itself and
  silently breaks any downstream attitude propagation that reads the
  time-dependence flag.
- Leaving a non-root frame without a declared parent frame severs the
  traceability chain; transformation from that frame to any other frame
  becomes undefined and must be flagged as unresolved.
- Using lowercase or mixed-case frame names in a mixed-tool chain causes
  silent mismatches in attitude software that performs case-sensitive name
  lookups; enforce the uppercase convention at ingestion.

## Behavior contract (gate 3)

The origin-description, axis orthogonality/handedness, time-dependence
consistency, naming convention, and frame-chain traceability logic is
exercised by the gate 3 contract test:
scripts/test_e1009_frame.py against scripts/e1009_frame_logic.py
(stdlib unittest, offline).  Run:
python3 scripts/test_e1009_frame.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 →