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 Acknowledgement

ASecurity

Audit the acknowledgement trail of an uplinked telecommand batch against ECSS-E-ST-50C clause 5.4.8: validate the verification-stage ladder each command subscribed to, set a per-stage deadline from the uplink epoch plus the round-trip light time plus that stage's timeout, match the returned reports to their command and stage while refusing strays and duplicates, and decide whether each command is covered, missing a stage, late, rejected or reported out of order. Use when a pass is reconciled,...

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

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-acknowledgement --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Telecommand Acknowledgement?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e50-telecommand-acknowledgement
description: "Audit the acknowledgement trail of an uplinked telecommand batch against ECSS-E-ST-50C clause 5.4.8: validate the verification-stage ladder each command subscribed to, set a per-stage deadline from the uplink epoch plus the round-trip light time plus that stage's timeout, match the returned reports to their command and stage while refusing strays and duplicates, and decide whether each command is covered, missing a stage, late, rejected or reported out of order. Use when a pass is reconciled, a verification-report timeout is set, or an unacknowledged command has to be separated from a failed one. Trigger: ecss, e-st-50c-clause-5-4-8, telecommand-acknowledgement-coverage, telecommand-verification-stage-ladder, round-trip-light-time-deadline, telecommand-acceptance-report, telecommand-completion-report."
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-communications-scope, e50-telecommand-acknowledgement, e-st-50c-clause-5-4-8, telecommand-acknowledgement-coverage, telecommand-verification-stage-ladder, round-trip-light-time-deadline, telecommand-acceptance-report, telecommand-completion-report]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications -- Telecommand Acknowledgement (space-systems/ecss/e50-telecommand-acknowledgement)

Use when the task is clause 5.4.8 of ECSS-E-ST-50C: establishing that
the ground learned the fate of every telecommand it sent. The question
is not whether the spacecraft did the right thing, it is whether the
ground can tell -- and an unacknowledged command and a rejected command
are two different problems with two different recoveries.

## Domain quick reference

- Silence is not success. A command with no report back is a command
  whose fate is unknown, and the recovery for that is to re-establish
  the report, not to resend the command: resending on an unknown fate is
  how a single manoeuvre becomes two.
- The stages answer different questions. Acceptance says the on-board
  software took the command; start says execution began; progress says
  it is still running; completion says it finished. A completion report
  with no acceptance report leaves a hole the ground cannot reason
  about, so acceptance is the base of the ladder and the rest sit above
  it.
- A progress report the ground cannot time against a start report says
  nothing useful, which is why progress is only meaningful once start is
  subscribed, while start itself stays optional for a command that
  completes promptly.
- The deadline is not the timeout. It is the uplink epoch plus the
  round-trip light time plus the stage's own timeout. Near Earth the
  light time is noise and the timeout dominates; at Mars distance the
  light time is the whole budget, and a timeout set on near-Earth habit
  declares every report late.
- Ordering is evidence in its own right. A completion timestamp earlier
  than the acceptance timestamp means the trail has been reassembled
  wrongly somewhere -- store-and-forward, a mixed ground-station buffer,
  a clock -- and the batch verdict should not be read as clean until
  that is understood.

## Workflow

1. Validate each command's subscribed stages: canonical names, no
   duplicates, acceptance present as the base, and progress only above a
   subscribed start.
2. Confirm a timeout exists for every subscribed stage; a subscription
   without a timeout has no deadline and cannot be judged late.
3. Compute each stage deadline as epoch plus round-trip light time plus
   the stage timeout.
4. Match the returned reports to their command and stage, ignoring
   reports for other commands, refusing a report for a stage that was
   never subscribed, and refusing a second report for a stage already
   seen.
5. Decide each stage: a failure report is a failure, a report past its
   deadline is late (with an exact landing on the deadline treated as on
   time), a report earlier than its predecessor is out of order, and an
   absent report is missing.
6. Roll the stage verdicts into a command verdict, keeping a failure
   visible above a mere gap, then into batch coverage and a finding list
   that names the command and the offending stages.

## Pitfalls

- Reading a missing report as a pass because nothing bad came back. The
  absence of a rejection is not an acceptance; the command's fate is
  simply unknown.
- Setting the deadline from the timeout alone. Two-way light time is
  part of every deep-space deadline, and omitting it converts a healthy
  link into a batch of late reports.
- Collapsing rejected and unacknowledged into one failure count. One
  means the spacecraft refused a command it received; the other means
  nobody knows. They are reported separately here for that reason.
- Accepting a report for a stage the command never subscribed to. That
  is a mismatch between the uplinked acknowledgement flags and the
  returned trail, and swallowing it hides a dictionary or a configuration
  error.
- Calling a report late when it lands exactly on its deadline. That is a
  representation question, handled by the tolerance inside the
  comparison; the timeout stays as specified.

## Behavior contract (gate 3)

The stage ladder validation, deadline construction, report matching,
per-stage verdicts, ordering check and batch coverage are exercised by
the gate 3 contract test:
scripts/test_e50_telecommand_acknowledgement.py against
scripts/e50_telecommand_acknowledgement_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_e50_telecommand_acknowledgement.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 →