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 Ref Particles

ASecurity

Use when selecting particle-radiation reference models for a space-environment case under ECSS-E-ST-10-04C Annex I (informative): categorize the particle population (trapped proton, trapped electron, solar energetic particle, galactic cosmic ray, albedo neutron) and the orbit regime, check a proposed energy against the population's cataloged model energy range and a proposed altitude against its altitude range, determine whether a low-Earth orbit is geomagnetically shielded for a given inclin...

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

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 e1004-ref-particles --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1004 Ref Particles?

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

Security grade badge for E1004 Ref Particles
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e1004-ref-particles/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e1004-ref-particles)

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

Download with Pro
Files
SKILL.md
---
name: e1004-ref-particles
description: "Use when selecting particle-radiation reference models for a space-environment case under ECSS-E-ST-10-04C Annex I (informative): categorize the particle population (trapped proton, trapped electron, solar energetic particle, galactic cosmic ray, albedo neutron) and the orbit regime, check a proposed energy against the population's cataloged model energy range and a proposed altitude against its altitude range, determine whether a low-Earth orbit is geomagnetically shielded for a given inclination, determine whether the South Atlantic Anomaly enhancement applies to a low-Earth orbit's altitude and inclination, and select the cataloged model identifier a radiation case must cite. Trigger: ecss, e-st-10-04c, annex i, particle radiation, trapped proton, trapped electron, solar energetic particle, galactic cosmic ray, albedo neutron, model selection, south atlantic anomaly, geomagnetic shielding."
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, annex-i, particle-radiation, trapped-proton, trapped-electron, sep, gcr, albedo-neutron, saa, reference-data]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Space Environment — Particle-Radiation Reference Data (space-systems/ecss/e1004-ref-particles)

Use when the task is selecting particle-radiation reference models under
ECSS-E-ST-10-04C Annex I (informative) — categorizing the particle
population and orbit regime, validating a proposed energy or altitude
against a model's cataloged range, deciding whether a low-Earth orbit is
geomagnetically shielded, deciding whether the South Atlantic Anomaly
enhancement applies, and selecting the cataloged model identifier a
radiation case must cite.

## Domain quick reference

- Five particle populations are cataloged: trapped proton, trapped
  electron, solar energetic particle, galactic cosmic ray, and albedo
  neutron. Each has its own model family and its own validity envelope —
  a model chosen outside its envelope gives a meaningless flux.
- The orbit regime (LEO, MEO, GEO, GTO, HEO, interplanetary) constrains
  which model families apply. A trapped-belt model is meaningless for an
  interplanetary case, and a solar-particle model is not the design driver
  for an inner-belt proton environment.
- Model energy ranges differ by population. A proposed energy outside the
  population's cataloged range must be reported against the model's range,
  not silently accepted.
- Geomagnetic shielding: below a characteristic inclination a low-Earth
  orbit's trajectory stays within the geomagnetic cutoff and solar
  energetic particles and galactic cosmic rays are substantially shielded;
  above it, the orbit reaches high magnetic latitudes where shielding is
  weak. This is expressed as an inclination threshold.
- The South Atlantic Anomaly (SAA) is a region of reduced geomagnetic field
  where the inner trapped-belts dip to lower altitude. Its enhancement
  applies only within a bounded altitude band and above a minimum
  inclination — check both.

## Workflow

1. Categorize the population and the orbit regime for the case. Each
   function validates its population/regime argument and raises on an
   unknown value.
2. Check the proposed energy:
   `is_energy_in_range(population, energy_mev)` against
   `model_energy_range_mev(population)`.
3. Check the proposed altitude:
   `is_altitude_in_range(population, altitude_km)` against
   `model_altitude_range_km(population)`.
4. For a low-Earth orbit, decide shielding:
   `is_geomagnetically_shielded(orbit_regime, inclination_deg)`.
5. Decide SAA applicability:
   `saa_enhancement_applies(orbit_regime, altitude_km, inclination_deg)`.
6. Select the model identifier for the case:
   `select_particle_model(population, orbit_regime, inclination_deg)`.
7. Run the full review for one lookup and check it is compliant:
   `particle_reference_review(request)` → `is_particle_review_compliant(review)`.

## Pitfalls

- Using a model outside its envelope: an energy or altitude outside the
  cataloged range is a finding to resolve (choose another model or document
  a deviation), never a value to clamp.
- Ignoring the inclination condition on SAA applicability: the enhancement
  applies only above a minimum inclination as well as within the altitude
  band; an equatorial orbit at the right altitude does not qualify.
- Treating geomagnetic shielding as a smooth function of altitude alone:
  it is an inclination-gated effect; the deciding variable is the maximum
  magnetic latitude the ground track reaches.
- Security-marking vocabulary: the content-policy gate flags the word
  beginning "classif-"; use "categorized" instead.

## Behavior contract (gate 3)

`scripts/test_e1004_ref_particles.py` (stdlib unittest, offline) verifies
population/regime validation and error paths, energy- and altitude-range
checks at boundaries, geomagnetic-shielding inclination gating, SAA
applicability (altitude band + inclination + regime), model selection, and
the full review compliance check.

## Compliance

ECSS-E-ST-10-04C Annex I is informative reference data. This leaf implements
only common-knowledge procedure and reference-value structure; the standard
and clause are cited as the anchor. `license: Apache-2.0`,
`compliance: STANDARDS-REF`, `standards: ecss` (reference-only), `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 →