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 Simultaneous Support Of Differing Source Rates

ASecurity

Allocate downlink capacity across telemetry sources that generate at different rates, as ECSS-E-ST-50C clause 5.5.6 requires: total the offered load with transport overhead against the link capacity, apportion virtual-channel slots by largest-remainder so every source keeps a share of at least one slot, derive each source's service interval and end-to-end latency from that apportionment, size the on-board buffer the interval implies, and flag any source squeezed onto a common rate instead of ...

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-simultaneous-support-of-differing-source-rates --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Simultaneous Support Of Differing Source Rates?

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

Security grade badge for E50 Simultaneous Support Of Differing Source Rates
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-simultaneous-support-of-differing-source-rates/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-simultaneous-support-of-differing-source-rates)

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

Download with Pro
Files
SKILL.md
---
name: e50-simultaneous-support-of-differing-source-rates
description: "Allocate downlink capacity across telemetry sources that generate at different rates, as ECSS-E-ST-50C clause 5.5.6 requires: total the offered load with transport overhead against the link capacity, apportion virtual-channel slots by largest-remainder so every source keeps a share of at least one slot, derive each source's service interval and end-to-end latency from that apportionment, size the on-board buffer the interval implies, and flag any source squeezed onto a common rate instead of its own. Use when planning a virtual-channel bandwidth split, sizing telemetry buffers, or diagnosing packet loss on a slow source. Trigger: ecss, e-st-50-communications-scope, simultaneous-differing-source-rates, virtual-channel-slot-apportionment, telemetry-service-interval, source-buffer-depth-sizing, downlink-capacity-overbooking, mixed-rate-telemetry-multiplexing."
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.5.6
    items: [a]
    relation: implements
  - standard: ECSS-E-ST-50C Rev.2
    clause: 5.5.6
    items: [b]
    relation: verifies
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50-communications-scope, e50-simultaneous-support-of-differing-source-rates, mixed-rate-telemetry-multiplexing, virtual-channel-slot-apportionment, telemetry-service-interval, source-buffer-depth-sizing, downlink-capacity-overbooking, largest-remainder-slot-allocation]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — Simultaneous Support of Differing Source Rates (space-systems/ecss/e50-simultaneous-support-of-differing-source-rates)

Use when the task is the mixed-rate provision of ECSS-E-ST-50C clause
5.5.6 — showing that the telemetry system carries, at the same time, data
from sources that generate at different rates, each served at its own
rate rather than at a rate imposed on all of them.

## Domain quick reference

- Two separate things have to hold. Capacity first: the offered load of
  all sources together, grossed up by frame and coding overhead, has to
  fit the downlink. Then simultaneity, which is what the clause is
  about: each source has to be served at its own generation rate, so
  meeting the total while starving the slow or the fast source is not
  compliance.
- Slot apportionment is integer arithmetic on a finite cycle. A cycle of
  frames is divided among the sources in proportion to demand, but the
  shares are whole slots, so the rounding rule matters: largest
  remainder keeps the total exact and is reproducible, while independent
  rounding per source silently over- or under-books the cycle.
- A source apportioned zero slots is the failure this clause names. It
  is not a small under-service; the source is not carried at all, and it
  is exactly what happens to a low-demand housekeeping source when
  slots are apportioned by demand alone with no floor.
- Service interval, not bandwidth, sets latency. A source with enough
  average bandwidth can still overflow if its slots are bunched: the
  interval between two of its slots, plus its own generation period,
  bounds the age of the oldest datum when it finally leaves.
- Buffer depth follows from the interval. Between two services the
  source keeps generating, so the buffer has to hold a whole service
  interval of production rounded up to whole packets; sizing it to the
  average rate alone loses the burst that the interval creates.
- Differing rates are the point, so the spread is worth reporting. When
  the fastest and slowest demand differ by orders of magnitude, a single
  common service rate cannot suit both, and the apportionment is what
  proves it did not have to.

## Workflow

1. Validate each source: a name, a positive packet size in bits, a
   positive generation period, a positive maximum latency, and the
   priority the mission assigned it. Zero or negative entries are input
   errors.
2. Compute each source's demand as packet bits divided by generation
   period, and the offered load as the sum grossed up by the transport
   overhead factor.
3. Compare the offered load with the downlink capacity, absorbing
   floating-point representation error at the boundary with a named
   tolerance rather than by inflating the capacity.
4. Apportion the cycle's slots in proportion to demand by largest
   remainder, so the slots sum exactly to the cycle and ties resolve on
   the source name.
5. Report any source apportioned zero slots: it is carried at no rate at
   all, which is the condition the clause forbids. Report with it any
   source the apportionment would serve at a rate other than the one it
   generates at — the rate belongs to the source, and the downlink is
   not entitled to set it.
6. Derive each source's service interval from its slot count and the
   cycle duration, add its own generation period, and compare with its
   declared maximum latency.
7. Close the apportionment against what the clause asks of it: every
   source carried in the same cycle at its own demand, and each one
   inside the maximum latency it declared. Where those two compete, take
   slots from the lowest-priority source that still meets its own limit,
   re-derive the intervals, and report a conflict no reordering resolves
   rather than accepting a miss.
8. Size the buffer per source as the packets generated in one service
   interval, rounded up, and report it with the demand spread between
   the fastest and slowest source.

## Obligations

| Item | Step |
|---|---|
| ECSS-E-ST-50C Rev.2 5.5.6a | 7 |
| ECSS-E-ST-50C Rev.2 5.5.6b | 5 |

## Pitfalls

- Checking the capacity total and stopping. The total fitting says
  nothing about whether the slow source ever gets a slot; both halves of
  the clause need their own check.
- Apportioning by independent rounding. Rounding each share to the
  nearest slot makes the slots sum to something other than the cycle,
  and the discrepancy shows up as a silently dropped or idle frame.
- Sizing buffers from average demand. Between services a source produces
  a whole service interval of data; a buffer sized on the average rate
  overflows on the first long gap between its slots.
- Reading bandwidth share as latency. A source can hold a large share of
  the capacity and still miss its latency if its slots are adjacent in
  the cycle rather than spread through it.
- Forcing a common packet rate to simplify the multiplexer. That is the
  design this clause exists to prevent: it either wastes capacity on the
  slow sources or truncates the fast ones.

## Behavior contract (gate 3)

The source validation, demand and offered-load computation, capacity
comparison, largest-remainder slot apportionment, service interval,
latency screening and buffer sizing are exercised by the gate 3 contract
test: scripts/test_e50_simultaneous_support_of_differing_source_rates.py
against
scripts/e50_simultaneous_support_of_differing_source_rates_logic.py
(stdlib unittest, offline). Run:
python3 scripts/test_e50_simultaneous_support_of_differing_source_rates.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 →