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

E5053 Target Spacewire Address

ASecurity

Validate the target SpaceWire address prefixed to a CCSDS packet transfer protocol data unit under ECSS-E-ST-50-53C clause 5.1.4: group each leading octet as a router port selector, a logical destination, a configuration port or the reserved encoding, confirm the sequence is a run of selectors terminated at most once, trace what each router consumes, and reconcile the prefix against a directly attached target or a declared hop count. Use when a sending node builds or reviews a route prefix. T...

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

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 e5053-target-spacewire-address --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E5053 Target Spacewire Address?

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

Security grade badge for E5053 Target Spacewire Address
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e5053-target-spacewire-address/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e5053-target-spacewire-address)

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

Download with Pro
Files
SKILL.md
---
name: e5053-target-spacewire-address
description: "Validate the target SpaceWire address prefixed to a CCSDS packet transfer protocol data unit under ECSS-E-ST-50-53C clause 5.1.4: group each leading octet as a router port selector, a logical destination, a configuration port or the reserved encoding, confirm the sequence is a run of selectors terminated at most once, trace what each router consumes, and reconcile the prefix against a directly attached target or a declared hop count. Use when a sending node builds or reviews a route prefix. Trigger: ecss, e-st-50-53-spacewire-ccsds-scope, target-spacewire-address, spacewire-path-address, spacewire-route-prefix, router-port-selector, reserved-address-encoding, direct-attachment-addressing."
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-50-53-spacewire-ccsds-scope, e5053-target-spacewire-address, target-spacewire-address, spacewire-path-address, spacewire-route-prefix, router-port-selector, reserved-address-encoding]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS SpaceWire CCSDS Transfer — Target SpaceWire Address (space-systems/ecss/e5053-target-spacewire-address)

Use when the task is the target SpaceWire address that ECSS-E-ST-50-53C
clause 5.1.4 obliges a sending node to put in front of a CCSDS packet
transfer protocol data unit — what octets belong there, in what order, and
when there should be none at all.

## Domain quick reference

- The address is a prefix, not a field inside the transfer. It exists only
  to get the data unit to the target node and is consumed on the way, so
  what the target finally reads is not what the sender wrote.
- A low-valued octet selects an output port of the next router it reaches
  and is deleted by that router. A higher-valued octet names a destination
  logically, is not deleted, and is used by every router along the way to
  look the route up. The consequence is directional: selectors have to come
  first, and a logical octet terminates the address.
- The lowest encoding of all does not reach an attached node. It addresses
  the configuration port of the router itself, which is a legitimate thing
  to want and almost never what a packet transfer wants, so it is worth
  surfacing rather than silently routing.
- The highest encoding is held reserved and must not appear anywhere in the
  prefix. It is the encoding a zeroed or all-ones buffer produces, which is
  exactly why an implementation that tolerates it will route corrupted
  addresses.
- An empty prefix is a real address. It says the target is reached with no
  routing decision, which is correct for a directly attached node and wrong
  for anything behind a router.

## Workflow

1. Validate the prefix as a sequence of octets, accepting an empty
   sequence, and refuse any member outside the range one octet can hold.
2. Group each octet: port selector, logical destination, configuration port
   or reserved encoding.
3. Count the leading port selectors. That count is the number of routers
   that will each consume exactly one octet, and it is the quantity to
   reconcile with the topology.
4. Check the shape. The prefix must be a run of selectors, optionally
   ending in a single logical octet; anything after that logical octet
   cannot be delivered and is a malformed address, not a longer route.
5. Trace the route hop by hop, removing the leading selector the way a
   router would, and confirm the address that finally arrives is the one
   the target expects to see.
6. Reconcile against the topology: a directly attached target should carry
   no prefix, a routed target must carry one, and a declared router count
   that disagrees with the selector count is a route that stops in the
   wrong place. Report a configuration-port selector as a limitation rather
   than a fault.

## Pitfalls

- Assuming the target reads the address the sender wrote. Each router
  consumes its selector, so a target checking the prefix sees only what
  survived; a test that compares the two byte for byte fails on every
  correct multi-hop route.
- Putting a logical octet before a selector. Routers stop deleting at the
  first non-selector, so the selectors behind it are delivered as data and
  the route silently ends at the logical destination.
- Treating an empty prefix as an error. It is the correct address for a
  directly attached target, and rejecting it forces implementers to invent
  a filler octet that then selects a real port.
- Letting the reserved encoding through because it parsed. It is the value
  an uninitialised buffer supplies, so tolerating it converts a memory
  fault into a routed packet.
- Reconciling the hop count against the whole prefix length rather than the
  leading selectors. A logical octet is not consumed, so counting it as a
  hop makes every mixed address look one router too long.

## Behavior contract (gate 3)

The octet grouping, prefix validation including the empty case, selector
counting, address-form checking, the per-hop consumption trace and the
reconciliation against direct attachment and a declared router count are
exercised by the gate 3 contract test:
scripts/test_e5053_target_spacewire_address.py against
scripts/e5053_target_spacewire_address_logic.py (stdlib unittest, offline).
Run: python3 scripts/test_e5053_target_spacewire_address.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 →