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

E1002 Vcd Closeout

ASecurity

Use when closing out the Verification Control Document (VCD) per ECSS-E-ST-10C §5.4.4.1: determine the compliance status of each verifiable requirement as compliant, not compliant, or waived; collect every linked verification record (test report, analysis report, inspection record, review-of-design output); assign compliant when all records are passed or not applicable, not compliant when any record is open or failed and no approved waiver is on file, and waived when a formal approved waiver ...

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

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 e1002-vcd-closeout --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1002 Vcd Closeout?

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

Security grade badge for E1002 Vcd Closeout
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e1002-vcd-closeout/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e1002-vcd-closeout)

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

Download with Pro
Files
SKILL.md
---
name: e1002-vcd-closeout
description: "Use when closing out the Verification Control Document (VCD) per ECSS-E-ST-10C §5.4.4.1: determine the compliance status of each verifiable requirement as compliant, not compliant, or waived; collect every linked verification record (test report, analysis report, inspection record, review-of-design output); assign compliant when all records are passed or not applicable, not compliant when any record is open or failed and no approved waiver is on file, and waived when a formal approved waiver document reference is recorded against the requirement. Flag rows with no verification evidence, open records blocking closeout, and failed records without an approved waiver reference. Produce a VCD closeout summary with counts by status and a list of all blocking findings. Trigger: ecss, e-st-10-system-scope, vcd-closeout, verification-control-document, compliance-status, waiver, verification-records, requirement-closeout."
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-10-system-scope, vcd-closeout, verification-control-document, compliance-status, waiver, verification-records, requirement-closeout]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Verification — VCD Closeout (space-systems/ecss/e1002-vcd-closeout)

Use when the task is closing out the Verification Control Document (VCD)
under ECSS-E-ST-10C §5.4.4.1 — assigning a compliance status (compliant,
not compliant, or waived) to each verifiable requirement by reconciling its
linked verification records, recording any accepted waiver references, and
producing a summary of blocking findings that prevent final VCD closure.

## Domain quick reference

- The VCD is a matrix where each row corresponds to one verifiable
  requirement and carries a set of verification records: test reports,
  analysis reports, inspection records, or review-of-design (RoD) outputs.
  Closing out the VCD means every row must carry a settled compliance status
  before the review gate can be passed.
- Three compliance statuses are defined under §5.4.4.1. Compliant: every
  verification record linked to the requirement is closed with a passed
  result, or is marked not applicable with a documented rationale. Not
  compliant: at least one record is still open (pending completion) or has
  a failed result and no accepted waiver is on file. Waived: a formal
  deviation or waiver document has been approved and its reference is
  recorded in the VCD row; the waiver replaces the compliance evidence for
  that requirement.
- A VCD row with no verification records at all is a not-compliant finding:
  the absence of evidence is not evidence of compliance.
- Open records are the most common blocker at a formal review; the closeout
  check must surface each open record ID so the responsible verifier can be
  contacted.

## Workflow

1. Collect every VCD row for the scope under review. Each row must carry a
   requirement identifier, a list of linked verification records (each with
   a unique record identifier and an outcome: passed, failed, open, or
   not_applicable), and optionally an approved waiver document reference.
2. Validate that every record outcome is one of the four recognized values.
   Reject and report any row containing an unrecognized outcome before
   proceeding — an unknown outcome string indicates a data-entry error in
   the VCD that must be corrected at the source.
3. For each row, determine the compliance status in this order:
   a. If an approved waiver reference is recorded (non-empty string), assign
      waived. The waiver has already been reviewed at the appropriate approval
      level; no further record reconciliation is needed for that row.
   b. If the row has no linked verification records, assign not_compliant and
      record a no_verification_records finding.
   c. Collect all records with outcome open (blocking closeout) and all
      records with outcome failed (failed without an approved waiver).
      If either list is non-empty, assign not_compliant and record findings
      for open records and for failed records separately.
   d. Otherwise all records are passed or not_applicable: assign compliant.
4. Aggregate the row results into a VCD closeout summary: count requirements
   by status (compliant, not_compliant, waived) and flatten all per-row
   findings into a single blocking-findings list.
5. The VCD is ready to close only when the not_compliant count is zero. Any
   remaining not_compliant rows must be resolved — either by completing open
   verification activities, approving waivers for accepted failures, or
   correcting data errors — before the gate can be passed.

## Pitfalls

- Treating a row with no verification records as compliant by default:
  an empty records list is itself a not-compliant finding because no
  verification evidence has been captured for the requirement.
- Collapsing open and failed records into a single "incomplete" category:
  they require different resolution actions (a failed record needs a waiver
  or re-test; an open record needs the verifier to complete and close the
  activity) and must be surfaced separately so action owners are clear.
- Accepting a non-empty waiver_ref field without confirming it references an
  approved document: the closeout logic trusts the reference is valid; the
  review board must separately audit that the waiver document exists and
  carries the required approval signatures before accepting the waived status.
- Marking a row compliant when all records are not_applicable without
  at least one passed record: a row where every record is not_applicable
  may indicate that no verification was actually performed. This is not
  caught by the closeout logic itself and should be flagged during the
  review board's walkthrough of waived/not-applicable rows.

## Behavior contract (gate 3)

The compliance-status determination, waiver handling, open-record detection,
failed-record detection, and summary aggregation logic is exercised by the
gate 3 contract test: scripts/test_e1002_vcd_closeout.py against
scripts/e1002_vcd_closeout_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e1002_vcd_closeout.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 →