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

E50 Telecommand Delivery Confirmation

ASecurity

Verify that an on-board network confirms telecommand delivery to the end destination a command named, which is what ECSS-E-ST-50C clause 5.7.2.7 asks of it, and separately that the confirmation arrived inside the transit-and-return bound the project set rather than one the clause fixes, by matching a real dispatch log against a real confirmation log rather than counting acknowledgements. Derive a per-command deadline from dispatch plus the transit and return bounds, keep the earliest confirma...

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 e50-telecommand-delivery-confirmation --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Telecommand Delivery Confirmation?

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

Security grade badge for E50 Telecommand Delivery Confirmation
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-telecommand-delivery-confirmation/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-telecommand-delivery-confirmation)

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

Download with Pro
Files
SKILL.md
---
name: e50-telecommand-delivery-confirmation
description: "Verify that an on-board network confirms telecommand delivery to the end destination a command named, which is what ECSS-E-ST-50C clause 5.7.2.7 asks of it, and separately that the confirmation arrived inside the transit-and-return bound the project set rather than one the clause fixes, by matching a real dispatch log against a real confirmation log rather than counting acknowledgements. Derive a per-command deadline from dispatch plus the transit and return bounds, keep the earliest confirmation, and separate one that never came from one that came after the sender had already had to act. Report strays, duplicates, a confirmation dated before its own dispatch, and the bound that would have held. Use when reviewing on-board telecommand delivery. Trigger: ecss, e-st-50-communications, on-board-telecommand-delivery-confirmation, telecommand-confirmation-deadline, unconfirmed-telecommand-delivery, stray-delivery-confirmation, duplicate-delivery-confirmation."
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)"
clauses:
  - standard: ECSS-E-ST-50C Rev.2
    clause: 5.7.2.7
    items: [a]
    relation: verifies
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50-communications, e50-telecommand-delivery-confirmation, on-board-telecommand-delivery-confirmation, telecommand-confirmation-deadline, unconfirmed-telecommand-delivery, stray-delivery-confirmation, duplicate-delivery-confirmation]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — On-Board Telecommand Delivery Confirmation (space-systems/ecss/e50-telecommand-delivery-confirmation)

Use when a telecommand dispatch log is being reviewed against what came back
from the on-board network: whether the sender was told that the end
destination had the command, which ECSS-E-ST-50C clause 5.7.2.7 requires the
network to be able to tell it, and whether it was told inside the bound this
project set for itself.

## Domain quick reference

- Confirmation is a service with a deadline, not a count. Every
  confirmation in the log can be genuine while the command that
  mattered was never confirmed at all.
- The deadline for a command is its own dispatch time plus the transit
  bound across the network plus the bound on the confirmation coming
  back. It is per command, because dispatch times differ.
- A confirmation after the deadline is evidence of delivery and not of
  the service. By then the sender has already had to decide what to do
  without it, so late and confirmed are different verdicts.
- Three things go wrong in the matching itself and each has its own
  cause. A confirmation for a command nobody dispatched is a stray,
  and it usually means two senders share an identifier space. A second
  confirmation for one command is a duplicate. A confirmation dated
  before its own dispatch is impossible and is refused rather than
  averaged into a latency figure.
- A clean service and a clean log are separate claims. Every command
  can be confirmed on time in a log that also carries a stray, and the
  stray is the finding that points at a real defect elsewhere.
- The worst latency actually observed is worth printing. It is the
  bound the design would have needed, stated as a number rather than
  as a request for more margin.

## Workflow

1. State the dispatch log: command identifier, dispatch time and
   destination. Reject a duplicate identifier — two commands under one
   name cannot be told apart in the confirmation log either.
2. State the confirmation log, and the two bounds: transit across the
   network, and the confirmation coming back.
3. Match each confirmation to its command and to the destination that
   command named: one raised somewhere short of that destination is not
   the confirmation this service owes, whatever it proves about the hop
   it came from. Keep the earliest and name the later ones as duplicates
   rather than dropping them silently.
4. Refuse a confirmation dated before its own dispatch. It is a clock
   or an identifier fault, and averaging it in hides both.
5. Derive each command's deadline from its own dispatch time plus the
   two bounds.
6. Compare with a relative tolerance. A confirmation landing exactly on
   its deadline must come out confirmed on every platform rather than
   on the host that rounded down.
7. Report the three command verdicts, the strays and duplicates
   separately from them, the confirmation ratio, and the worst latency
   actually observed. Keep two claims apart when wording them: whether
   the network told the sender that each command reached the end
   destination it was addressed to, which is what the clause asks of
   the service, and whether it did so inside the bound stated in step 2,
   which the project chose and the clause does not fix. Say too that a
   delivery confirmed is not an execution confirmed — what the
   application at the destination then did with the command is a
   separate account this service does not settle.

## Obligations

| Item | Step |
|---|---|
| ECSS-E-ST-50C Rev.2 5.7.2.7a | 7 |

## Pitfalls

- Counting confirmations instead of matching them. The totals agree
  while one command is unconfirmed and one confirmation is a stray.
- Using one deadline for the batch. Commands dispatched minutes apart
  do not share a deadline, and a single cut-off passes the early ones
  and fails the late ones for the wrong reason.
- Folding late into confirmed. The delivery happened; the service did
  not, and the operator acted without it either way.
- Keeping the last confirmation rather than the first. The service is
  judged on when the sender could first have known.
- Discarding strays as noise. A confirmation for a command nobody sent
  is usually an identifier collision between two senders, which is a
  defect that will also mis-route a real one.
- Deciding the deadline with a bare inequality. Two arithmetically
  identical logs can straddle the bound on different machines, so the
  verdict depends on the build host.

## Behavior contract (gate 3)

Identifier, epoch and bound validation, the per-command deadline,
earliest-wins matching with strays and duplicates named, refusal of a
confirmation dated before its dispatch, the three-way command verdict
with a tolerance at the deadline, the separation of a clean service
from a clean log, the confirmation ratio and the worst observed
latency are exercised by the gate 3 contract test:
scripts/test_e50_telecommand_delivery_confirmation.py against
scripts/e50_telecommand_delivery_confirmation_logic.py (stdlib
unittest, offline).
Run:
python3 scripts/test_e50_telecommand_delivery_confirmation.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 →