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

E1011 Habitable Env

ASecurity

Use when evaluate crew habitable environments under ECSS-E-ST-10-11C §4.7.1–4.7.2: verify net habitable volume per crew member against the minimum per-person threshold, assess atmospheric parameters (oxygen partial pressure, carbon dioxide partial pressure, total cabin pressure, temperature, relative humidity) against allowable bands, check layout provisions for emergency egress paths and workstation accessibility, and confirm hygiene-system allocations are on record for each compartment. The...

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

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 e1011-habitable-env --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1011 Habitable Env?

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

Security grade badge for E1011 Habitable Env
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e1011-habitable-env/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e1011-habitable-env)

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

Download with Pro
Files
SKILL.md
---
name: e1011-habitable-env
description: "Use when evaluate crew habitable environments under ECSS-E-ST-10-11C §4.7.1–4.7.2: verify net habitable volume per crew member against the minimum per-person threshold, assess atmospheric parameters (oxygen partial pressure, carbon dioxide partial pressure, total cabin pressure, temperature, relative humidity) against allowable bands, check layout provisions for emergency egress paths and workstation accessibility, and confirm hygiene-system allocations are on record for each compartment. The skill aggregates findings per compartment and flags every non-compliant or unrecorded item before the design review. Trigger: ecss, e-st-10-11c, habitable-environment, crew-provisions, atmospheric-habitability, volume-allocation, layout-design, hygiene."
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-11c, habitable-environment, crew-provisions, atmospheric-habitability, volume-allocation, layout-design, hygiene]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Human Factors — Habitable Environment Design (space-systems/ecss/e1011-habitable-env)

Use when the task is to evaluate the habitability of a crewed spacecraft
compartment against ECSS-E-ST-10-11C §4.7.1–4.7.2 — verifying that net
habitable volume, atmospheric parameters, layout provisions, and hygiene
allocations all meet their respective thresholds before the design review.

## Domain quick reference

- **Net habitable volume** is the pressurized free volume available to
  the crew after accounting for fixed structures, equipment racks, and
  stowage. ECSS-E-ST-10-11C §4.7.1 ties a minimum per-person threshold
  to mission duration; for the purposes of this skill the operational
  lower bound is 11.3 m³ per crew member. Compartments below that
  threshold are flagged regardless of any compensating factor.
- **Atmospheric parameters** (§4.7.2) govern physiological safety and
  comfort. Five parameters are checked independently against their
  allowable bands:
  - Oxygen partial pressure: 19.5–23.1 kPa
  - Carbon dioxide partial pressure: < 0.5 kPa (upper limit only)
  - Total cabin pressure: 70.0–102.7 kPa
  - Cabin temperature: 18.0–27.0 °C
  - Relative humidity: 25.0–75.0 %
  A parameter outside its band is a finding even if all other parameters
  are nominal; the five checks are independent.
- **Layout provisions** cover emergency egress and workstation
  accessibility. Each habitable compartment must have at least one
  defined egress path, and at least one workstation per crew member
  allocated to that compartment.
- **Hygiene provisions** must be allocated per compartment: waste
  management, personal hygiene facilities, and a potable water
  dispenser. A compartment is not evaluated as habitable until all three
  are on record — a missing entry is a finding, not a pass.

## Workflow

1. For each habitable compartment, collect the net volume (m³) and the
   number of crew members assigned to it. Compute the volume per person;
   flag the compartment immediately if that ratio falls below 11.3 m³.
2. Collect the five atmospheric parameters for the compartment's nominal
   operating point. Check each parameter against its allowable band
   independently and record every out-of-band value as a separate
   finding.
3. Confirm the number of defined emergency egress paths (≥1) and the
   number of workstations allocated (≥ crew count). Record a finding for
   each shortfall.
4. Verify that all three required hygiene provisions (waste management,
   personal hygiene, water dispenser) are on record for the compartment.
   Record a finding for each missing provision.
5. Aggregate all findings for the compartment. The compartment is
   habitable-compliant only when the finding list is empty. Report the
   compartment identifier, compliance status, and the full finding list.

## Pitfalls

- Treating the volume threshold as a total-spacecraft limit rather than
  a per-crew-member-per-compartment limit — the 11.3 m³ floor applies
  per person in the compartment being evaluated, not shared across the
  entire vehicle.
- Checking atmospheric parameters as a single combined condition and
  passing the compartment when most values are nominal — each of the
  five parameters must pass independently; a CO2 spike is a finding
  regardless of all other parameters being in-band.
- Counting egress corridors that pass through another pressurized module
  as valid egress paths without verifying the intermediate module is
  reachable during the emergency scenario; the check here is that at
  least one egress path is defined, not that all paths are independently
  evaluated for reachability.
- Deferring the hygiene-provision check to a later review on the grounds
  that the allocation document is not yet final — an unrecorded
  provision is a finding against the compartment evaluation, not a
  pending action item.

## Behavior contract (gate 3)

The volume, atmospheric, layout, and hygiene-provision logic is
exercised by the gate 3 contract test:
scripts/test_e1011_habitable_env.py against
scripts/e1011_habitable_env_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e1011_habitable_env.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 →