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

E2007 Static Charging Verification

ASecurity

Assess the static-charging control provisions of a vehicle. Use when ECSS-E-ST-20-07C clause 5.3.5 calls for examination of the materials, bonding straps and blankets fitted for potential equalization: place each surface material in its conductive, dissipative or insulating resistivity band, refuse an insulating exposed surface, derive each bonding strap DC resistance from its geometry and compare it with the ceiling of its bonding category, compute the charge relaxation time from volume resi...

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 e2007-static-charging-verification --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E2007 Static Charging Verification?

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

Security grade badge for E2007 Static Charging Verification
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e2007-static-charging-verification/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e2007-static-charging-verification)

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

Download with Pro
Files
SKILL.md
---
name: e2007-static-charging-verification
description: "Assess the static-charging control provisions of a vehicle. Use when ECSS-E-ST-20-07C clause 5.3.5 calls for examination of the materials, bonding straps and blankets fitted for potential equalization: place each surface material in its conductive, dissipative or insulating resistivity band, refuse an insulating exposed surface, derive each bonding strap DC resistance from its geometry and compare it with the ceiling of its bonding category, compute the charge relaxation time from volume resistivity and permittivity, and size every blanket ground-tab count against blanket area with a redundancy floor. Trigger: ecss, e-st-20-07c, e-st-20-electrical-scope, static-charging-verification, potential-equalization-bonding, bonding-strap-dc-resistance, thermal-blanket-ground-tabs, surface-sheet-resistivity-band, static-charge-relaxation-time."
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-electrical-scope, e2007-static-charging-verification, potential-equalization-bonding, bonding-strap-dc-resistance, thermal-blanket-ground-tabs, surface-sheet-resistivity-band, static-charge-relaxation-time]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Electromagnetic Compatibility — Static Charging Verification (space-systems/ecss/e2007-static-charging-verification)

Use when the task is the static-charging verification of
ECSS-E-ST-20-07C clause 5.3.5 — examining the materials, the bonding
straps and the thermal blankets a vehicle carries for potential
equalization, and deciding whether they actually hold every exposed
surface at the same potential.

## Domain quick reference

- The provisions are verified as three populations, and none of them
  covers for another. Surface materials decide whether charge can build
  up at all; bonding straps decide whether a fitting that does charge
  can bleed off; blankets decide whether the largest exposed dielectric
  area on the vehicle is tied to structure. A vehicle can pass on two
  populations and still charge.
- A surface material is placed by its sheet resistivity into a
  conductive, a static-dissipative or an insulating band. Only the first
  two are acceptable on an exposed surface: an insulating exposed
  surface stores charge and eventually equalizes through an arc rather
  than through the bonding provisions. The two band edges are round
  decades, so a material specified exactly at a decade is compared with
  a relative tolerance and is not pushed into the worse band by the
  representation of that decade.
- A bonding strap is verified against the ceiling of its own bonding
  category, not against a single number. The static-equalization
  category is the loosest, because bleeding off charge needs only a
  resistive path; an RF-reference strap is orders of magnitude tighter,
  and a shock-hazard or lightning-current path sits between them. Using
  the loosest ceiling everywhere passes straps that were never meant to
  carry that function.
- Where the strap is not measured it is computed from material and
  geometry: resistivity times length over cross-section. A strap sized
  exactly to its ceiling can land a unit in the last place above it once
  those three numbers are multiplied, so the ceiling comparison carries
  a relative tolerance and the ceiling itself is never relaxed.
- A blanket is grounded by layer and by tab. Every conductive layer is
  tied, not only the outermost, and the number of ground tabs follows
  the blanket area against a maximum area per tab, with a floor of two
  so that a single broken tab does not float the blanket. A blanket
  whose area is an exact multiple of the area per tab must not acquire a
  spurious extra tab from the representation of that division.
- Charge relaxation is the time answer to the same question: the time
  constant of a dielectric surface is its volume resistivity times its
  absolute permittivity, and a surface slower than the declared
  equalization limit is a finding even when its band is acceptable.

## Workflow

1. Normalize the equalization limit and the maximum area per ground tab;
   a non-positive value for either is an input error.
2. For each surface material, place the sheet resistivity in its band
   and record whether the surface is exposed. An insulating exposed
   surface is a finding; a buried one is not.
3. Compute the charge relaxation time from the volume resistivity and
   the relative permittivity, and compare it with the equalization limit
   under an explicit tolerance. Refuse a relative permittivity below
   unity rather than clamping it.
4. For each bonding strap, resolve its bonding category, take its
   measured resistance or compute it from resistivity, length and
   cross-section, and compare it with that category's ceiling.
5. For each blanket, check that every layer is grounded and that the
   declared tab count reaches the count its area requires, taking the
   rounding up on a value nudged down so an exact multiple is not
   inflated.
6. Collect one named finding per defect — insulating exposed surface,
   slow relaxation, strap over its ceiling, ungrounded layer,
   insufficient tabs — and keep the per-item reports alongside them.
7. Report the three populations and the finding list; the provisions are
   acceptable only when that list is empty.

## Pitfalls

- Verifying bonding straps alone and calling static charging closed. A
  perfectly bonded fitting on an insulating painted skin does nothing
  for the skin, which is the largest charging area on the vehicle.
- Applying one resistance ceiling to every strap. The ceiling belongs to
  the bonding category, and a strap that comfortably meets the
  static-equalization figure can be two orders of magnitude outside an
  RF-reference requirement.
- Grounding the outer blanket layer only. Inner layers charge through
  the same environment and discharge to whatever is nearest, so a
  partially grounded blanket is an ungrounded blanket for this clause.
- Rounding the ground-tab count with a bare ceiling on a float division.
  A blanket area that is an exact multiple of the area per tab divides
  to a value a unit in the last place above the integer on one platform
  and below it on another, which silently adds a tab. Nudge the value
  down by a named amount before rounding up.
- Judging a decade-specified material with a strict inequality against
  the decade. The decade is not exactly representable, so a material
  written to sit on the band edge can fall into the worse band on one
  platform only. Compare the edges with a relative tolerance.

## Behavior contract (gate 3)

The bonding-category resolution, strap-resistance computation and
ceiling comparison, surface-resistivity banding, charge-relaxation
timing, blanket layer and ground-tab checks and the three-population
verdict are exercised by the gate 3 contract test:
`scripts/test_e2007_static_charging_verification.py` against
`scripts/e2007_static_charging_verification_logic.py` (stdlib unittest,
offline). Run:
python3 scripts/test_e2007_static_charging_verification.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 →