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 Validation Plan Consolidation

ASecurity

Prepare the consolidated device validation plan ECSS-E-ST-20-40C 5.6.4 asks for at the end of layout: map every user need onto activities that demonstrate it, refuse an environment unable to demonstrate that kind of need such as endurance attempted on a bench, confirm the rigs and models each activity depends on will exist, and order the campaign so nothing runs before its prerequisite and no dependency loop survives. Use when the validation plan has to be finalised before the finished device...

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

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-validation-plan-consolidation --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E2040 Device Validation Plan Consolidation?

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

Security grade badge for E2040 Device Validation Plan Consolidation
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e2040-device-validation-plan-consolidation/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e2040-device-validation-plan-consolidation)

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

Download with Pro
Files
SKILL.md
---
name: e2040-device-validation-plan-consolidation
description: "Prepare the consolidated device validation plan ECSS-E-ST-20-40C 5.6.4 asks for at the end of layout: map every user need onto activities that demonstrate it, refuse an environment unable to demonstrate that kind of need such as endurance attempted on a bench, confirm the rigs and models each activity depends on will exist, and order the campaign so nothing runs before its prerequisite and no dependency loop survives. Use when the validation plan has to be finalised before the finished device is proven. Trigger: ecss, e-st-20-electrical-scope, device-validation-plan-consolidation, validation-environment-suitability, validation-need-coverage, validation-resource-availability, validation-schedule-dependency-loop, need-to-activity-traceability."
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-validation-plan-consolidation, device-validation-plan-consolidation, validation-environment-suitability, validation-need-coverage, validation-resource-availability, validation-schedule-dependency-loop, need-to-activity-traceability]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Device Layout — Validation Plan Consolidation (space-systems/ecss/e2040-device-validation-plan-consolidation)

Use when the task is the consolidation duty of ECSS-E-ST-20-40C 5.6.4 --
fixing, before the finished device exists, how each thing the device was
procured to do will actually be demonstrated on hardware.

## Domain quick reference

- Validation asks a different question from verification. Verification
  asks whether the device was built to the specification; validation asks
  whether the finished device does the job it was procured for, so the
  plan is organised around needs rather than around requirements.
- A need with no activity is the gap the plan exists to close, and it is
  invisible while the activity list is read on its own, because every
  activity in that list is perfectly legitimate.
- The environment decides what an activity can demonstrate. Endurance
  needs a system or flight-representative setup; a performance envelope
  needs at least a board; an operational procedure needs a system. Only a
  functional use case can be demonstrated anywhere.
- An activity in an environment that cannot demonstrate its need adds
  nothing to coverage however carefully it is written, so it is excluded
  from the numerator rather than counted and flagged.
- Resources are part of the plan. An activity depending on a rig that
  will not be built is a plan on paper and reads as complete.
- Order has to be executable. An activity sharing a slot with its
  prerequisite cannot run after it, and a dependency loop is the one
  defect that survives every per-activity check -- each activity in the
  loop looks perfectly ordered against its own predecessor.
- Activities merely stuck behind a loop are not in it. The finding names
  the ones that have to be re-ordered, not everything downstream.

## Workflow

1. Resolve the needs: unique identifiers and a recognised need kind.
2. Resolve the activities: unique identifiers, the need each
   demonstrates, a folded environment, the resources each consumes, the
   prerequisites and the schedule slot. Refuse a self-dependency, a
   repeated dependency and a negative slot.
3. Report activities pointing at a need the plan does not carry.
4. Test each activity's environment against its need kind and report the
   ones that cannot demonstrate it, naming the environments that could.
5. Report every resource an activity consumes that the plan does not list
   as available.
6. Report prerequisites outside the plan, and activities scheduled at or
   before something they depend on.
7. Detect dependency loops and name only the activities inside them.
8. Report needs left with no demonstrable activity, then compare
   consolidation coverage with the goal, absorbing an exact landing.

## Pitfalls

- Counting an activity as coverage because it names the need. If the
  environment cannot demonstrate that kind of need, the activity will run
  and prove nothing.
- Demonstrating endurance on a bench. The activity reads sensibly line by
  line and the campaign discovers the gap when the hardware is built.
- Reading the activity list instead of the need list. Every activity can
  be sound while a whole need has nobody assigned to it.
- Checking order only pairwise. Two activities can each be scheduled
  correctly against the other and still form a loop that never starts.
- Listing everything downstream of a loop as looped. The report then
  buries the two activities that actually have to be re-ordered.
- Failing a plan whose coverage lands exactly on its goal. A three-in-four
  division can sit a unit in the last place below the figure it is
  compared with.

## Behavior contract (gate 3)

The need-kind and environment folding, environment-suitability rule,
resource availability check, prerequisite ordering, dependency-loop
detection scoped to loop members and the coverage comparison with exact
goal landings are exercised by the gate 3 contract test:
scripts/test_e2040_device_validation_plan_consolidation.py against
scripts/e2040_device_validation_plan_consolidation_logic.py (stdlib
unittest, offline). Run:
python3 scripts/test_e2040_device_validation_plan_consolidation.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 →