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 Database Update After Detailed Design

ASecurity

Determine whether the device repository update ECSS-E-ST-20-40C 5.5.5 requires actually lets the following phase start: resolve every deposited item onto a recognised kind, state and dotted revision, keep only items released at or above the design baseline, and report the required inputs that are absent, the ones present but still draft or superseded, and the ones released against a design that no longer exists. Use when detailed design is depositing its outputs and the next phase has to buil...

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

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-database-update-after-detailed-design --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E2040 Database Update After Detailed Design?

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

Security grade badge for E2040 Database Update After Detailed Design
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e2040-database-update-after-detailed-design/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e2040-database-update-after-detailed-design)

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

Download with Pro
Files
SKILL.md
---
name: e2040-database-update-after-detailed-design
description: "Determine whether the device repository update ECSS-E-ST-20-40C 5.5.5 requires actually lets the following phase start: resolve every deposited item onto a recognised kind, state and dotted revision, keep only items released at or above the design baseline, and report the required inputs that are absent, the ones present but still draft or superseded, and the ones released against a design that no longer exists. Use when detailed design is depositing its outputs and the next phase has to build on them. Trigger: ecss, e-st-20-electrical-scope, database-update-after-detailed-design, device-repository-readiness, required-input-coverage, design-baseline-revision-check, superseded-deposit-detection, phase-handover-inputs."
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-database-update-after-detailed-design, database-update-after-detailed-design, device-repository-readiness, required-input-coverage, design-baseline-revision-check, superseded-deposit-detection, phase-handover-inputs]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Device Detailed Design — Database Update (space-systems/ecss/e2040-database-update-after-detailed-design)

Use when the task is the repository duty of ECSS-E-ST-20-40C 5.5.5 --
saying whether detailed design has deposited into the device repository
everything the following phase needs, in a state that phase can build
against.

## Domain quick reference

- The repository is the hand-over surface between phases. It is judged by
  whether the following phase can start, not by how many items were
  deposited, so the required-input set of that phase is the frame for
  every check.
- Different following phases need different inputs. Layout needs the
  netlist, the constraints, the timing model and the design report;
  manufacturing needs the layout database and the pattern set;
  validation needs the benches, the models and the validation plan.
- An item is usable only when it is released. A draft reads as coverage
  in a deposit listing and cannot be built against, and a superseded item
  reads the same way while pointing at a design that has moved.
- A released item older than the design baseline is the hardest defect to
  see, because the item is perfectly valid -- for a device that no longer
  exists. Revisions are compared as integer tuples, so 2.10 sorts above
  2.9 rather than below it as text would have it.
- An item exactly at the baseline revision carries the baseline and
  counts. Revisions are compared exactly, never as decimal numbers.
- Integrity belongs with the deposit. An item with no checksum cannot be
  shown later to be the artefact it claimed to be.
- Deposits beyond the following phase's need are legitimate. They are
  listed, not faulted, so the readiness figure stays about the inputs
  that gate the phase.

## Workflow

1. Resolve the following phase and its required input kinds.
2. Resolve every deposited item: unique identifier, recognised kind, a
   dotted revision that parses, a deposit state and a checksum. Refuse a
   repeated identifier, an unknown key or a malformed revision.
3. Keep as usable only the items released at or above the design
   baseline, grouping them by kind.
4. Report each required kind with no usable item, separating the kind
   that is absent from the kind that is present but unusable.
5. Report every draft, superseded and behind-baseline item individually,
   and every item deposited with no integrity record.
6. Compute readiness as the fraction of required kinds satisfied, and
   compare it with the goal, absorbing an exact landing.
7. List the kinds deposited beyond the need without faulting them.

## Pitfalls

- Counting a deposit as coverage because the kind appears in the listing.
  A draft netlist and a released netlist look identical in a count, and
  only one of them can be built against.
- Comparing revisions as text or as decimal numbers. 2.10 then sorts
  below 2.9, and a repository that is ahead of the baseline reports as
  behind it.
- Treating an item exactly at the baseline as stale. It carries the
  baseline, and rejecting it stalls a hand-over that is correct.
- Letting superseded items stay invisible. They satisfy a kind in a naive
  grouping and point the following phase at a design that has moved.
- Faulting deposits the following phase does not need. They are normal,
  and treating them as defects buries the required inputs that are
  actually missing.

## Behavior contract (gate 3)

The kind, state and phase folding, dotted-revision parsing and
comparison, baseline filtering, required-input coverage, integrity
reporting and readiness comparison are exercised by the gate 3 contract
test: scripts/test_e2040_database_update_after_detailed_design.py against
scripts/e2040_database_update_after_detailed_design_logic.py (stdlib
unittest, offline). Run:
python3 scripts/test_e2040_database_update_after_detailed_design.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 →