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

E2008 Coverglass Visual Inspection

ASecurity

Use when a coverglassed assembly has been examined and each item needs a screened disposition. Verify every coverglass fitted to a photovoltaic assembly against the assembly defect criteria of ECSS-E-ST-20-08C clause 5.5.3.2.6: compute how much of the active cell area the glass still covers and how much overhang an edge chip has left to work through, then disposition each edge chip, surface scratch, cavity or inclusion, coating blemish, crack and surface deposit as accept, clean-and-reinspect...

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

Works with

claude codecli

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill e2008-coverglass-visual-inspection --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E2008 Coverglass Visual Inspection?

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

Security grade badge for E2008 Coverglass Visual Inspection
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e2008-coverglass-visual-inspection/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e2008-coverglass-visual-inspection)

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

Download with Pro
Files
SKILL.md
---
name: e2008-coverglass-visual-inspection
description: "Use when a coverglassed assembly has been examined and each item needs a screened disposition. Verify every coverglass fitted to a photovoltaic assembly against the assembly defect criteria of ECSS-E-ST-20-08C clause 5.5.3.2.6: compute how much of the active cell area the glass still covers and how much overhang an edge chip has left to work through, then disposition each edge chip, surface scratch, cavity or inclusion, coating blemish, crack and surface deposit as accept, clean-and-reinspect, refer-for-review or reject, add the accepted defects up against the cumulative area and count allowances, and hold the assembly open until every coverglass carries a record. Trigger: ecss, e-st-20-08c, clause-5-5-3-2-6, coverglass-defect-criteria-screening, coverglass-edge-chip-allowance, coverglass-active-area-coverage, coverglass-inclusion-limits, per-coverglass-inspection-completeness."
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-20-08-photovoltaic-assembly-scope, e2008-coverglass-visual-inspection, coverglass-defect-criteria-screening, coverglass-edge-chip-allowance, coverglass-active-area-coverage, coverglass-inclusion-limits, per-coverglass-inspection-completeness, solar-cell-assembly-optical-defects]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Photovoltaic — Coverglass Visual Inspection (space-systems/ecss/e2008-coverglass-visual-inspection)

Use when the task is the coverglass screen of ECSS-E-ST-20-08C clause
5.5.3.2.6 -- checking each coverglass on the assembly against the
defect criteria agreed for it, and keeping the assembly open until
every one of them has been looked at.

## Domain quick reference

- The screen is per item and exhaustive. A sampled coverglass check
  answers a different question from the one the clause asks, so the
  count of records is compared against the declared number of
  coverglasses and a short set leaves the assembly open no matter how
  clean the inspected ones were.
- Two judgements run per coverglass. The first is geometric: does the
  glass still sit over the active cell area, with an overhang on every
  edge. The second is the defect screen proper against the criteria.
- The overhang is not decoration. It is the distance an edge chip has
  to travel before it opens the cell to the environment, so the chip
  allowance is expressed as a fraction of the measured overhang rather
  than as an absolute number. A coverglass placed off-centre keeps its
  nominal size and loses the allowance on the tight side.
- Defect kinds separate by mechanism, not by appearance. A crack runs
  through the glass and grows under thermal cycling, so it rejects. An
  edge chip is bounded by the overhang. A scratch is bounded on width
  first -- a wide score line is a stress raiser, and its length only
  matters once the width is inside the limit. A cavity or inclusion is
  bounded on its largest dimension, a coating blemish on its area.
- A removable deposit is not a defect of the glass. It is cleaned and
  the coverglass is inspected again, and it does not count toward the
  permanent defect area; a deposit that will not come off stays in the
  optical path and goes to review.
- Small accepted defects still accumulate. A cumulative defect-area
  fraction and a count allowance per coverglass catch the item that
  passed every individual limit and is nevertheless covered in marks.

## Workflow

1. Take the declared coverglass count for the assembly and the
   inspection records. Reject a record set larger than the declared
   count, and report the shortfall when it is smaller.
2. For each coverglass, compute the coverage of the active cell area
   from the cell and glass dimensions and the placement offsets, and
   take the smallest of the four overhangs as the working margin.
3. Screen every defect against its own rule, using that margin for the
   edge-chip allowance, and record the reason whenever a defect leaves
   the accept band.
4. Take the worst disposition on the coverglass, then apply the
   coverage rule: an active area left uncovered beyond the allowance
   rejects the item whatever the defect list says.
5. Sum the permanent defect area, compare the fraction and the
   accepted-defect count against the per-coverglass allowances, and
   escalate to review when either is exceeded.
6. Roll up: the worst coverglass verdict, the identifiers that are not
   accepted, and the completeness flag. The assembly closes only when
   the record set is complete and nothing is outstanding.

## Pitfalls

- Sampling. The clause asks for every coverglass, and a sampled screen
  reports a verdict the evidence does not support.
- Judging an edge chip against a fixed millimetre limit. The number
  that matters is how much overhang is left at that edge, and an
  off-centre coverglass has less of it on one side than the drawing
  suggests.
- Screening defects and never checking placement. A perfectly clean
  coverglass that sits off its cell leaves active area exposed, and
  only the geometry catches it.
- Grading a scratch on length. Width decides whether the mark is a
  stress raiser in the glass; a short wide score is the worse of the
  pair.
- Counting a removable deposit as a permanent defect, or accepting the
  item without the re-inspection after cleaning. Neither records what
  the coverglass actually is.
- Accepting an item because every defect passed. The cumulative area
  fraction and the count allowance exist for exactly that case.
- Comparing a measurement with a derived allowance by bare arithmetic.
  The allowance is a product of a criteria value and a measured
  margin, so a measurement exactly on it can evaluate a few units in
  the last place above it; the comparison absorbs that representation
  error while the allowance stays untouched.

## Behavior contract (gate 3)

The coverage geometry, per-kind defect dispositioning, chip allowance
against the measured overhang, cumulative area and count allowances and
the assembly completeness rollup are exercised by the gate 3 contract
test: scripts/test_e2008_coverglass_visual_inspection.py against
scripts/e2008_coverglass_visual_inspection_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_e2008_coverglass_visual_inspection.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 →