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

Q60 Class 1 Lot Acceptance Testing

ASecurity

Use when a delivery has to become a submission plan rather than a pass-fail verdict. Plan which Class 1 EEE units of a delivery still owe a lot acceptance submission under ECSS-Q-ST-60C clause 4.3.5: split the delivery into one submission unit per part number, date code and manufacturer lot, size each draw with exact rational arithmetic that rounds the percentage rule up and clamps it between the declared floor and the unit quantity, and test every acceptance record on file for the same mater...

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

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 q60-class-1-lot-acceptance-testing --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q60 Class 1 Lot Acceptance Testing?

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

Security grade badge for Q60 Class 1 Lot Acceptance Testing
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q60-class-1-lot-acceptance-testing/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q60-class-1-lot-acceptance-testing)

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

Download with Pro
Files
SKILL.md
---
name: q60-class-1-lot-acceptance-testing
description: "Use when a delivery has to become a submission plan rather than a pass-fail verdict. Plan which Class 1 EEE units of a delivery still owe a lot acceptance submission under ECSS-Q-ST-60C clause 4.3.5: split the delivery into one submission unit per part number, date code and manufacturer lot, size each draw with exact rational arithmetic that rounds the percentage rule up and clamps it between the declared floor and the unit quantity, and test every acceptance record on file for the same material, a date no later than the submission day and a validity window counted in whole calendar months. Trigger: ecss, q-st-60c-clause-4-3-5, class-1-lot-acceptance-submission, date-code-submission-unit, lat-record-validity-window, lat-submission-draw-sizing, outstanding-lot-submission."
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-60c-eee-class-1-scope, q60-class-1-lot-acceptance-testing, class-1-lot-acceptance-submission, date-code-submission-unit, lat-record-validity-window, lat-submission-draw-sizing, outstanding-lot-submission]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Class 1 EEE Parts -- Lot Acceptance Submission (space-systems/ecss/q60-class-1-lot-acceptance-testing)

Use when the task is the clause 4.3.5 submission duty of ECSS-Q-ST-60C: a
delivery of Class 1 parts has arrived or is being prepared, and the question
is which lots and date codes inside it still have to go for lot acceptance
verification, and how many pieces each of those submissions draws.

## Domain quick reference

- The submission unit is the material, not the paperwork. A part number, a
  date code and a manufacturer lot identifier together name one unit; two
  date codes in one delivery note are two units and take two submissions,
  because pieces built in different weeks came off different material.
- Quantities of the same triple add. A delivery that lists the same lot on
  three lines is still one submission unit, and splitting it into three
  submissions buys nothing but three sampling costs.
- The draw is sized by a percentage rule that rounds up, raised by a declared
  floor for small units and capped at the unit quantity. A unit smaller than
  the floor is drawn whole rather than refused.
- An existing acceptance record closes a unit only when it names the same
  material: same part number, same date code, and the same lot identifier
  where both carry one. A record from the neighbouring week is a record about
  other material.
- Record currency is a whole-month question against the submission day. A
  record dated after the day it is offered against is not evidence yet, and a
  record past its window has stopped being evidence.

## Workflow

1. Group the delivery lines into submission units by part number, date code
   and lot identifier, adding the quantities of repeated triples and refusing
   a line with a zero quantity or a malformed date code.
2. Size each unit's draw from the percentage rule using exact rational
   arithmetic, so a rate that lands exactly on a whole number of pieces does
   not round up an extra one on one platform and not on another.
3. Raise the draw to the declared floor, then clamp it to the unit quantity;
   report the clamp rather than silently sampling the whole unit.
4. Test each acceptance record against each unit in turn, and keep the reason
   a record was set aside so a near miss can be shown to the reviewer.
5. Mark a unit covered only on a record that names its material, is dated on
   or before the submission day and sits inside the validity window.
6. Report the outstanding units, the pieces those submissions will consume,
   and the fact that the delivery broke into more than one unit at all.

## Pitfalls

- Submitting a delivery as one lot. The date code is what makes the material
  homogeneous; pooling two codes under one submission is the defect the
  per-date-code rule exists to prevent.
- Rounding the draw with float arithmetic. A rate times a quantity that should
  be a whole number of pieces can land a few units either side of it, and the
  ceiling then differs between build machines. The rule is rational here.
- Letting a record from an adjacent date code close a unit. It names other
  material, however close the week and however identical the part number.
- Treating a record dated after the submission day as coverage. Evidence that
  does not exist yet on the day of the question is not evidence.
- Discarding the reason a record was set aside. A unit reported as simply
  uncovered hides that a record existed and had just gone out of window.

## Behavior contract (gate 3)

The date-code normalisation, delivery grouping, exact draw sizing, record
coverage test and the outstanding-unit plan are exercised by the gate 3
contract test:
scripts/test_q60_class_1_lot_acceptance_testing.py against
scripts/q60_class_1_lot_acceptance_testing_logic.py (stdlib unittest, offline).
Run:
python3 scripts/test_q60_class_1_lot_acceptance_testing.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 →