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

E4008 Link General

ASecurity

Verify the general rules every link in an SMP Level-2 assembly artefact obeys before its kind-specific typing is reached, per ECSS-E-ST-40-08C clause 5.2.7.1: each link name is a valid identifier and unique in the assembly, the declared kind is interface, event or field, both endpoints resolve onto a declared instance by longest-path match with an element left over, no endpoint dangles or reaches outside the assembly scope, the same kind-source-target triple is not declared twice, and an inst...

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

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 e4008-link-general --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E4008 Link General?

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

Security grade badge for E4008 Link General
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e4008-link-general/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e4008-link-general)

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

Download with Pro
Files
SKILL.md
---
name: e4008-link-general
description: "Verify the general rules every link in an SMP Level-2 assembly artefact obeys before its kind-specific typing is reached, per ECSS-E-ST-40-08C clause 5.2.7.1: each link name is a valid identifier and unique in the assembly, the declared kind is interface, event or field, both endpoints resolve onto a declared instance by longest-path match with an element left over, no endpoint dangles or reaches outside the assembly scope, the same kind-source-target triple is not declared twice, and an instance is not joined to itself. Use when an assembly fails to connect, a link silently does nothing, or a whole link set needs grading. Trigger: ecss, e-st-40-08c, smp-level-2, assembly-link-set, link-endpoint-resolution, duplicate-link-detection, dangling-link-endpoint, assembly-link-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-40-08c-smp-level-2, e4008-link-general, smp-assembly-artefact, assembly-link-set, link-endpoint-resolution, duplicate-assembly-link, assembly-link-scope]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS SMP L2 — Link General Rules (space-systems/ecss/e4008-link-general)

Use when the task is the part of an SMP Level-2 assembly artefact that every
link shares, per ECSS-E-ST-40-08C clause 5.2.7.1 — naming, kind, endpoint
resolution and duplication — decided before any interface, event or field
typing rule is applied.

## Domain quick reference

- A link is a named element of the assembly, not an anonymous edge. The name is
  what a Link Base entry, a diagnostic and a later amendment all refer to, so a
  name that repeats makes two different connections indistinguishable in every
  downstream report.
- Three link kinds exist: interface, event and field. Each adds its own typing
  rule on top of these general ones. A kind outside the three cannot be graded
  by any of those rules, so it is refused at the general level rather than
  passed on to a loader that will guess.
- An endpoint is a single dotted path that contains both the instance and the
  element on it, and the split between them is not syntactic. It is found by
  matching the longest declared instance path that prefixes the endpoint, which
  is why a nested instance and its parent can both be legitimate endpoints and
  why the deeper one has to win.
- Two failure shapes look alike and are not: an endpoint that resolves to no
  declared instance dangles, and an endpoint that resolves exactly onto an
  instance names no element at all. The first usually means a missing instance;
  the second means a truncated path.
- Scope is the assembly's own instance set. An endpoint reaching a path the
  assembly did not create is out of scope even when that path exists somewhere
  in the simulator, because the assembly cannot guarantee its presence at the
  moment it is applied.

## Workflow

1. Build the instance scope from the declared instance paths, refusing a path
   declared twice before any link is examined.
2. For each link, validate the name as an identifier and record it, flagging a
   repeat against the position that first used it.
3. Categorize the declared kind against the three admitted kinds and stop
   grading a link whose kind is outside them.
4. Resolve each endpoint by longest declared-prefix match, separating the
   dangling case from the names-no-element case in the finding text.
5. Compare the two resolved instances; unless the assembly explicitly permits a
   self-link, a link whose endpoints sit on one instance is refused.
6. Form the (kind, source, target) signature and flag a second link carrying a
   signature already seen, naming the link it duplicates.
7. Report the accepted links, a per-kind tally for the kind-specific gates that
   run next, and every finding.

## Pitfalls

- Splitting an endpoint on the last dot. The element of a link can itself be a
  nested path, so a fixed split puts the wrong boundary between instance and
  element and turns a valid endpoint into a dangling one.
- Matching the first instance prefix rather than the longest. A parent instance
  prefixes every child path, so first-match silently attaches a child's element
  to its parent and the link connects something that was never intended.
- Treating a repeated link as harmless because both copies are identical. The
  duplicate is what makes a later single-sided amendment diverge, and an
  identical pair is the only kind a text diff will not show as a conflict.
- Grading kind-specific typing before the general rules. A field-type mismatch
  reported on a link whose target does not exist sends the reader to the
  datatypes when the real defect is a missing instance.
- Permitting a self-link by default because a model legitimately feeds itself.
  Self-connection is a deliberate assembly decision; making it the default hides
  the common case where a copied link never had its target updated.

## Behavior contract (gate 3)

The identifier rule, instance-scope construction, longest-prefix endpoint
resolution, kind grading, self-link rule and duplicate-signature detection are
exercised by the gate 3 contract test:
scripts/test_e4008_link_general.py against
scripts/e4008_link_general_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e4008_link_general.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 →