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 Time Distribution

ASecurity

Compute the accuracy a distributed time reference actually delivers to each of its users under ECSS-E-ST-50C clause 5.7.2.8, which asks that time reach the users that need it inside a stated accuracy. Build the budget at the consumer, not at the master: uncompensated transport delay, half the path asymmetry, half the timestamp step and the random jitter of every hop, systematic terms added and random terms root-sum-squared, plus the holdover a consumer accumulates on its own oscillator betwee...

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

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-time-distribution --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Time Distribution?

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

Security grade badge for E50 Time Distribution
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-time-distribution/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-time-distribution)

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

Download with Pro
Files
SKILL.md
---
name: e50-time-distribution
description: "Compute the accuracy a distributed time reference actually delivers to each of its users under ECSS-E-ST-50C clause 5.7.2.8, which asks that time reach the users that need it inside a stated accuracy. Build the budget at the consumer, not at the master: uncompensated transport delay, half the path asymmetry, half the timestamp step and the random jitter of every hop, systematic terms added and random terms root-sum-squared, plus the holdover a consumer accumulates on its own oscillator between distribution messages. Use when sizing a distribution period, grading a chain against a required accuracy, or finding which consumer sets the limit. Trigger: ecss, e-st-50c-clause-5-7-2-8, time-distribution-accuracy-budget, time-reference-distribution-chain, distribution-holdover-drift, timestamp-quantization-error, path-asymmetry-time-error, distribution-period-sizing."
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.8
    items: [a]
    relation: verifies
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50c-clause-5-7-2-8, e50-time-distribution, time-distribution-accuracy-budget, time-reference-distribution-chain, distribution-holdover-drift, timestamp-quantization-error, path-asymmetry-time-error, distribution-period-sizing]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — Time Distribution (space-systems/ecss/e50-time-distribution)

Use when a time reference has to be distributed to the on-board or proximity
users that need it, per ECSS-E-ST-50C clause 5.7.2.8 — whether what arrives at
each user is still inside the accuracy that user was promised.

## Domain quick reference

- The obligation is met at the consumer, not at the source. A master
  clock holding nanoseconds proves nothing about a user three hops down
  a distribution tree; the number that matters is what is left after the
  chain and the holdover have spent their share.
- Hop contributions split into two kinds and do not combine the same
  way. Uncompensated transport delay, path asymmetry and timestamp
  quantization are biases that repeat every message, so they add;
  jitter is independent per message, so hops combine root-sum-square.
  Adding jitter linearly overstates a long chain badly enough to buy
  hardware nobody needed.
- Asymmetry and quantization each enter at half. A two-way exchange
  cancels the common part of the path and leaves half the difference;
  a timestamp resolved to one step is wrong by at most half a step.
- Compensation changes which number a hop contributes, not whether it
  contributes. A hop declared compensated still carries the residual the
  compensation left behind, and a residual nobody measured is an unknown,
  not a zero.
- Holdover is usually the dominant term and it is the one under design
  control. Between two distribution messages the consumer runs free at
  its own drift rate, so the distribution period and the oscillator
  together decide most of the budget — which makes the period the first
  knob to reach for, and the inverse calculation worth reporting.
- A chain that spends the whole allowance on its own cannot be rescued
  by distributing more often, and saying so is more useful than a period
  that rounds to something unbuildable.

## Workflow

1. Describe the chain hop by hop: transport delay, whether it is
   compensated and with what residual, path asymmetry, timestamp step
   and jitter. Reject an unnamed hop or an unknown field rather than
   silently defaulting it.
2. Reduce each hop to a systematic and a random contribution, taking
   the residual for a compensated hop and the full delay for one that
   is not.
3. Sum the systematic contributions; combine the random ones
   root-sum-square; keep the per-hop breakdown so the dominant hop is
   visible rather than inferred.
4. Add the holdover the consumer accumulates over one distribution
   period at its drift rate. A consumer with no declared drift holds
   over without error, which is a statement about the data, not a
   guarantee.
5. Compare the total against that consumer's required accuracy with a
   relative tolerance, so a budget landing exactly on the allowance
   passes on every build host.
6. Invert the same model for the remedy: the longest distribution
   period that still fits. Report zero where the chain alone exhausts
   the allowance, and report that the period is unconstrained where
   there is no drift to accumulate.
7. Grade every consumer, name the worst, and check the stated period
   remedy back through the model before offering it. Confirm in the same
   pass that the graded set holds every node the network has to serve
   with time, and that all of them trace back to the one reference: a
   node nobody distributes to, or a second source of time alongside the
   first, leaves the network without a single reference however
   comfortably each budget closes.

## Obligations

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

## Pitfalls

- Budgeting at the master clock. Reference stability is an input to the
  budget, not the answer to it, and a distribution tree can lose orders
  of magnitude between the source and the user.
- Adding jitter terms linearly across hops. Independent random terms
  combine in quadrature; summing them makes a compliant chain look
  non-compliant and sends the design after a problem it does not have.
- Taking a compensated hop as contributing nothing. Compensation leaves
  a residual, and an unmeasured residual is a hole in the budget rather
  than a zero in it.
- Charging the full asymmetry or the full timestamp step. Both enter at
  half, and doubling them is the quiet way a correct design fails its
  own review.
- Deciding compliance with a bare inequality on the computed total. Two
  arithmetically identical budgets can straddle the allowance on
  different machines, and the verdict then depends on the build host.
- Answering an exceeded budget with a shorter period without checking
  whether the chain already spends the allowance. Distributing more
  often cannot buy back a bias that is present in every message.

## Behavior contract (gate 3)

Hop and consumer validation, the systematic and root-sum-square split,
the compensated-hop residual, the holdover term, the exact-allowance
boundary, the longest-period inverse and its zero and unconstrained
cases, and the worst-consumer selection are exercised by the gate 3
contract test:
scripts/test_e50_time_distribution.py against
scripts/e50_time_distribution_logic.py (stdlib unittest, offline).
Run:
python3 scripts/test_e50_time_distribution.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 →