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 Additional Comments

ASecurity

Assess the additional-comments subclause of a SpaceWire service primitive against ECSS-E-ST-50-53 clause 5.2.2.5. Use when a protocol service definition carries per-primitive closing notes that must stay informative and must not become a second place requirements live: confirm every primitive states the subclause or declares it empty, detect normative wording that would create an unnumbered requirement, resolve every clause cross-reference against the declared index, measure how much of the n...

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 e5053-additional-comments --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E5053 Additional Comments?

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

Security grade badge for E5053 Additional Comments
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e5053-additional-comments/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e5053-additional-comments)

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

Download with Pro
Files
SKILL.md
---
name: e5053-additional-comments
description: "Assess the additional-comments subclause of a SpaceWire service primitive against ECSS-E-ST-50-53 clause 5.2.2.5. Use when a protocol service definition carries per-primitive closing notes that must stay informative and must not become a second place requirements live: confirm every primitive states the subclause or declares it empty, detect normative wording that would create an unnumbered requirement, resolve every clause cross-reference against the declared index, measure how much of the note merely repeats the function, semantics, generation or receipt subclauses, and hold the note inside its length budget. Trigger: ecss, e-st-50-53, service-primitive-additional-comments-subclause, informative-note-audit, normative-wording-in-a-note, clause-cross-reference-resolution, subclause-duplication-ratio, spacewire-service-definition."
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-spacewire-scope, e5053-additional-comments, service-primitive-additional-comments-subclause, informative-note-audit, normative-wording-in-a-note, clause-cross-reference-resolution, spacewire-service-definition]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS SpaceWire Service Primitive — Additional Comments Subclause (space-systems/ecss/e5053-additional-comments)

Use when the task is the additional-comments subclause of ECSS-E-ST-50-53
clause 5.2.2.5 — the closing note on a service primitive, the only part
of the primitive specification with no fixed content, and for that reason
the part that collects the material the other four subclauses should have
carried.

## Domain quick reference

- The subclause is informative. Anything normative written into it is a
  requirement with no number, which means no compliance matrix, no
  verification method and no traceability; it will be implemented by
  whoever happens to read it and missed by everyone else.
- Silence and emptiness are different. A primitive that states the
  subclause has nothing to add is complete; a primitive whose subclause
  is simply absent leaves the reader unable to tell whether it was
  considered. An explicit declaration of emptiness is the compliant form.
- Cross-references are the subclause's real work — pointing at the clause
  that governs a detail rather than restating it. A reference that does
  not resolve against the specification's clause index is worse than no
  reference, because it reads as authority that cannot be checked.
- Duplication is measured, not judged. The useful quantity is the share
  of the note's own informative tokens that already appear in the four
  preceding subclauses of the same primitive. Past a declared share the
  note is a copy that will drift, and the finding should quote the share.
- A note that runs past its budget is a section in the wrong place. The
  budget is a word count, applied after normalisation so that formatting
  does not decide whether a note passes.

## Workflow

1. Validate the record: a primitive name, an optional note, and the four
   preceding subclauses supplied as the comparison text. Non-text values
   anywhere are malformed input rather than findings.
2. Resolve the note: absent, null and whitespace-only are the same defect
   — the subclause was never written. A note matching one of the declared
   empty forms is compliant and skips the remaining content checks.
3. Scan the normalised note for normative wording and report every marker
   found, so the author can see which sentences have to move into a
   numbered requirement.
4. Extract clause references in dotted-number form and resolve each
   against the declared clause index; report the unresolved ones by
   number.
5. Tokenise the note and the four preceding subclauses, drop the closed
   stopword set, and compute the share of the note's tokens already
   present upstream. Compare that share with the declared ceiling using a
   named tolerance so a note sitting exactly on the ceiling is decided by
   the rule rather than by floating-point representation.
6. Count the normalised words against the budget, then roll every
   primitive up into a compliant count with the set-level findings.

## Pitfalls

- Reading an empty note as compliant because nothing is wrong with it. An
  absent subclause and a note that says there is nothing to add carry
  different information, and only the second one tells you the author
  considered the question.
- Searching for normative wording case sensitively, or only at the start
  of a sentence. The marker appears mid-sentence far more often than not.
- Resolving cross-references by pattern alone. A well-formed clause
  number that names no clause in the specification is exactly the failure
  the check exists to find, so the index has to be consulted.
- Computing the duplication share over raw tokens. Stopwords dominate any
  two pieces of English prose and will push every note over any ceiling
  worth setting.
- Asserting a strict comparison on the duplication share. It is a ratio
  of counts and a note built to sit on the ceiling lands there exactly;
  the comparison carries a tolerance and the ceiling itself is never
  moved to make a note pass.

## Behavior contract (gate 3)

The record validation, empty-form recognition, normative wording scan,
cross-reference extraction and resolution, duplication-share measurement
against the ceiling, word budget and set-level roll-up are exercised by
the gate 3 contract test:
scripts/test_e5053_additional_comments.py against
scripts/e5053_additional_comments_logic.py (stdlib unittest, offline).
Run:
python3 scripts/test_e5053_additional_comments.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 →