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

Q6013 Procurement Test Table Selection

ASecurity

Use when a part has to be matched to its procurement test table. Determine which per-family procurement test matrix governs a commercial part under ECSS-Q-ST-60-13C clause 8.2: resolve the part family from the component type and the technology together rather than from either field alone, map that family to its procurement test table, split the table into the test groups applicable at the declared assurance class and the groups the class defers, report applicability as a fraction judged under...

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

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 q6013-procurement-test-table-selection --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q6013 Procurement Test Table Selection?

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

Security grade badge for Q6013 Procurement Test Table Selection
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q6013-procurement-test-table-selection/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q6013-procurement-test-table-selection)

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

Download with Pro
Files
SKILL.md
---
name: q6013-procurement-test-table-selection
description: "Use when a part has to be matched to its procurement test table. Determine which per-family procurement test matrix governs a commercial part under ECSS-Q-ST-60-13C clause 8.2: resolve the part family from the component type and the technology together rather than from either field alone, map that family to its procurement test table, split the table into the test groups applicable at the declared assurance class and the groups the class defers, report applicability as a fraction judged under a named tolerance, detect a multifunction part that pulls in a second table before the purchase order goes out, and reconcile every proposed waiver against the groups that actually apply. Trigger: ecss, q-st-60-13c-clause-8-2, procurement-test-table-selection, commercial-part-family-resolution, class-dependent-test-applicability, multifunction-part-table-conflict, procurement-test-waiver-reconciliation."
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, q-st-60-13-commercial-eee-scope, q6013-procurement-test-table-selection, q-st-60-13c-clause-8-2, commercial-part-family-resolution, procurement-test-matrix-selection, class-dependent-test-applicability, multifunction-part-table-conflict, procurement-test-waiver-reconciliation]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Commercial Parts — Procurement Test Table Selection (space-systems/ecss/q6013-procurement-test-table-selection)

Use when the task is the procurement testing provision of ECSS-Q-ST-60-13C
clause 8.2 — deciding which of the per-family test matrices a given
commercial electrical, electronic and electromechanical part is bought
against, and which rows of that matrix the declared assurance class actually
calls for.

## Domain quick reference

- The matrix is chosen per family, not per part. Every downstream argument
  about what was tested starts from which table was picked, so a wrong table
  is not a wrong test — it is a whole wrong test programme.
- The family is named by two fields together. A technology token is ambiguous
  on its own: a film capacitor and a film resistor share the word and share
  no matrix. A component type is ambiguous the other way, splitting across
  technologies whose matrices differ.
- The table is the superset; the class picks the rows. A table carrying seven
  test groups may call for two of them at the lowest assurance level, so the
  applicable set and the deferred set are reported separately and always
  partition the table exactly.
- Applicability is reported as a fraction of the table, which makes two parts
  of different families comparable and makes a class change visible as a
  number rather than as a re-read of the matrix.
- A multifunction part is the trap. A device that is also an optocoupler, or
  a module carrying a relay, resolves into more than one family and therefore
  more than one table; the conflict is cheap to settle before the purchase
  order and expensive after delivery.
- A waiver is only meaningful against a group that applies. Waiving a group
  the class already defers changes nothing and hides the waivers that do
  change something; waiving a group the table never carried is a drafting
  error in the purchase order.

## Workflow

1. Validate the part: part number, component type, technology, declared
   assurance class, and any waivers the procurement proposes.
2. Resolve the family from the component type and technology pair, refusing a
   pair no family is defined for rather than guessing from one field.
3. Map the family to its procurement test table and list the table's groups
   in table order.
4. Split the table into the groups applicable at the declared class and the
   groups the class defers, and express applicability as a fraction.
5. Resolve every additional function the part carries, and report the second
   table as a conflict to be settled when one appears.
6. Reconcile the proposed waivers into unknown, already-deferred and
   effective, and report the selection with a verdict carrying every finding.

## Pitfalls

- Selecting on the technology word alone. Film, hybrid and discrete each
  appear under more than one component type or resolve to different matrices.
- Reading the whole table as the test programme. At the lower assurance
  classes most of a table is deferred, and buying the whole table is as wrong
  as buying two rows of it.
- Treating a multifunction part as its dominant function. The second family
  brings its own table, and silence about it is what surfaces at incoming
  inspection.
- Counting a redundant waiver as a relaxation. It measures nothing and
  crowds out the waiver that really did relax an applicable group.
- Comparing test counts across families. Tables differ in length, which is
  why the fraction rather than the count is the comparable quantity.
- Stopping at the first finding. The buyer needs the table, the class split
  and every waiver problem in one pass, before the order is placed.

## Behavior contract (gate 3)

The part validation, family resolution from the type and technology pair,
table mapping, class-dependent applicable and deferred split, applicability
fraction, multifunction table-conflict detection, waiver reconciliation and
the overall settled-selection verdict are exercised by the gate 3 contract
test: scripts/test_q6013_procurement_test_table_selection.py against
scripts/q6013_procurement_test_table_selection_logic.py (stdlib unittest,
offline).
Run: python3 scripts/test_q6013_procurement_test_table_selection.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 →