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

Interface Verification Test

ASecurity

"Use when verify interface compliance between spacecraft structural

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 interface-verification-test --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Interface Verification Test?

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

Security grade badge for Interface Verification Test
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-interface-verification-test/badge)](https://www.skillsdirectory.com/skills/ashfordeou-interface-verification-test)

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

Download with Pro
Files
SKILL.md
---
name: interface-verification-test
description: "Use when verify interface compliance between spacecraft structural
  subsystems or components per ECSS E-ST-32C clause 4.6.3.22: categorize each
  interface as mechanical, electrical, thermal, fluid, or optical; select the
  verification method (inspection, analysis, or test) appropriate to the interface
  type; perform dimensional fit checks against the tolerance stack in the Interface
  Control Document; confirm every interface carries a valid ICD reference; and
  aggregate per-interface findings to determine overall compliance. Trigger: ecss,
  e-st-32-structures-scope, interface-verification, icd, dimensional-fit,
  structural-interface, inspection, test-verification, fit-check."
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, interface-verification, icd, dimensional-fit, structural-interface, inspection, test-verification, fit-check]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Structures — Interface Verification by Test or Inspection (space-systems/ecss/interface-verification-test)

Use when the task is verifying that structural interfaces between spacecraft
subsystems or components meet their Interface Control Document (ICD) requirements,
following the procedure outlined in ECSS E-ST-32C clause 4.6.3.22. The procedure
covers categorizing each interface by type, selecting the appropriate verification
method, checking dimensional fit against the ICD tolerance stack, and confirming
every interface carries a valid ICD reference before declaring compliance.

## Domain quick reference

- Clause 4.6.3.22 requires that each interface between structural assemblies be
  formally verified either by physical inspection, by supporting analysis, or by
  dedicated test, depending on the nature and criticality of the interface. The
  method selected must be traceable to the ICD.
- Interfaces are grouped into five categories: mechanical (bolted, bonded,
  riveted, welded joints and mating structural surfaces), electrical (connector
  and harness pass-throughs that impose structural loads), thermal (conductive
  and radiative contact surfaces that carry thermo-elastic loads), fluid
  (pressure lines and fittings that transmit fluid-induced structural loads), and
  optical (alignment-critical interfaces for sensors and instruments).
  Each interface is placed in exactly one category before its verification
  method is selected.
- Verification method selection follows the interface category and available
  facility: electrical and optical interfaces require functional test; any
  interface category where a dedicated test facility exists defaults to test;
  otherwise inspection is the baseline method. Analysis alone is not a
  standalone verification for dimensional fit — it supplements inspection or test.
- A dimensional fit check confirms that the measured gap or clearance at the
  mating surface falls within the tolerance band specified in the ICD. The check
  computes the deviation from the ICD nominal dimension and compares it against
  the ±tolerance. A surface outside the band is a non-compliant finding.
- Every interface must carry a valid ICD reference. An interface with no ICD
  reference is a non-compliant finding regardless of the dimensional result,
  because traceability to a controlled requirement document cannot be established.

## Workflow

1. Collect the full interface inventory from the structural ICD set. For each
   interface record the interface identifier, category (mechanical / electrical /
   thermal / fluid / optical), the ICD nominal dimension and its ±tolerance, the
   measured actual dimension, the ICD reference identifier, and the proposed
   verification method.
2. Validate every interface record for completeness before proceeding. Reject
   any record that is missing a required field and flag it as an input error
   rather than a compliance finding.
3. Categorize each interface into exactly one of the five categories. Reject any
   interface with an unrecognized category — do not silently assign a default.
4. Confirm the proposed verification method is one of: inspection, analysis, or
   test. Reject unrecognized methods with an explicit error.
5. Perform the dimensional fit check for each interface: compute the deviation
   of the actual dimension from the ICD nominal, check that it lies within the
   ±tolerance band, and record the result. Flag any interface outside the band
   as a dimensional non-conformance finding.
6. Check that every interface record carries a non-empty ICD reference string.
   Flag any interface with a missing or blank ICD reference as a traceability
   non-conformance finding.
7. Aggregate the findings per interface: an interface is compliant only when
   both the dimensional fit check passes and a valid ICD reference is present.
   An interface with any finding is non-compliant.
8. Summarize the assessment: report total interface count, compliant count,
   non-compliant count, and the list of findings per interface. The structural
   interface set is fully verified only when the non-compliant count is zero.

## Pitfalls

- Skipping the ICD reference check and treating a clean dimensional result as
  full compliance — an interface with no traceable ICD reference is not verified
  regardless of its measured dimension.
- Applying the same verification method to all interfaces irrespective of
  category — electrical and optical interfaces require functional test to confirm
  their interface loads and alignment; inspection alone is insufficient.
- Treating analysis as a standalone verification method for dimensional fit —
  analysis supports the verification but dimensional compliance must ultimately
  be confirmed by a physical measurement (inspection) or by a dedicated test.
- Counting an interface as compliant when its tolerance band is unset or zero
  because "no violation was found" — an unset tolerance means the ICD requirement
  was never captured, which is itself a traceability finding, not a pass.
- Assigning interfaces to multiple categories to hedge against method
  requirements — each interface belongs to exactly one category, and the
  verification method follows from that single assignment.

## Behavior contract (gate 3)

The interface categorization, verification method selection, dimensional fit
check, ICD reference validation, per-interface compliance determination, and
set-level aggregation logic are exercised by the gate 3 contract test:
scripts/test_interface_verification_test.py against
scripts/interface_verification_test_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_interface_verification_test.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 →