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

Q7028 Repair Limits

ASecurity

Determine whether a printed circuit board assembly stays inside the repair ceilings of ECSS-Q-ST-70-28C once a further repair is added. Read the count and density allowance the assurance level carries, combine the repairs already on the board with the ones proposed, refuse a reused site identity, measure the in-plane separation of every pair against the minimum that pair takes — longer on one face, shorter across the laminate — count repairs per conductor, and return the disposition with the ...

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 q7028-repair-limits --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q7028 Repair Limits?

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

Security grade badge for Q7028 Repair Limits
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q7028-repair-limits/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q7028-repair-limits)

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

Download with Pro
Files
SKILL.md
---
name: q7028-repair-limits
description: "Determine whether a printed circuit board assembly stays inside the repair ceilings of ECSS-Q-ST-70-28C once a further repair is added. Read the count and density allowance the assurance level carries, combine the repairs already on the board with the ones proposed, refuse a reused site identity, measure the in-plane separation of every pair against the minimum that pair takes — longer on one face, shorter across the laminate — count repairs per conductor, and return the disposition with the closest pair, the governing limit and whether the proposal is what broke it. Use when authorising another repair or auditing a heavily reworked board. Trigger: ecss, q-st-70-28c, repairs-per-board-allowance, board-repair-proximity-rule, board-repair-density-limit, repairs-per-conductor-limit, repair-site-separation."
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-28c-pcb-repair-and-modification, q-st-70-28c, q7028-repair-limits, repairs-per-board-allowance, board-repair-proximity-rule, board-repair-density-limit, repairs-per-conductor-limit, repair-site-separation]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS PCB Repair — Repair Limits (space-systems/ecss/q7028-repair-limits)

Use when the task is the limits clause of ECSS-Q-ST-70-28C: how much repair
one printed circuit board assembly is allowed to carry, how densely the sites
may sit, how many repairs one conductor may take, and how close two repair
sites may be before the material between them stops being undisturbed.

## Domain quick reference

- The limits are on the board, not on the individual repair. Every repair can
  be perfectly executed and the board still be refused, because what the
  ceiling protects is the amount of the assembly whose qualification now rests
  on rework rather than on the original process.
- A count and a density are different limits and both are needed. The count
  stops a board accumulating repairs indefinitely; the density stops a small
  board carrying the population a large one was allowed.
- Proximity is a thermal and mechanical rule. Two repairs close together mean
  the second reflow ran through material the first had already cycled, and the
  laminate between them has seen both. The separation is what keeps each
  repair sitting in undisturbed material.
- The minimum separation depends on which faces the sites are on. Two sites on
  one face interact across the surface and take the longer minimum; two on
  opposite faces interact only through the thickness and may sit closer in
  plan. Applying one figure to both is either needlessly strict or unsafe.
- A conductor takes one repair. A second repair on the same run leaves a
  conductor that is mostly joint, and the electrical and mechanical behaviour
  of the run is no longer the behaviour that was qualified.
- A proposal is assessed against the board as it will be, not as it is. The
  useful answer names whether the proposal is what pushes the board over, so
  the alternative — relocating the jumper, routing on the other face — can be
  evaluated instead of the repair being refused outright.
- Two proposals that each pass alone can fail together. Pairwise separation is
  checked across the whole combined population, existing and proposed, rather
  than proposal against existing only.

## Workflow

1. Read the count and density allowances for the board's assurance level.
2. Normalise the existing and proposed sites, validating the side and the
   coordinates, and refuse a proposal that reuses an existing site identity.
3. Count the whole combined population against the per-board allowance.
4. Compute the density over the board area and compare it against the
   per-area allowance.
5. Group the sites by conductor and report any conductor over its allowance.
6. Measure the separation of every pair and compare it with the minimum that
   pair takes, treating a pair exactly on the minimum as acceptable.
7. Report the closest pair and the governing limit as the highest utilisation
   across the count and density allowances.
8. Say whether the proposal is implicated in any breach, and return the
   disposition with every finding.

## Pitfalls

- Checking the count and calling the board clear. A small board at four
  repairs can be well past its density while comfortably inside its count.
- Applying one separation figure to every pair. Sites on opposite faces are
  refused for a surface interaction they do not have, and the crowding that
  matters goes unexamined when the figure is set from the cross-laminate case.
- Checking each proposal only against the existing sites. Two proposals four
  millimetres apart both clear the old population and crowd each other.
- Counting repairs per board and not per conductor. One run can absorb the
  whole allowance without the board count looking remarkable.
- Reporting a refusal without saying which limit governed or how close the
  nearest pair was. Moving a jumper five millimetres is often the whole fix,
  and the disposition has to make that visible.
- Reusing a site identity when a repair is reworked. The population then
  counts one site where there were two, and the history of the first is lost.

## Behavior contract (gate 3)

The count and density allowances by assurance level, site normalisation and
duplicate-identity refusal, pairwise separation against the same-face and
cross-laminate minima, per-conductor counting, closest-pair reporting,
governing-limit selection and the proposal-implicated flag are exercised by
the gate 3 contract test: scripts/test_q7028_repair_limits.py against
scripts/q7028_repair_limits_logic.py (stdlib unittest, offline).
Run: python3 scripts/test_q7028_repair_limits.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 →