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

E1004 Impact Risk

ASecurity

Use when running a meteoroid/space-debris impact risk assessment for a space element under ECSS-E-ST-10-04C clause 10.2.5: combine the cumulative damaging flux from each contributing particle population at the ballistic-limit critical diameter, turn it into an expected impact count over the exposed area and mission duration, and compute the probability of no penetration (PNP) and probability of damage via the Annex J Poisson method, checking the result against the mission's PNP acceptance req...

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

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 e1004-impact-risk --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1004 Impact Risk?

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

Security grade badge for E1004 Impact Risk
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e1004-impact-risk/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e1004-impact-risk)

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

Download with Pro
Files
SKILL.md
---
name: e1004-impact-risk
description: "Use when running a meteoroid/space-debris impact risk assessment for a space element under ECSS-E-ST-10-04C clause 10.2.5: combine the cumulative damaging flux from each contributing particle population at the ballistic-limit critical diameter, turn it into an expected impact count over the exposed area and mission duration, and compute the probability of no penetration (PNP) and probability of damage via the Annex J Poisson method, checking the result against the mission's PNP acceptance requirement. Distinct from the sibling e1004-debris and e1004-meteoroid leaves, which select and evaluate the flux models this leaf consumes, and from the sibling e1004-mm-margins leaf, which applies design margins to flux or damage predictions rather than running the probability calculation itself. Trigger: ecss, e-st-10-04c, impact risk, damage probability, probability of no penetration, pnp, annex j, meteoroid debris risk, ballistic limit, space environment."
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-10-04c, space-environment, meteoroid, debris, impact-risk, annex-j, pnp]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Impact Risk Assessment (space-systems/ecss/e1004-impact-risk)

Use when the task is running the meteoroid/space-debris impact risk
assessment for a space element under ECSS-E-ST-10-04C clause 10.2.5:
turning per-population damaging flux into a probability of no
penetration (PNP) and probability of damage via the Annex J method,
and checking the result against the mission's PNP requirement.

## Domain quick reference

- ECSS-E-ST-10-04C clause 10.2.5 requires an impact risk assessment
  once the damaging flux at the element's ballistic-limit critical
  diameter is known: the flux is converted into a probability of
  penetration/damage over the mission, per the Annex J method.
- Each contributing particle population (debris, meteoroid background,
  meteoroid streams) evaluated at the same critical diameter has a
  cumulative flux (impacts/m^2/year); independent populations sum
  linearly into a total damaging flux.
- The expected number of damaging impacts is N = total_flux *
  exposed_area * mission_duration.
- Annex J treats impacts as a Poisson process: probability of no
  penetration Po = exp(-N); probability of one or more damaging
  impacts, Pd = 1 - Po.
- An element meets its risk-acceptance requirement only when Po is at
  or above the mission's minimum acceptable PNP; otherwise the
  shortfall (requirement - Po) drives further mitigation (shielding,
  reduced exposed area, added margin) upstream of this leaf.
- A system built from independently-assessed elements (panels,
  subsystems) has a system-level PNP equal to the product of the
  element PNPs, under the independence assumption used by the Annex J
  method.
- This leaf does not select or run the debris/meteoroid flux models
  (siblings e1004-debris, e1004-meteoroid) and does not apply design
  margins to flux or damage predictions (sibling e1004-mm-margins); it
  consumes already-selected, already-margined flux values and runs the
  probability calculation and requirement check.

## Workflow

1. Determine the critical diameter for the element (from the
   ballistic-limit equation for its shielding/structure) and collect
   the cumulative damaging flux at that diameter from each
   contributing population (debris, meteoroid background, meteoroid
   streams).
2. Sum the per-population fluxes into a total damaging flux for the
   element.
3. Compute the expected number of damaging impacts N over the
   element's exposed area and mission duration.
4. Compute the probability of no penetration (Po = exp(-N)) and the
   probability of damage (Pd = 1 - Po).
5. Compare Po against the mission's PNP acceptance requirement for the
   element; if Po falls short, record the shortfall and flag the
   element for mitigation (added shielding, reduced exposed area,
   reorientation) or margin review before proceeding.
6. When assessing a system of multiple independently-assessed elements,
   combine their individual PNPs multiplicatively to get the
   system-level PNP, and check that combined value against the
   system-level requirement.

## Pitfalls

- Summing fluxes evaluated at different critical diameters (each
  element/shielding configuration has its own ballistic-limit
  diameter; fluxes must be compared at the same diameter before
  summing).
- Treating Pd (probability of damage) as the PNP, or comparing it
  against a PNP-style requirement without inverting it first.
- Averaging element PNPs instead of multiplying them when rolling up
  to a system-level result (independence assumes multiplication, not
  averaging).
- Applying design margin inside this leaf's calculation instead of
  margining the input flux upstream (sibling e1004-mm-margins) so the
  probability step stays a pure flux-to-probability conversion.
- Reporting a shortfall as met because Po is close to the requirement;
  the check is a strict Po >= pnp_requirement comparison.

## Behavior contract (gate 3)

The flux-combination, expected-impact, probability, requirement-check,
and system-PNP-rollup logic is exercised by the gate 3 contract test:
scripts/test_e1004_impact_risk.py against
scripts/e1004_impact_risk_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e1004_impact_risk.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 →