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

E2040 Device Architecture Definition Task

ASecurity

Define and document the internal architecture and partitioning chosen for a device, the task ECSS-E-ST-20-40C clause 5.3.2 sets: place every block in a declared partition, refuse a partition that mixes assurance levels unless mixed criticality is declared for it, require both interface endpoints to name real and different blocks, allocate every requirement onto a block that exists, and roll resources up against the device budget. Use when a device architecture is first written down, or when a...

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 e2040-device-architecture-definition-task --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E2040 Device Architecture Definition Task?

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

Security grade badge for E2040 Device Architecture Definition Task
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e2040-device-architecture-definition-task/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e2040-device-architecture-definition-task)

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

Download with Pro
Files
SKILL.md
---
name: e2040-device-architecture-definition-task
description: "Define and document the internal architecture and partitioning chosen for a device, the task ECSS-E-ST-20-40C clause 5.3.2 sets: place every block in a declared partition, refuse a partition that mixes assurance levels unless mixed criticality is declared for it, require both interface endpoints to name real and different blocks, allocate every requirement onto a block that exists, and roll resources up against the device budget. Use when a device architecture is first written down, or when a partitioning argument is reviewed before detailed design. Trigger: ecss, e-st-20-electrical-scope, device-architecture-definition-task, device-block-partitioning, partition-assurance-level-mixing, device-interface-endpoint-integrity, device-resource-rollup-budget."
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-20-electrical-scope, e2040-device-architecture-definition-task, device-architecture-definition-task, device-block-partitioning, partition-assurance-level-mixing, device-interface-endpoint-integrity, device-resource-rollup-budget]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Device Requirements — Architecture Definition Task (space-systems/ecss/e2040-device-architecture-definition-task)

Use when the task is the design duty of ECSS-E-ST-20-40C clause 5.3.2 --
deciding the device's internal architecture and writing it down well
enough that detailed design, verification and the budgets can all be
worked against it.

## Domain quick reference

- An architecture is five things at once: blocks, the partitions those
  blocks sit in, the interfaces between them, the requirements allocated
  onto them, and the resources they consume. Every check worth running
  crosses two of the five; none of them fires inside one alone.
- A block in no declared partition carries no separation argument. It
  looks complete on the diagram and has nothing behind it at
  qualification.
- A partition carrying two assurance levels is a defect unless mixed
  criticality was declared for that partition deliberately. Mixing by
  accident survives every later review because each block is individually
  reasonable.
- An interface names two blocks that exist and two blocks that differ. A
  dangling endpoint reads as a connection and is nothing; a self-loop is
  an input defect rather than a finding.
- An interface with no protocol cannot be implemented from the
  architecture, so the next team invents one and the two ends disagree.
- A requirement allocated to a block that does not exist is a broken
  trace. A block nothing was allocated to is unjustified hardware or a
  missing allocation, and both are worth surfacing at this point rather
  than at the architecture review.
- Resource rollups are sums of floats. A rollup landing exactly on its
  budget is within budget, so the comparison absorbs representation error
  instead of failing on the last bit of the sum.

## Workflow

1. Resolve blocks by identifier, refusing a repeat or an unknown key, and
   zero-fill any resource a block does not declare.
2. Resolve the declared partitions and report every block sitting in none
   of them, or naming one that was never declared.
3. Group blocks by partition and report a partition carrying more than
   one assurance level without mixed criticality declared for it.
4. Resolve the interfaces, refusing a self-loop or an endpoint list that
   is not exactly two, and report an endpoint naming no declared block
   and an interface naming no protocol.
5. Report any block connected to nothing while the device has more than
   one block.
6. Resolve the allocations, report one pointing at an unknown block, and
   report every block carrying no allocated requirement.
7. Roll resources up across the device and compare each against its
   budget, absorbing representation error at the boundary.

## Pitfalls

- Checking the block list on its own. Blocks are always individually
  sensible; the defects live in the partition they were placed in and the
  interface that names them.
- Letting two assurance levels share a partition because both blocks
  passed their own review. The separation argument is a property of the
  partition, and nothing below it can detect the mixing.
- Accepting an interface endpoint without resolving it against the block
  list. The diagram renders, the trace is broken, and the mismatch
  surfaces when two teams integrate.
- Dropping blocks with no allocated requirement. They are the cheapest
  thing to remove now and the most expensive to justify at qualification.
- Comparing a float rollup against its budget with a strict inequality.
  A 1.5 and a 2.5 summing against a 4.0 budget can land a unit in the
  last place over it and red an architecture that is exactly on budget.

## Behavior contract (gate 3)

The block and partition resolution, assurance-level mixing detection,
interface endpoint integrity, protocol presence, allocation resolution,
unjustified-block detection and the resource rollup against budget are
exercised by the gate 3 contract test:
scripts/test_e2040_device_architecture_definition_task.py against
scripts/e2040_device_architecture_definition_task_logic.py (stdlib
unittest, offline). Run:
python3 scripts/test_e2040_device_architecture_definition_task.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 →