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

Structural Data Exchange

ASecurity

Use when verify structural data exchange items among design, analysis, manufacturing, subsystem, and test disciplines per ECSS-E-ST-32C clause 4.9: categorize each data item by type (FEM model, CAD geometry, loads file, material card, test result), confirm every sender–receiver pair is authorized by an interface control document, validate that each item carries a version identifier and a traceable source document reference, and flag format mismatches against the allowed set for each item type...

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 structural-data-exchange --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Structural Data Exchange?

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

Security grade badge for Structural Data Exchange
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-structural-data-exchange/badge)](https://www.skillsdirectory.com/skills/ashfordeou-structural-data-exchange)

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

Download with Pro
Files
SKILL.md
---
name: structural-data-exchange
description: "Use when verify structural data exchange items among design, analysis, manufacturing, subsystem, and test disciplines per ECSS-E-ST-32C clause 4.9: categorize each data item by type (FEM model, CAD geometry, loads file, material card, test result), confirm every sender–receiver pair is authorized by an interface control document, validate that each item carries a version identifier and a traceable source document reference, and flag format mismatches against the allowed set for each item type. Trigger: ecss, e-st-32-structures-scope, structural-data-exchange, data-traceability, interface-control, fem-model, loads-exchange, material-card, icd."
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-32-structures-scope, structural-data-exchange, data-traceability, interface-control, fem-model, loads-exchange, material-card, icd]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Structures — Structural Data Exchange (space-systems/ecss/structural-data-exchange)

Use when the task is verifying structural data exchange packages under
ECSS-E-ST-32C clause 4.9 — categorizing data items by discipline type,
confirming interface control document authorization for each
sender–receiver pair, checking version and traceability of every item,
and flagging format non-conformances before the package is accepted.

## Domain quick reference

- Clause 4.9 covers the controlled exchange of structural engineering
  data among the following disciplines: design (CAD geometry, interface
  control documents), analysis (FEM models, loads files, material cards),
  manufacturing (material cards, process specifications), subsystems
  (interface loads, interface geometry), and test (test results,
  correlated models). Each data item belongs to at least one discipline
  group; an item with an unrecognized type is left uncategorized and
  must be resolved before the package is accepted.
- Every sender–receiver data flow must be authorized by an interface
  control document (ICD). An ICD entry identifies the sending
  organization, the receiving organization, and the agreed data scope.
  A data item flowing outside a declared ICD entry is unauthorized
  regardless of its content quality or completeness.
- Traceability requires each data item to carry three attributes: a
  unique item identifier, a version string, and a reference to the
  source document from which the item was derived or formally released.
  A missing or empty source document reference is a traceability gap,
  not a minor annotation — it breaks the change-management chain
  required by clause 4.9.
- Allowed formats are defined per data type. FEM models are exchanged
  in bulk-data formats (NASTRAN BDF, ABAQUS INP, ANSYS CDB) or neutral
  geometry (STEP). CAD geometry is exchanged in STEP, IGES, or
  established native formats. Loads files and material cards use
  structured text (CSV, TXT) or JSON. Test results use structured text
  or PDF. ICDs use PDF or DOCX. A data item delivered in an unlisted
  format is non-conformant regardless of readability.

## Workflow

1. Receive the data exchange package as a list of data items, each
   carrying: item_id, data_type, sender, receiver, format, version,
   and source_doc. Reject any item missing a required field before it
   enters further checks — partial items must not propagate.
2. Categorize each data item into one or more discipline groups (design,
   analysis, manufacturing, test) based on its data_type. Items with an
   unrecognized data_type are placed in the uncategorized group and
   flagged; they must be resolved or removed before the package can be
   accepted.
3. For each item, confirm that the (sender, receiver) pair appears in
   the declared ICD pair list. Items whose pair is absent are flagged as
   unauthorized; record the offending pair for ICD update or rejection.
4. Validate the format of each item against the allowed set for its
   data_type. A format not in the allowed list is a non-conformance;
   record the item_id, the submitted format, and the allowed formats for
   that type.
5. Check traceability: every item must have a non-empty version string
   and a non-empty source_doc reference. A blank or whitespace-only
   value in either field is a traceability gap, reported independently
   of other validation errors.
6. Build the traceability matrix from all items. Detect duplicate
   item_id values — two items sharing an identifier create an ambiguous
   traceability chain. Flag all duplicates; do not include them in the
   accepted matrix entry.
7. Aggregate findings per item and per package. The package is
   conformant only when all items pass field and format validation, all
   pairs are ICD-authorized, and the traceability matrix contains no
   duplicate identifiers.

## Pitfalls

- Accepting a data item without checking its sender–receiver pair
  against the ICD list — an item flowing between two teams with no ICD
  entry is not a minor administrative gap; it is an unauthorized
  interface and must be flagged before the data is used downstream.
- Treating a missing source_doc as a low-priority annotation — a blank
  source_doc means the item cannot be traced to a released document,
  which breaks the change-management chain required by clause 4.9 and
  makes later version audits impossible.
- Conflating format readability with format acceptance — a receiver may
  technically be able to open a non-listed format, but the exchange
  standard requires listed formats to ensure long-term retrievability
  and toolchain interoperability across the project lifecycle.
- Accepting a package with duplicate item_id values without flagging
  them — two items sharing an identifier make it impossible to determine
  which version a downstream analysis or manufacturing document is
  referencing.
- Silently dropping uncategorized items rather than flagging them — an
  item whose data_type is not recognized may represent a new data
  interface that has not been formally established; it must be resolved,
  not silently removed.

## Behavior contract (gate 3)

The item validation, ICD authorization, format check, traceability
matrix, and discipline categorization logic is exercised by the gate 3
contract test:
scripts/test_structural_data_exchange.py against
scripts/structural_data_exchange_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_structural_data_exchange.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 →