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 Indices

ASecurity

Use when selecting solar-activity and albedo/IR reference data for a space-environment case under ECSS-E-ST-10-04C Annex F (informative): determine the solar-cycle activity level (minimum/mean/maximum) that a case should assume from its F10.7 solar-flux value, look up the reference index set (F10.7 flux, sunspot number) and the Earth albedo/IR flux references for that level, validate a proposed index value against the dataset's valid range, interpolate an index across the solar-cycle phase wh...

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

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

Installs into .claude/skills of the current project.

Are you the author of E1004 Ref Indices?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1004-ref-indices
description: "Use when selecting solar-activity and albedo/IR reference data for a space-environment case under ECSS-E-ST-10-04C Annex F (informative): determine the solar-cycle activity level (minimum/mean/maximum) that a case should assume from its F10.7 solar-flux value, look up the reference index set (F10.7 flux, sunspot number) and the Earth albedo/IR flux references for that level, validate a proposed index value against the dataset's valid range, interpolate an index across the solar-cycle phase when a cycle-phase fraction is given, and produce the combined solar-index plus albedo/IR reference record that a thermal or radiation case must cite. Trigger: ecss, e-st-10-04c, annex f, solar index, f10.7, sunspot number, solar cycle, albedo, earth ir, reference data, activity level, thermal case."
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-f, solar-index, f107, sunspot, solar-cycle, albedo-ir, reference-data]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Space Environment — Solar/Absolute-Index Reference Data (space-systems/ecss/e1004-ref-indices)

Use when the task is selecting solar-activity and albedo/IR reference data
under ECSS-E-ST-10-04C Annex F (informative) — deciding which solar-cycle
activity level a case must assume from its F10.7 value, retrieving the
reference index set for that level, retrieving the Earth albedo/IR reference
for a thermal case, validating a proposed index value against its valid range,
interpolating an index across the solar-cycle phase, and assembling the
reference record a thermal or radiation case must cite.

## Domain quick reference

- Solar activity is represented by reference levels — minimum, mean, and
  maximum — rather than by a single number, because a mission case must
  bound the environment over its lifetime. A worst-hot thermal case uses
  the maximum level; a worst-cold case uses the minimum; a nominal case
  uses the mean.
- F10.7 (the 10.7 cm solar radio flux, in solar flux units) is the primary
  activity proxy. The level boundaries partition the F10.7 range so a case's
  assumed flux maps deterministically onto one of the three reference levels.
- The activity level selects both the solar index reference (F10.7 flux and
  sunspot number) and the Earth albedo/IR reference (bond albedo and emitted
  infrared flux). These must be drawn from the same level so a thermal
  balance is self-consistent.
- Each reference dataset has a valid range. A proposed value outside its
  dataset range is a data-usage violation and must be reported, not silently
  clamped — the engineer either corrects the input or documents a deviation.
- When a case gives a solar-cycle phase fraction (0 = cycle minimum,
  1 = next cycle minimum), the index may be interpolated piecewise-linearly
  between the tabulated levels; extrapolation beyond the tabulated range is
  not permitted.

## Workflow

1. Read the case's assumed F10.7 solar flux (sfu) and classify it:
   `classify_f107_activity_level(f107_solar_flux_sfu)` returns
   `"minimum"`, `"mean"`, or `"maximum"`.
2. Retrieve the matching solar index reference:
   `get_solar_index(level)` returns the F10.7 flux and sunspot number for
   the level.
3. Retrieve the matching albedo/IR reference:
   `get_albedo_ir_reference(level)` returns Earth bond albedo and emitted
   infrared flux for the level.
4. Validate any proposed index value:
   `validate_index_value(dataset_id, value)` returns a violation list
   (empty when within the dataset's valid range).
5. If a solar-cycle phase fraction is given, interpolate:
   `interpolate_solar_cycle_index(dataset_id, cycle_phase_fraction)`.
6. Cite the source: `source_reference_for_parameter(parameter)` returns the
   canonical Annex F citation string for a reference parameter.
7. For a worst-hot or worst-cold case, assemble the combined record:
   `thermal_case_reference(case)`.
8. Run the full review for one lookup and check it is clean:
   `reference_data_review(request)` → `is_reference_data_valid(review)`.

## Pitfalls

- Mixing levels: pulling the F10.7 index from one activity level and the
  albedo/IR reference from another produces a physically inconsistent case.
  Always derive both from the same categorized activity level.
- Silently clamping an out-of-range value: `validate_index_value` reports
  violations; do not discard them. An out-of-range index is a finding to
  resolve, not a value to trim.
- Gerund descriptions and security-marking vocabulary: the content-policy
  gate flags the security-marking word beginning "classif-"; use
  "categorized" instead.
- Extrapolating the cycle-phase interpolation outside the tabulated range
  is not supported — treat it as a data gap, not a value to invent.

## Behavior contract (gate 3)

`scripts/test_e1004_ref_indices.py` (stdlib unittest, offline) verifies
activity-level classification boundaries, index and albedo/IR retrieval per
level, valid-range enforcement (in-range accepted, out-of-range reported),
cycle-phase interpolation endpoints, source-citation lookup, and the full
review validity check.

## Compliance

ECSS-E-ST-10-04C Annex F 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 →