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

E1003 Anomaly

ASecurity

"Use when resolving anomalies or failures detected during spacecraft

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

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 e1003-anomaly --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1003 Anomaly?

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

Security grade badge for E1003 Anomaly
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e1003-anomaly/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e1003-anomaly)

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

Download with Pro
Files
SKILL.md
---
name: e1003-anomaly
description: "Use when resolving anomalies or failures detected during spacecraft
  testing under ECSS-E-ST-10C §4.3.4: categorize each failure by domain (hardware,
  software, environmental, electrical, mechanical), determine containment actions
  scaled to the severity level (critical/major/minor), verify the anomaly record
  captures all required documentation fields, assign a disposition code (accept
  as-is, repair and retest, waiver required, reject, pending analysis), and identify
  which test cases must be repeated as a consequence of the anomaly or its corrective
  action. Trigger: ecss, e-st-10c, anomaly, test-anomaly, containment, disposition,
  retest-decision, anomaly-resolution, test-failure."
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-10c, anomaly, test-anomaly, containment, disposition, retest-decision]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS AIT — Anomaly Handling During Testing (space-systems/ecss/e1003-anomaly)

Use when the task is to resolve an anomaly or unexpected failure detected
during spacecraft testing per ECSS-E-ST-10C §4.3.4 — categorizing the failure
domain, applying immediate containment, verifying the anomaly record, assigning
a disposition, and deriving which tests must be repeated.

## Domain quick reference

- §4.3.4 requires that every unexpected event or failure observed during a
  test be formally captured before any recovery action is taken; containment
  preserves the as-found hardware state and test data so the failure can be
  accurately reproduced and investigated.
- Anomalies are grouped by failure domain: hardware (component or structural
  failure), software (crash, data corruption, protocol error), environmental
  (temperature or pressure exceedance, contamination event), electrical
  (power anomaly, ESD event, signal degradation), or mechanical (mechanism
  jam, structural interference). Each anomaly belongs to exactly one domain.
- Severity determines containment urgency: critical anomalies require an
  immediate test halt, hardware isolation, and responsible-engineer
  notification; major anomalies require suspension of test activity and a
  risk-to-hardware assessment; minor anomalies permit continued testing with
  enhanced monitoring and documentation.
- Disposition codes drive what happens next: accept-as-is closes the anomaly
  without corrective action; repair-and-retest mandates a corrective action
  followed by a defined retest scope; waiver-required routes the anomaly to
  the configuration control authority; reject fails the item outright;
  pending-analysis holds the anomaly open while investigation continues.
- The retest scope is derived from the disposition and the set of test cases
  whose results may have been invalidated by the anomaly or by the repair
  action that follows.

## Workflow

1. Detect and immediately preserve the test state: record the exact test
   procedure reference, step number, time-stamp, and instrument readings at
   the moment of detection before touching any hardware or software controls.
2. Categorize the anomaly into exactly one failure domain (hardware, software,
   environmental, electrical, mechanical). Reject any anomaly type not in the
   defined domain set before proceeding — an uncategorized anomaly cannot be
   routed to the correct engineering authority.
3. Assess severity (critical, major, or minor) based on the potential for
   hardware damage, data loss, schedule impact, and mission-risk consequences.
   Execute the containment action list mandated by that severity level in
   order; do not skip steps.
4. Verify the anomaly record contains all required documentation fields:
   anomaly identifier, description of the observed behavior, detected-at
   timestamp, affected item reference, test procedure reference, name of the
   person who detected it, and initial findings. Flag each missing field as
   a record gap before assigning disposition.
5. Assign a disposition code. If the code is pending-analysis, flag the anomaly
   as open and do not advance to retest derivation until a final disposition
   is set. Reject any disposition string outside the recognized code set.
6. Derive the retest scope: for repair-and-retest dispositions, union the set
   of test cases directly affected by the anomaly with any test cases whose
   scope overlaps the repair action. For all other dispositions, the mandatory
   retest set is empty (though the responsible engineer may still elect to
   rerun tests at their discretion).
7. Close the anomaly record when the disposition is final, all record gaps are
   resolved, and either the retest scope is complete or the disposition does
   not require retesting.

## Pitfalls

- Touching hardware or resetting software before capturing the as-found state —
  containment must precede any recovery action; data lost at this step cannot
  be reconstructed.
- Treating a pending-analysis disposition as closed — an anomaly in this state
  is still open and must not be counted toward test completion.
- Defining the retest scope only as the test that surfaced the anomaly —
  the repair may invalidate results from earlier tests that exercised the
  same interface or subsystem; those must be included in the scope.
- Leaving the anomaly record with missing fields and proceeding to disposition —
  §4.3.4 requires a complete record before the configuration control authority
  can act on the disposition.
- Assigning a minor severity to an anomaly that involves any hardware damage
  risk, even if the immediate observable impact is small — severity must reflect
  the worst credible consequence, not the observed symptom.

## Behavior contract (gate 3)

The anomaly-categorization, containment-action derivation, record-field
validation, disposition handling, and retest-scope derivation logic is
exercised by the gate 3 contract test:
scripts/test_e1003_anomaly.py against scripts/e1003_anomaly_logic.py
(stdlib unittest, offline). Run:
python3 scripts/test_e1003_anomaly.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 →