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 Procedures

ASecurity

Use when develop, validate, or review operational procedures for a space system under ECSS-E-ST-10-11C §4.9.1: structure each procedure with mandatory fields (procedure_id, title, purpose, procedure_type, preconditions, numbered steps, expected_outcome), verify the procedure_type is one of the accepted operational categories (nominal, contingency, maintenance, test, launch_countdown, on_orbit), confirm every step begins with an imperative verb and does not exceed the cognitive-load word limit...

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-procedures --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E1011 Procedures?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1011-procedures
description: "Use when develop, validate, or review operational procedures for a space system under ECSS-E-ST-10-11C §4.9.1: structure each procedure with mandatory fields (procedure_id, title, purpose, procedure_type, preconditions, numbered steps, expected_outcome), verify the procedure_type is one of the accepted operational categories (nominal, contingency, maintenance, test, launch_countdown, on_orbit), confirm every step begins with an imperative verb and does not exceed the cognitive-load word limit, check that verification checkpoints are spaced within the allowed consecutive-step count, and flag compound actions that should be split into discrete steps. Trigger: ecss, e-st-10-system-scope, procedures, operational-procedures, hfe-review, procedure-validation, procedure-format, human-factors."
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, procedures, operational-procedures, hfe-review, procedure-validation, procedure-format, human-factors]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Human Factors — Operational Procedures (space-systems/ecss/e1011-procedures)

Use when the task is developing, validating, or reviewing operational
procedures for a crewed or ground-operated space system under
ECSS-E-ST-10-11C §4.9.1 -- structuring the procedure, validating its
format, and confirming it meets HFE requirements before approval.

## Domain quick reference

- §4.9.1 requires each operational procedure to be typed into one
  accepted category before format checks begin: nominal (planned mission
  operation), contingency (response to an off-nominal event),
  maintenance (servicing or repair), test (acceptance or verification),
  launch_countdown (pre-launch sequencing), or on_orbit (in-flight
  operation). A procedure whose type falls outside this set is rejected
  before any further checks.
- Every procedure must carry seven mandatory fields: a unique
  procedure_id, a descriptive title, a purpose statement (what the
  procedure achieves), the procedure_type, a non-empty preconditions
  list (system states that must hold before the first step), a steps
  list (at least one step), and an expected_outcome describing a
  successful completion. A procedure with any field absent or empty is
  not approved regardless of step quality.
- Each step must be phrased in imperative mood: the action text must
  begin with a recognized action verb (connect, set, verify, enable,
  etc.). A step whose first word is not an imperative verb is flagged as
  a warning. A step that contains two imperative verbs joined by 'and'
  is flagged as a compound-action warning and should be split into two
  discrete steps.
- HFE cognitive-load bounds: no step action may exceed thirty words
  (a hard error if exceeded), and no run of non-checkpoint steps may
  exceed ten consecutive steps (a hard error). Verification checkpoints
  (is_checkpoint: true) reset the consecutive counter. Step IDs must be
  unique within a procedure; a duplicate step ID is a hard error.

## Workflow

1. Receive the procedure draft as a dict with the seven required fields.
   Reject with an explicit error before further processing if any field
   is absent or empty, or if the procedure_type is not in the accepted
   set.
2. For each step in the steps list, validate format: confirm step_id and
   action are present and non-empty; check that the action text begins
   with an imperative verb; measure the word count against the thirty-
   word limit; detect compound actions (two imperative verbs joined by
   'and') and emit a warning.
3. Review the step sequence for HFE compliance: count consecutive steps
   without an is_checkpoint marker and flag an error when the run
   exceeds ten; scan all step IDs for duplicates and flag each
   recurrence as an error.
4. Aggregate findings into three categories: field_findings (field
   completeness), step_findings (per-step format), and hfe_findings
   (checkpoint spacing and step-ID uniqueness).
5. Determine approval: the procedure is approved when no error-severity
   finding exists in any category. Warnings do not block approval but
   should be resolved before release.

## Pitfalls

- Treating a missing preconditions list as equivalent to an empty one
  -- both are errors; a procedure with no stated preconditions implies
  any system state is acceptable, which is unsafe.
- Accepting a step that begins with a passive construction ("The
  operator should connect...") as equivalent to an imperative step
  ("Connect...") -- passive phrasing increases cognitive parsing time
  and fails the imperative-verb check.
- Counting a checkpoint as a regular step for the spacing check --
  is_checkpoint steps reset the consecutive counter; only non-checkpoint
  steps accumulate toward the ten-step limit.
- Assuming a procedure with only warnings is deficient -- warnings
  (compound action, non-imperative verb) highlight improvement
  opportunities but do not block approval; errors (missing fields, word
  limit exceeded, spacing violation, duplicate step ID) are the
  approval gate.
- Reusing a step ID across separate procedures -- step ID uniqueness is
  enforced within a single procedure; the check does not span across
  multiple procedures in a set.

## Behavior contract (gate 3)

The procedure field completeness, step format validation, HFE checkpoint
spacing, and step-ID uniqueness logic is exercised by the gate 3
contract test: scripts/test_e1011_procedures.py against
scripts/e1011_procedures_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e1011_procedures.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 →