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

E7041 Activate A Request Sequence

ASecurity

Determine whether a stored request sequence may be activated under ECSS-E-ST-70-41C clause 6.21.5.5, and release its first request only once every precondition holds. Use when an activation request names a sequence and the on-board engine must decide accept or refuse: refusing an unknown identifier instead of running nothing, refusing a sequence still under load, refusing one already executing rather than interleaving a second run, checking the stored body against its checksum before anything...

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 e7041-activate-a-request-sequence --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E7041 Activate A Request Sequence?

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

Security grade badge for E7041 Activate A Request Sequence
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e7041-activate-a-request-sequence/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e7041-activate-a-request-sequence)

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

Download with Pro
Files
SKILL.md
---
name: e7041-activate-a-request-sequence
description: "Determine whether a stored request sequence may be activated under ECSS-E-ST-70-41C clause 6.21.5.5, and release its first request only once every precondition holds. Use when an activation request names a sequence and the on-board engine must decide accept or refuse: refusing an unknown identifier instead of running nothing, refusing a sequence still under load, refusing one already executing rather than interleaving a second run, checking the stored body against its checksum before anything reaches a destination, honouring the engine's concurrent-execution capacity, and emitting one notification that names the sequence and every reason. Trigger: ecss, e-st-70-41-packet-utilization-scope, request-sequence-activation, request-sequence-activation-preconditions, request-sequence-engine-capacity, request-sequence-activation-refusal-notification."
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-70-41-packet-utilization-scope, e7041-activate-a-request-sequence, request-sequence-activation, request-sequence-activation-preconditions, request-sequence-engine-capacity, request-sequence-activation-refusal-notification]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Packet Utilization — Activate a Request Sequence (space-systems/ecss/e7041-activate-a-request-sequence)

Use when the task is the activation request of ECSS-E-ST-70-41C clause
6.21.5.5 -- taking a request sequence the on-board store already holds
and starting it, with the six normative items that clause places on the
decision.

## Domain quick reference

- Loading and activating are different acts on the same object. A
  sequence can sit loaded for weeks without one of its requests ever
  reaching a destination application. Activation is the moment that
  changes, and it is the last cheap moment to refuse.
- An unknown identifier is a refusal, never an empty run. Silently
  succeeding on a sequence nobody holds looks identical on the ground
  to a sequence that ran and did nothing, and those two call for
  opposite responses.
- A sequence still under load has no defensible body. Half a sequence
  is not a shorter sequence; it is a sequence whose remaining requests
  are unknown to everyone including the engine.
- Activation verifies the stored body against its stored checksum.
  After the first request is released the damage is already outside the
  service, so this check is worth nothing done one step later.
- Already-executing is a refusal, not a restart. Interleaving a second
  run of the same sequence puts two step counters on one body and the
  destination application sees requests in an order nobody authored.
- Concurrent capacity belongs to the engine, not to the request. The
  request cannot raise it, and a request already holding a slot must
  not be charged for a second one.
- Every refusal carries the sequence identifier and all of its reasons
  at once. Reporting the first reason only forces the operator to
  rediscover the rest one activation attempt at a time.

## Workflow

1. Normalize the store first and reject it outright on a duplicate
   identifier, a load state that is not one of the three, a loaded
   sequence carrying no requests, an empty one carrying some, or a
   sequence executing while it is not fully loaded.
2. Normalize the engine and reject a capacity below one; an engine
   that can run nothing cannot be the reason an activation was refused.
3. Resolve the requested identifier against the store. An absent
   sequence yields exactly one refusal and the remaining checks are
   not attempted against a record that does not exist.
4. Evaluate the load state, the execution state, the body checksum and
   the free-slot count, collecting every refusal rather than returning
   on the first.
5. On acceptance, mark the sequence executing and set its step counter
   to the first request; on refusal, return the store untouched.
6. Close with the verdict, the refusal codes, the notification the
   ground receives, and the running total after the decision.

## Pitfalls

- Treating an unknown identifier as a no-op. The activation reports
  success, nothing runs, and the operator concludes the sequence was
  empty rather than absent.
- Activating a sequence that is still under load. The engine executes
  the part that arrived and stops, which reads on the ground as a
  sequence that completed.
- Restarting a running sequence instead of refusing. Two step counters
  advance over one body and the destination receives requests in an
  order the author never wrote.
- Verifying the body checksum after the first request is released. The
  check then reports damage that has already left the service.
- Charging an execution slot to a sequence that already holds one. A
  re-activation attempt is refused for capacity rather than for the
  real reason, which is that it is already executing.
- Returning on the first refusal. The operator fixes the load state,
  retries, and discovers the checksum problem on the second attempt
  that could have been reported on the first.
- Mutating the store while collecting refusals. A refused activation
  then leaves a half-started sequence behind that no later request
  knows how to clear.

## Behavior contract (gate 3)

The store and engine normalization, identifier resolution, load-state
and execution-state refusals, body-checksum verification, free-slot
accounting, refusal accumulation, state transition on acceptance and
untouched store on refusal are exercised by the gate 3 contract test:
scripts/test_e7041_activate_a_request_sequence.py against
scripts/e7041_activate_a_request_sequence_logic.py
(stdlib unittest, offline). Run:
python3 scripts/test_e7041_activate_a_request_sequence.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 →