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 Csys

ASecurity

Use when define coordinate systems for a spacecraft or mission under ECSS-E-ST-10C §5.4.2: select a frame type (inertial, rotating, body-fixed, orbital, or topocentric), confirm that all axes within the chosen representation (Cartesian, spherical, or cylindrical) carry unambiguous direction references, flag every frame whose origin or orientation varies with time as time-dependent, and verify that no frame with an underdefined axis or unresolved parent reference enters the system model. A com...

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

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

Installs into .claude/skills of the current project.

Are you the author of E1009 Csys?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1009-csys
description: "Use when define coordinate systems for a spacecraft or mission under ECSS-E-ST-10C §5.4.2: select a frame type (inertial, rotating, body-fixed, orbital, or topocentric), confirm that all axes within the chosen representation (Cartesian, spherical, or cylindrical) carry unambiguous direction references, flag every frame whose origin or orientation varies with time as time-dependent, and verify that no frame with an underdefined axis or unresolved parent reference enters the system model. A compliant set has all axes defined, all time-dependent frames explicitly flagged, and every non-root frame referencing a known parent. Trigger: ecss, e-st-10-system-scope, coordinate-systems, reference-frames, time-dependent-frames, frame-definition, axis-definition, spacecraft-geometry."
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-systems, reference-frames, time-dependent-frames, frame-definition, axis-definition, spacecraft-geometry]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS System Engineering — Coordinate System Definition (space-systems/ecss/e1009-csys)

Use when the task is defining the coordinate systems for a space mission or
spacecraft under ECSS-E-ST-10C §5.4.2 -- selecting reference frame types,
confirming that every coordinate within a chosen frame representation is
unambiguously defined, and flagging every frame whose orientation or origin
changes with time.

## Domain quick reference

- A coordinate system has three parts: a frame type that fixes the physical
  sense of the origin and axes, a coordinate representation that determines
  which coordinate labels are required, and a time-dependence flag that states
  whether the frame's orientation relative to an inertial frame changes over time.
- Five frame types are recognised under §5.4.2: inertial (fixed relative to
  distant stars; e.g., ECI, ICRF), rotating (turns at a known rate relative
  to an inertial frame; e.g., ECEF), body-fixed (tied to the spacecraft or
  another body), orbital (derived from instantaneous orbital elements), and
  topocentric (origin on a body surface, rotating with that body).
- Three coordinate representations are used: Cartesian (axes x, y, z),
  spherical (coordinates r, theta, phi), and cylindrical (coordinates
  rho, phi, z). Each requires every label to have an unambiguous direction
  reference before the coordinate system is considered fully defined.
- Time-dependence is inherent for rotating, orbital, and topocentric frames;
  it must be assessed explicitly for body-fixed frames (a spinning or
  manoeuvring body makes the frame time-dependent); and inertial frames are
  treated as time-independent for mission timescales (precession over
  millennia is outside §5.4.2 scope).
- A coordinate system that references a parent frame (e.g., LVLH defined
  relative to ECI) carries a parent-frame field. Every such reference must
  resolve to a known frame within the registered set before the set is
  accepted.

## Workflow

1. For each coordinate system to be defined, record its name, frame type,
   coordinate representation, origin definition, and axis or parameter
   directions. Reject any entry with an empty name, an unrecognised frame
   type, or an unrecognised coordinate representation immediately.
2. Check that the origin field is non-empty. A frame with no origin
   definition is underdefined and must not proceed to the axis check.
3. Verify that every required coordinate label for the chosen representation
   has a non-empty direction definition. For Cartesian, all three of x, y, z
   must be specified; for spherical, r, theta, phi; for cylindrical, rho,
   phi, z. Any missing or empty label makes the frame underdefined.
4. Determine and record the time-dependence flag. For rotating, orbital, and
   topocentric frame types, the flag is always true and cannot be overridden.
   For inertial frame types, the flag is false unless explicitly set. For
   body-fixed, accept the caller's declaration but default to false when none
   is given; note that a maneuvring or spinning body-fixed frame should be
   flagged true.
5. Validate the parent-frame reference if one is provided. Every non-root
   coordinate system that names a parent must reference a frame already
   present in the registered set. An unresolved reference is flagged as an
   error in the parent-frame chain.
6. After processing all frames, produce a summary: total count, count and
   names of time-dependent frames, count and names of underdefined frames,
   and whether the set is fully compliant (no underdefined frames, no broken
   parent references).

## Pitfalls

- Treating rotating, orbital, and topocentric frames as time-independent --
  these frame types inherently change orientation relative to an inertial
  frame and must always carry the time-dependent flag.
- Accepting a Cartesian frame with only two axis definitions on the grounds
  that the third axis can be inferred from the right-hand rule -- the
  right-hand construction requires both defined axes to be correctly oriented;
  each axis must be stated explicitly so that the direction is unambiguous.
- Leaving a parent-frame reference unresolved and proceeding with the
  coordinate system chain -- a broken reference makes any transformation
  between the child and its ancestors undefined and invalidates any analysis
  that depends on the chain.
- Treating an empty-string axis direction as a valid definition -- an empty
  direction is indistinguishable from a forgotten entry and must be rejected
  as underdefined.

## Behavior contract (gate 3)

The frame-definition, axis-definability, time-dependence, parent-chain, and
registry-summary logic is exercised by the gate 3 contract test:
scripts/test_e1009_csys.py against scripts/e1009_csys_logic.py (stdlib
unittest, offline). Run:
python3 scripts/test_e1009_csys.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 →