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 Input Tolerances

ASecurity

Use when you need to verify that each test input applied during a space qualification or acceptance campaign falls within the allowable deviation for its input type, as specified in ECSS-E-ST-10C §4.4.2 and Table 4-1. Categorize the input by type (temperature, pressure, supply voltage, frequency, random vibration power spectral density, sine vibration level, acoustic level, humidity, or test duration), compute the actual deviation from the nominal target, and confirm the deviation does not ex...

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

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-input-tolerances --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1003 Input Tolerances?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1003-input-tolerances
description: "Use when you need to verify that each test input applied during a space qualification or acceptance campaign falls within the allowable deviation for its input type, as specified in ECSS-E-ST-10C §4.4.2 and Table 4-1. Categorize the input by type (temperature, pressure, supply voltage, frequency, random vibration power spectral density, sine vibration level, acoustic level, humidity, or test duration), compute the actual deviation from the nominal target, and confirm the deviation does not exceed the permitted band for that category. Flag any out-of-tolerance input before the test run proceeds. Trigger: ecss, e-st-10-system-scope, input-tolerances, test-tolerances, test-input, table-4-1, tolerance-band, acceptance-testing."
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-system-scope, input-tolerances, test-tolerances, test-input, table-4-1, tolerance-band, acceptance-testing]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS AIT — Test Input Tolerances (space-systems/ecss/e1003-input-tolerances)

Use when the task is to confirm that every test input stimulus applied to the
unit under test remains within the allowable deviation band specified for that
input type in ECSS-E-ST-10C §4.4.2 and its accompanying table of tolerances.

## Domain quick reference

- ECSS-E-ST-10C §4.4.2 defines the maximum permitted deviation between the
  nominal (required) value of a test input and the value actually applied
  during a test. Each input type carries its own allowable band; a single
  out-of-tolerance input renders the test run non-compliant until the
  condition is resolved or the test is repeated under correct conditions.
- Nine input categories are covered: temperature (absolute deviation in °C),
  pressure (relative deviation in %), supply voltage (relative in %), frequency
  (relative in %), random vibration power spectral density (deviation in dB,
  power-ratio convention), sine vibration level (relative in %), acoustic
  sound pressure level (deviation in dB), relative humidity (absolute in %RH),
  and test duration (relative in %). Each category carries its own
  asymmetric or symmetric band derived from the standard.
- Duration has a one-sided lower bound of 0 %: a test may run longer than
  nominal (up to the upper limit) but must never be cut short, because
  accumulated exposure is a minimum-threshold requirement.
- Random vibration PSD has a one-sided upper bound of 0 dB: the applied
  spectrum may be up to 1 dB below nominal but must not exceed the specified
  level, since over-testing can introduce damage not representative of the
  mission environment.
- Acoustic SPL uses an asymmetric band: a tighter upper limit than the lower
  limit, reflecting the asymmetric risk of over-test versus under-test for
  acoustic stimuli.

## Workflow

1. For each test input, identify its category (temperature, pressure, voltage,
   frequency, random vibration PSD, sine vibration, acoustic SPL, humidity, or
   duration). Reject any input whose category is not in the supported list
   before the check proceeds.
2. Record the nominal (specified) value and the actual (applied) value for
   that input, both in consistent physical units.
3. Compute the deviation using the rule for that category:
   - Absolute: actual minus nominal (temperature, humidity).
   - Relative: (actual minus nominal) / nominal × 100 % (pressure, voltage,
     frequency, sine vibration, duration).
   - Decibel: 10 × log₁₀(actual / nominal) on a power basis (random vibration
     PSD, acoustic SPL). Both values must be strictly positive.
4. Compare the computed deviation against the allowable band [lo, hi] for that
   category. The check is inclusive at both boundaries.
5. Record a finding for any input whose deviation falls outside the band,
   stating the category, computed deviation, and the band limits.
6. The test run is input-compliant only when every input check returns
   within-tolerance. A run with any open finding is not compliant.

## Pitfalls

- Applying the same percentage band to all input types: duration and vibration
  PSD use different deviation types (one-sided, dB) that cannot be compared
  on a percentage scale without first converting.
- Treating a duration shortfall as acceptable because the difference is small:
  the lower bound on duration is 0 %, meaning any under-run is an exceedance
  regardless of magnitude.
- Using a voltage-ratio convention (20 × log₁₀) for random vibration PSD: the
  PSD is a power quantity, so the correct factor is 10 × log₁₀, not 20. Using
  20 halves the apparent dB deviation and masks exceedances.
- Checking only the inputs that are easy to measure and skipping others (e.g.
  frequency drift during a long thermal soak): every input category must be
  verified, not just the ones logged automatically by the test facility.
- Confusing the allowable input tolerance with the measurement uncertainty of
  the test instrumentation: they are separate and must both be budgeted. This
  leaf covers only the input tolerance; instrumentation uncertainty is treated
  under ECSS-E-ST-10C §4.4.3.

## Behavior contract (gate 3)

The tolerance-band lookup, deviation computation, and per-input and batch
compliance checks are exercised by the gate 3 contract test:

```
python3 scripts/test_e1003_input_tolerances.py
```

The test suite is offline, deterministic, and uses stdlib unittest only.

## Compliance

- ECSS standards are freely downloadable from the ESA website; cite the
  source and paraphrase per the project standards-map.
- 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 →