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

E10 Req Maintenance

ASecurity

Use when maintaining ECSS-E-ST-10C requirements under configuration control (clause 5.2.3.8): determine whether a requirement's lifecycle state transition (draft, proposed, baselined, obsolete) is allowed, verify that a change to a baselined requirement carries an approved change request before it is applied, assess the change's impact on derived requirements found via the parent-child traceability link and on verification items linked to the requirement, and confirm the impact assessment and...

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

Works with

claude codeterminal

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill e10-req-maintenance --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E10 Req Maintenance?

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

Security grade badge for E10 Req Maintenance
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e10-req-maintenance/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e10-req-maintenance)

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

Download with Pro
Files
SKILL.md
---
name: e10-req-maintenance
description: "Use when maintaining ECSS-E-ST-10C requirements under configuration control (clause 5.2.3.8): determine whether a requirement's lifecycle state transition (draft, proposed, baselined, obsolete) is allowed, verify that a change to a baselined requirement carries an approved change request before it is applied, assess the change's impact on derived requirements found via the parent-child traceability link and on verification items linked to the requirement, and confirm the impact assessment and a maintenance record are captured before the change is closed. Trigger: ecss, e-st-10c, requirement maintenance, configuration control, change impact assessment, derived requirements, verification impact, baseline change request."
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-10c, requirement-maintenance, configuration-control, change-impact-assessment, traceability, verification-impact]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS System Engineering — Requirement Maintenance (space-systems/ecss/e10-req-maintenance)

Use when the task is maintaining requirements under configuration
control per ECSS-E-ST-10C clause 5.2.3.8 -- checking that a
requirement's lifecycle state transition is allowed, that a change to
a baselined requirement is backed by an approved change request, and
that the change's impact on derived requirements and linked
verification items has been assessed and recorded before the change
is closed.

## Domain quick reference

- A requirement moves through four lifecycle states: draft (freely
  editable), proposed (under review), baselined (under configuration
  control), and obsolete (terminal, superseded or withdrawn). Only
  specific transitions are allowed: draft -> proposed or obsolete;
  proposed -> draft (rejected back to authoring), baselined, or
  obsolete; baselined -> obsolete; obsolete has no outgoing
  transition. Any other pair is a disallowed transition.
- Configuration control applies once a requirement is baselined: a
  baselined requirement's content may only be modified alongside an
  approved change request. A draft or proposed requirement is not yet
  under configuration control and can be edited directly.
- A requirement change has two possible ripple effects that must be
  traced before the change is closed: derived requirements (children
  linked to the changed requirement through the parent-child
  traceability record) that may need re-derivation or re-review, and
  verification items (test, analysis, review, or inspection activities
  linked to the requirement) that may need re-verification. Either
  list can be empty for a given requirement, but a nonempty list means
  the impact is real and must be assessed, not just discovered.
- A closed change on a baselined requirement leaves two records: the
  impact assessment (what was checked, evaluated against the
  traceability and verification links) and the maintenance record
  (the change history entry itself). Both are separate from the
  approved-change-request gate that authorizes touching the baseline
  in the first place.

## Workflow

1. Confirm the requirement's current lifecycle state is a recognized
   one (draft, proposed, baselined, obsolete) and that the intended
   target state is reachable by an allowed transition; reject a
   transition that is not on the allowed list.
2. If the requirement is being modified and its current state is
   baselined, confirm an approved change request is on record before
   proceeding; flag the change if the requirement is baselined and
   under modification without one.
3. Look up the requirement's derived requirements via the parent-child
   traceability link and its linked verification items; this is the
   change impact assessment for the requirement.
4. If either the derived-requirement list or the verification-item
   list is nonempty, confirm the change record documents that the
   impact was assessed; flag a missing impact assessment when there is
   real impact but no assessment recorded.
5. If the requirement is baselined and being modified, confirm a
   maintenance record (change history entry) exists; flag its absence.
6. Aggregate the configuration-control, impact-assessment, and
   maintenance-record findings; the change is not maintenance-compliant
   until all three lists are empty.

## Pitfalls

- Allowing an edit to a baselined requirement because "it's a small
  change" without an approved change request -- clause 5.2.3.8 gates
  on configuration-control status, not change size; baselined always
  requires the change request.
- Treating an empty derived-requirements list as proof no impact
  assessment is needed on the verification side, or vice versa --
  the two impact channels are independent; a requirement can have
  linked verification items with no derived children, or the reverse.
- Recording the change history entry and calling the change complete
  without a documented impact assessment -- the maintenance record and
  the impact assessment are separate artifacts; having one does not
  imply the other was done.
- Skipping the lifecycle transition check for a requirement moving
  straight from draft to baselined, or from obsolete back to any other
  state -- both are disallowed transitions under this leaf's model and
  must be rejected before any configuration-control or impact logic
  runs.

## Behavior contract (gate 3)

The lifecycle-transition, configuration-control, change-impact-
assessment, and maintenance-record logic is exercised by the gate 3
contract test: scripts/test_e10_req_maintenance.py against
scripts/e10_req_maintenance_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e10_req_maintenance.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 →