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 Reserved Field Zero

ASecurity

Assess the reserved field that follows the protocol identifier in a SpaceWire CCSDS packet transfer under ECSS-E-ST-50-53C clause 5.5.4.2, keeping its two obligations on the parties they belong to: the sender writes zero and has no discretion, while the receiver ignores whatever the field holds and must not refuse delivery over it. Audit a run of received transfers for non-conformant senders without turning any of them into discards, and flag a receive path configured to reject on the field a...

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

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-reserved-field-zero --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E5053 Reserved Field Zero?

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

Security grade badge for E5053 Reserved Field Zero
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e5053-reserved-field-zero/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e5053-reserved-field-zero)

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

Download with Pro
Files
SKILL.md
---
name: e5053-reserved-field-zero
description: "Assess the reserved field that follows the protocol identifier in a SpaceWire CCSDS packet transfer under ECSS-E-ST-50-53C clause 5.5.4.2, keeping its two obligations on the parties they belong to: the sender writes zero and has no discretion, while the receiver ignores whatever the field holds and must not refuse delivery over it. Audit a run of received transfers for non-conformant senders without turning any of them into discards, and flag a receive path configured to reject on the field as the defect it is. Use when encoding or auditing SpaceWire transfer headers. Trigger: ecss, e-st-50-53c, spacewire-reserved-field, reserved-field-zero-fill, receiver-ignores-reserved-field, ccsds-transfer-encoding, sender-conformance-audit, forward-compatibility-reserved-bits."
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-ccsds-packet-transfer, e5053-reserved-field-zero, spacewire-reserved-field, reserved-field-zero-fill, receiver-ignores-reserved-field, sender-conformance-audit, forward-compatibility-reserved-bits]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS SpaceWire CCSDS Transfer — Reserved Field (space-systems/ecss/e5053-reserved-field-zero)

Use when the task is the reserved field of a SpaceWire packet carrying
the CCSDS packet transfer protocol, per ECSS-E-ST-50-53C clause 5.5.4.2
— what a sender puts in it, what a receiver does about what it finds
there, and why those are not the same rule.

## Domain quick reference

- The reserved field sits between the protocol identifier and the CCSDS
  Packet field. It carries nothing today; it exists so a later revision
  of the protocol has a defined place to put something without moving
  every field after it.
- Clause 5.5.4.2 carries two obligations on two different parties. The
  sender writes zero. The receiver ignores the contents. Both are
  needed, and each is useless without the other.
- The sender's obligation is what keeps the field usable later. If
  senders fill it with anything convenient, a future revision that
  assigns meaning to those bits finds a population of existing
  equipment already emitting noise into them, and the extension point
  is spent.
- The receiver's obligation is what makes deployment survivable. A
  receiver that refuses transfers over a non-zero reserved field is
  intolerant of exactly the senders it is required to interoperate
  with, and it will also reject conformant traffic from a later
  revision that does use the field.
- The consequence of that split is that one octet value produces two
  different verdicts depending on which side is asking. A non-zero
  value is a defect in the sender's build and an observation in the
  receiver's log, never a discard.

## Workflow

1. On the sending side, emit the field as zero of the declared width.
   There is no configuration and no parameter; the encoder returns a
   constant because the standard leaves nothing to decide.
2. Validate any observed field value as an octet before judging it. A
   value outside the octet range is a decoder defect upstream, not a
   non-conformant sender.
3. Judge the value against the role of the party asking. For a sender,
   anything other than zero is a finding naming both what was written
   and what is required.
4. For a receiver, return delivery in every case, and record a non-zero
   value as an observation about the sender's conformance rather than
   as a compliance failure of the receiving entity.
5. Across a run of received transfers, count the non-conformant ones
   and list the distinct non-zero values seen — repeated values point
   at one bad build, scattered values at uninitialised memory.
6. Where the receive path is configured to reject on this field, report
   that configuration itself as a finding, because refusing delivery
   over reserved contents is the receiving-side obligation inverted.

## Pitfalls

- Enforcing the sender's rule inside the receiver. It looks like strict
  compliance and is the opposite: the receiver has its own obligation,
  and it is to ignore the field.
- Using the field as spare space for a local extension. It is
  indistinguishable from a bad sender to everyone else on the link, and
  it is the first thing a future revision of the protocol will collide
  with.
- Recording a non-zero field and taking no further action. It is not a
  reason to discard, but it does identify a non-conformant sender, and
  an observation nobody counts is an observation nobody fixes.
- Assuming a non-zero value means data. Uninitialised buffer contents
  land in this field routinely, which is why the distinct values seen
  across a run are worth reporting — one repeated value is a build, a
  scatter is memory.
- Testing the field before knowing how the node was addressed. The
  reserved octet is located by counting past the address octets and the
  protocol identifier, and a path-addressed transfer arrives with its
  address octets already consumed.

## Behavior contract (gate 3)

The zero-fill encoder, octet validation, role-dependent verdicts, the
receiver's unconditional delivery and the sender-conformance audit are
exercised by the gate 3 contract test:
scripts/test_e5053_reserved_field_zero.py against
scripts/e5053_reserved_field_zero_logic.py (stdlib unittest, offline).
Run:
python3 scripts/test_e5053_reserved_field_zero.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 →