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 Timeline

ASecurity

Use when build the operations timeline for a human-rated space system per ECSS-E-ST-10-11C §4.9.3: sequence each crew task in a phased timeline, compute the time-averaged workload index for each hourly assessment window, verify no window exceeds the maximum allowable workload level, confirm mandatory rest gaps are preserved between consecutive high-demand activity clusters, and check that concurrent task counts remain within the cognitive limit specified by the HFE requirement. Trigger: ecss,...

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

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

Installs into .claude/skills of the current project.

Are you the author of E1011 Timeline?

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

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

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

Download with Pro
Files
SKILL.md
---
name: e1011-timeline
description: "Use when build the operations timeline for a human-rated space system per ECSS-E-ST-10-11C §4.9.3: sequence each crew task in a phased timeline, compute the time-averaged workload index for each hourly assessment window, verify no window exceeds the maximum allowable workload level, confirm mandatory rest gaps are preserved between consecutive high-demand activity clusters, and check that concurrent task counts remain within the cognitive limit specified by the HFE requirement. Trigger: ecss, e-st-10-system-scope, operations-timeline, crew-workload, workload-index, human-factors, task-sequencing, rest-period, concurrent-tasks."
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, operations-timeline, crew-workload, workload-index, human-factors, task-sequencing, rest-period, concurrent-tasks]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Human Factors Engineering — Operations Timeline (space-systems/ecss/e1011-timeline)

Use when build the operations timeline for a human-rated space system per
ECSS-E-ST-10-11C §4.9.3 -- sequencing crew tasks in a phased timeline,
computing the hourly workload index for each assessment window, checking
every window against the maximum allowable workload level, verifying
mandatory rest gaps between high-demand clusters, and confirming concurrent
task counts remain within the HFE cognitive limit.

## Domain quick reference

- Each crew activity in the mission phase is assigned a task ID, start
  time (minutes from the phase epoch), duration, and one of three workload
  levels: low (routine monitoring), medium (active procedure execution), or
  high (emergency response or complex multi-step operations). Workload level
  maps to a numeric value (low = 1, medium = 2, high = 3) used in index
  computation. An unrecognized level is a structural error that must be
  resolved before workload analysis proceeds.
- The time-averaged workload index for an assessment window is the sum of
  (workload_value × fraction_of_window_occupied) for all tasks active within
  that window. A window is typically one crew-hour. The index must not exceed
  the maximum allowable value (equivalent to one sustained high-level task)
  in any window; two concurrent high-level tasks push the index to 6, which
  always violates the limit.
- The concurrent task count at any instant must not exceed the cognitive
  limit drawn from the HFE requirement (typically three simultaneous tasks
  per crew member). The check fires at every task start and end event, not
  just at window boundaries; off-boundary violations are a common miss.
- After any cluster of consecutive high-demand assessment windows (index
  exceeding the high-demand threshold), a minimum rest gap must separate
  that cluster from the next. The gap is measured from the end of the last
  high-demand window in the first cluster to the start of the first
  high-demand window in the next cluster. A crew changeover or short
  procedure break shorter than the minimum does not satisfy the rest
  requirement.

## Workflow

1. Collect all crew tasks for the mission phase. For each task record: a
   unique task ID, a short description, start time in minutes from the phase
   epoch (non-negative integer), duration in minutes (positive integer),
   workload level (low / medium / high), and required crew count (≥ 1).
   Reject any task entry that fails these structural checks before proceeding
   to workload analysis.
2. Slide a one-hour assessment window across the full timeline span in
   60-minute steps. For each window compute the time-averaged workload index
   (sum of workload_value × overlap_minutes for all tasks in the window,
   divided by window duration in minutes). Flag any window where the index
   exceeds the maximum allowable workload level.
3. Perform an event-sweep at every task start and end instant. Maintain an
   active-task count: increment on task start, decrement on task end. When
   a task starts, if the resulting count exceeds the cognitive limit, record
   a concurrent-task violation. Tasks ending and tasks starting at the same
   minute are ordered so ends are processed before starts, preventing a
   spurious violation when one task replaces another exactly.
4. Identify all high-demand windows (index exceeds the high-demand
   threshold) and group consecutive windows into clusters. For each pair of
   adjacent clusters measure the inter-cluster gap in minutes. Flag any gap
   shorter than the minimum required rest duration.
5. Aggregate all findings from steps 1 through 4. The timeline is
   workload-compliant only when all three finding lists are empty:
   structural errors, workload exceedances, concurrent-task violations, and
   rest-gap shortfalls.

## Pitfalls

- Applying task workload values as peak loads rather than time-weighted
  contributions — a high-level task occupying only half a window contributes
  index 1.5, not 3.0; sum the weighted products, do not take the window
  maximum.
- Treating a gap between tasks as a rest period without verifying its
  duration meets the minimum — procedure transitions and tool changeovers
  are not rest periods and must not be counted toward the rest requirement.
- Omitting low-workload tasks from the timeline on the assumption they have
  no effect — even low-level tasks accumulate when many are concurrent; a
  cluster of three simultaneous low-level tasks produces an index of 3,
  equal to one sustained high-level task, and all three count against the
  concurrent-task limit.
- Checking concurrent-task count only at window boundaries and missing
  intra-window spikes — the event-sweep must fire at each exact task
  start/end minute to catch violations that open and close within a window.

## Behavior contract (gate 3)

The task-entry validation, workload-index computation, concurrent-task
event-sweep, and rest-gap cluster check are exercised by the gate 3
contract test: scripts/test_e1011_timeline.py against
scripts/e1011_timeline_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_e1011_timeline.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 →