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 Data Transfer Services

ASecurity

Evaluate the data transfer services an on-board network offers against the traffic it has to carry, under ECSS-E-ST-50C clause 5.7.2.1, one normative item holding two questions that fail differently: a service exists for every pair of applications that has to exchange data units, and the service carrying a flow meets what that flow asked for, getting the unit to its destination or telling the sender it could not. Assign flows to services by best fit, aggregate the load each service ends up ca...

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

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-data-transfer-services --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E50 Data Transfer Services?

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

Security grade badge for E50 Data Transfer Services
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e50-data-transfer-services/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e50-data-transfer-services)

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

Download with Pro
Files
SKILL.md
---
name: e50-data-transfer-services
description: "Evaluate the data transfer services an on-board network offers against the traffic it has to carry, under ECSS-E-ST-50C clause 5.7.2.1, one normative item holding two questions that fail differently: a service exists for every pair of applications that has to exchange data units, and the service carrying a flow meets what that flow asked for, getting the unit to its destination or telling the sender it could not. Assign flows to services by best fit, aggregate the load each service ends up carrying, and separate a flow with no service at all from one whose service misses its rate, its latency bound or its delivery assurance. Report utilisation, spare capacity and the shortfall in each dimension. Use when sizing or reviewing on-board network transfer services. Trigger: ecss, e-st-50-communications, on-board-network-data-transfer-service, network-service-class-assignment, on-board-flow-latency-bound, network-service-utilisation, assured-delivery-service-gap."
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.1
    items: [a]
    relation: verifies
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-50-communications, e50-data-transfer-services, on-board-network-data-transfer-service, network-service-class-assignment, on-board-flow-latency-bound, network-service-utilisation, assured-delivery-service-gap]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Communications — On-Board Network Data Transfer Services (space-systems/ecss/e50-data-transfer-services)

Use when the data transfer services of an on-board network are being sized
against the flows they carry, per ECSS-E-ST-50C clause 5.7.2.1 — whether a
service exists for each flow, and whether it is the service that flow needed.

## Domain quick reference

- One normative item holding two questions, and they are not the same
  question. One asks that a data transfer service exists for the
  traffic the network is required to carry. The other asks that the
  service actually meets what the flow needs. A design can pass the
  first and fail the second in the same review.
- A flow names the two applications it runs between and states three
  things about the traffic they exchange: a sustained rate, an upper
  bound on how long a transfer may take, and whether delivery has to be
  assured. A service that satisfies two of the three has not served it.
- Adequacy is a property of the service under its whole load. Two flows
  that each fit a service can together exceed it, so the rate test runs
  against the aggregate after every flow has been placed, never against
  the flow on its own.
- Latency and assurance behave the other way round: they are properties
  of the service alone, so they decide which services a flow may sit on
  before capacity is looked at.
- Utilisation and spare capacity belong in the report even when nothing
  failed. A network at ninety-nine percent passes every check and has
  nowhere to put the next flow the programme adds.
- Assignment has to be deterministic or the report is not reviewable.
  Largest flow first, best fit by the spare capacity left behind, and
  the service name as the tie-break gives the same answer on every run.

## Workflow

1. Declare each service with a name, its sustained capacity, the
   latency bound it commits to, whether it assures delivery, and
   whether it returns word to the sender when a data unit could not
   be delivered at all.
2. Declare each flow with a name, the application it starts at, the
   application it ends at, its rate, its deadline and whether it needs
   assured delivery. The two application names are what the coverage
   question is asked about: every pair of applications on the network
   that has to exchange data units is owed a service able to carry the
   flow between them, so the pairs have to be on the table before
   anything is placed. Reject a duplicate name on either side: two
   entries under one name are two teams sizing the same traffic.
3. For each flow, take the services that meet its latency bound and its
   assurance need. A service meets that need when it either gets the
   data unit to its destination or tells the sender it could not. Do
   not filter on capacity here.
4. Place the flows largest first, choosing the eligible service that is
   left with the least spare capacity afterwards.
5. Sum the load each service carries once every flow is placed, then
   compare that aggregate against the service capacity.
6. Compare rates and latencies with a relative tolerance. A flow sized
   to exactly fill a service, or sitting exactly on its latency bound,
   must come out adequate rather than depend on the build machine.
7. Report the two questions separately — coverage and adequacy — with
   the named flows under each, the utilisation of every service and
   the rate shortfall where there is one. Walk the pairs declared at
   step 2 and name every one the service set leaves unable to exchange
   data units, and any service that neither gets a unit to its
   destination nor reports the failure back to the sender.

## Obligations

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

## Pitfalls

- Reporting one verdict for the clause. A flow with no service and a
  flow on the wrong service are different defects with different
  owners, and one pass-or-fail line hides which you have.
- Testing rate per flow instead of per service. Every flow fits, the
  service does not, and the check that looked at them one at a time
  says the design is fine.
- Treating assured delivery as a nice-to-have that a faster service can
  substitute for. Rate does not make a lossy path lossless, and a flow
  that asked for assurance is not served by bandwidth.
- Deciding capacity or latency with a bare inequality. Two
  arithmetically identical designs can straddle the bound on different
  platforms, so the verdict changes with the host.
- Leaving assignment implicit. If the report cannot say which service
  carries which flow, nobody can reproduce the utilisation figures it
  printed, and the next reviewer starts again.
- Quoting utilisation without spare capacity. A percentage reads as
  comfortable until someone works out what it leaves in bit/s.

## Behavior contract (gate 3)

Service and flow validation, eligibility by latency and assurance,
deterministic best-fit assignment, per-service aggregate load, the
three-way flow verdict with a tolerance at the capacity and latency
bounds, the separated coverage and adequacy questions, and the utilisation
and spare-capacity report are exercised by the gate 3 contract test:
scripts/test_e50_data_transfer_services.py against
scripts/e50_data_transfer_services_logic.py (stdlib unittest, offline).
Run:
python3 scripts/test_e50_data_transfer_services.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 →