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

Q7080 Part Acceptance

ASecurity

Derive the acceptance case for a lot of additively manufactured parts, class by class. Use when a build lot is presented for acceptance under ECSS-Q-ST-70-80C: read the density, porosity and surface limits the part class sets, confirm the mandatory screens that class owes were actually performed, size the sampling plan from the protection demanded rather than a rule of thumb -- the smallest sample whose exact hypergeometric chance of accepting a lot at the limiting quality stays under the tol...

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

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 q7080-part-acceptance --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q7080 Part Acceptance?

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

Security grade badge for Q7080 Part Acceptance
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q7080-part-acceptance/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q7080-part-acceptance)

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

Download with Pro
Files
SKILL.md
---
name: q7080-part-acceptance
description: "Derive the acceptance case for a lot of additively manufactured parts, class by class. Use when a build lot is presented for acceptance under ECSS-Q-ST-70-80C: read the density, porosity and surface limits the part class sets, confirm the mandatory screens that class owes were actually performed, size the sampling plan from the protection demanded rather than a rule of thumb -- the smallest sample whose exact hypergeometric chance of accepting a lot at the limiting quality stays under the tolerated consumer risk -- then rule on the lot against the findings observed. Trigger: ecss, q-st-70-80-additive-manufacturing-scope, am-part-acceptance, part-class-acceptance-limits, am-lot-sampling-plan, hypergeometric-consumer-risk, limiting-quality-level, mandatory-am-screening."
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-70-80-additive-manufacturing-scope, q7080-part-acceptance, am-part-acceptance, part-class-acceptance-limits, am-lot-sampling-plan, hypergeometric-consumer-risk, limiting-quality-level, mandatory-am-screening]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Additive Manufacturing — Part Acceptance (space-systems/ecss/q7080-part-acceptance)

Use when the task is the acceptance step of ECSS-Q-ST-70-80C on a lot
of built parts -- reading the limits the part class sets, confirming
the screens that class owes, and deciding how much of the lot has to be
examined before the lot as a whole can be accepted.

## Domain quick reference

- Acceptance has two halves. The attribute half asks whether a part
  meets the density, porosity and surface limits of its class. The lot
  half asks how many parts are examined at all, how many findings the
  plan tolerates, and what a passing lot proves about the parts nobody
  looked at. Both have to close before the lot is accepted.
- A sampling plan is not a discount on inspection. It is a stated
  probability of accepting a lot that carries a given share of
  non-conforming parts, so the honest way to size one is backwards:
  name the limiting quality the project refuses to accept, name the
  risk it will tolerate of accepting it anyway, and take the smallest
  sample that holds that risk.
- Drawing parts from a finite lot happens without replacement, so the
  acceptance probability is hypergeometric and can be summed exactly.
  The binomial approximation that treats the lot as infinite is
  optimistic on exactly the small lots additive manufacturing produces.
- Acceptance probability falls as the sample grows, which is why the
  smallest protective sample is found by bisection rather than by
  scanning, and why a sample that protects a lot of one hundred also
  protects a lot of five hundred at barely a larger size. Protection
  tracks the share of bad parts, not the headcount.
- An acceptance number is a promise to ship a known finding. If it is
  at least the number of bad parts a limiting lot carries, no sample
  size makes the plan protective -- not even examining every part --
  and the only fix is a smaller acceptance number.
- The most demanding class is not sampled at all. Where an escape is
  not survivable, every part is examined and the acceptance number is
  zero, and the sampling machinery is simply not the instrument.
- An attribute that was never measured is open, not passed. An empty
  field carries no information about conformance in either direction,
  and a lot closed on missing data is closed on an assumption.

## Workflow

1. Declare the part class and the lot size. Reject an uncategorized
   part rather than defaulting it, because the limits, the screens and
   the plan all hang off the class.
2. Where the class is examined in full, take the whole lot and stop
   sizing; the plan is the inspection.
3. Otherwise take the limiting quality and the tolerated consumer risk
   for the class, count the bad parts a limiting lot carries, and find
   the smallest sample whose acceptance probability stays under the
   risk. Floor it at the practical class minimum.
4. Where no sample can reach the protection, say so and name the cause
   -- the acceptance number -- rather than quietly returning the lot
   size.
5. Evaluate the attributes of the examined parts against the class
   limits, and list every attribute that was not measured as open.
6. Confirm the mandatory screens for the class were performed, and
   close with an acceptance verdict that names each reason: findings
   beyond the acceptance number, a non-conforming attribute, a missing
   screen, or a plan that never was protective.

## Pitfalls

- Choosing a sample size first and computing its protection afterwards,
  if at all. A round fraction of the lot has no stated consumer risk,
  and the plans that feel generous on small lots are the least
  protective ones there.
- Using a binomial model on a small lot. It assumes sampling with
  replacement from an infinite population, so it overstates the chance
  of catching a bad part in exactly the lot sizes a build plate
  produces.
- Reading a passing lot as evidence about the parts that were never
  examined. It is evidence about the lot at a stated confidence, and
  the strength of that evidence is the consumer risk, not the pass.
- Setting an acceptance number above zero on a class whose escapes
  matter. It tolerates a known finding, and on a small lot it can make
  protection unreachable at any sample size, which shows up as a plan
  that never goes protective however much is inspected.
- Treating a mandatory screen as satisfied because a sample was taken.
  Screens apply to every part of the class, so a sampling plan does not
  reduce them, and a screen that was skipped is a gap regardless of
  what the sample found.
- Comparing an acceptance probability with the tolerated risk by bare
  arithmetic. The probability is a ratio of large integers, so a plan
  meant to sit exactly on the limit can land a few units in the last
  place above it; the comparison absorbs that representation error
  while the risk limit stays untouched.

## Behavior contract (gate 3)

The hypergeometric acceptance probability, limiting-quality count,
protective sample search, class plans, attribute limits, screening gap
and the lot verdict are exercised by the gate 3 contract test:
scripts/test_q7080_part_acceptance.py against
scripts/q7080_part_acceptance_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_q7080_part_acceptance.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 →