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

E4008 Template Argument Requirements

ASecurity

Verify a template argument list against the parameters its catalogue element declares, under ECSS-E-ST-40-08 clause 5.2.1.2. Use when the task is binding arguments before instantiation: confirming each argument names a declared parameter, that no parameter is bound twice, that every mandatory parameter is supplied and every unsupplied optional carries a default, that positional arguments run contiguously ahead of the named ones and stay inside the parameter list, that each value matches its d...

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 e4008-template-argument-requirements --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of E4008 Template Argument Requirements?

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

Security grade badge for E4008 Template Argument Requirements
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-e4008-template-argument-requirements/badge)](https://www.skillsdirectory.com/skills/ashfordeou-e4008-template-argument-requirements)

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

Download with Pro
Files
SKILL.md
---
name: e4008-template-argument-requirements
description: "Verify a template argument list against the parameters its catalogue element declares, under ECSS-E-ST-40-08 clause 5.2.1.2. Use when the task is binding arguments before instantiation: confirming each argument names a declared parameter, that no parameter is bound twice, that every mandatory parameter is supplied and every unsupplied optional carries a default, that positional arguments run contiguously ahead of the named ones and stay inside the parameter list, that each value matches its declared type and its inclusive constraint, and that a reference value resolves to an element the configuration holds. Trigger: ecss, e-st-40-08, template-argument-binding, declared-parameter-match, mandatory-parameter-coverage, positional-argument-ordering, template-argument-type-conformance, template-argument-constraint-range, template-reference-resolution."
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-40-08-simulation-modelling-scope, e4008-template-argument-requirements, template-argument-binding, declared-parameter-match, positional-argument-ordering, template-argument-type-conformance, template-reference-resolution]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Simulation Modelling Platform — Template Argument Requirements (space-systems/ecss/e4008-template-argument-requirements)

Use when the task is the argument-binding check of ECSS-E-ST-40-08
clause 5.2.1.2 -- deciding whether the argument list a configuration
supplies to a parameterised catalogue element can actually be bound to
that element's declared parameters, and which of the nine obligations
it misses when it cannot.

## Domain quick reference

- Binding is a two-sided walk. The argument list is traversed to find
  arguments with no parameter, and the parameter table is traversed to
  find parameters with no argument. Running only the first direction
  passes an argument list that quietly omits a mandatory parameter.
- Positional and named arguments are graded by two separate items. The
  ordering item asks that positional arguments are contiguous from the
  first parameter and all sit ahead of the first named one; the range
  item asks that no position reaches past the declared list. A list can
  be ordered correctly and still overrun, and the repairs differ.
- Mandatory and optional parameters carry opposite obligations. A
  mandatory parameter may not declare a default at all, and an optional
  one left unsupplied must have a default to fall back on; an optional
  parameter with neither an argument nor a default leaves the
  instantiation under-determined.
- Type conformance is checked before the constraint. A value of the
  wrong type cannot be meaningfully compared with a numeric bound, so
  the constraint item is left alone once the type item has failed --
  otherwise one defect is reported twice and inflates the finding count.
- Booleans are not integers here. Accepting a boolean where an integer
  parameter was declared is the cheapest way to let a mis-wired
  argument through, so the type test excludes it explicitly.
- Numeric bounds are inclusive. A value sitting exactly on a declared
  minimum or maximum is compliant, and grading it with a strict
  comparison turns a legal configuration red.

## Workflow

1. Build the parameter table once, refusing a template that declares a
   parameter twice, names an unsupported type, or marks a parameter
   mandatory while also giving it a default.
2. Decide the form of each argument -- positional or named -- refusing
   an argument that gives both, gives neither, or carries no value.
3. Walk the arguments in order, tracking the next expected position and
   whether a named argument has already been seen, so an ordering
   breach is attributed to the argument that caused it.
4. Bind each argument to its parameter, recording a second binding as a
   duplicate rather than letting the later value win silently.
5. Check the value type, then the declared constraint, then reference
   resolution, stopping at the first of the three that fails for that
   argument.
6. Walk the parameter table for anything still unbound: mandatory
   parameters become findings, optional ones take their default, and
   optional ones without a default become findings of their own.
7. Report the resolved argument map, the nine per-item verdicts and the
   satisfied count so a near-miss is distinguishable from a wholesale
   mis-binding.

## Pitfalls

- Treating a missing argument and an unknown argument as one defect.
  They are separate items with separate repairs, and an argument list
  can carry both at once.
- Letting a later argument overwrite an earlier binding. The duplicate
  is the finding; silently taking the last value makes the resolved map
  depend on document order.
- Grading a value against a numeric bound before checking its type. A
  string compared with a minimum raises or coerces, and either way the
  reported defect is the wrong one.
- Using strict inequalities on the declared bounds. The bounds are
  inclusive, and a value that should sit exactly on one will land a few
  representation units either side of it in floating point.
- Accepting a boolean for an integer parameter because it compares
  equal. The declared type is the contract, not the comparison.
- Assuming an unsupplied optional is harmless. Without a default the
  instantiation has no value to use, which is a finding, not a silence.

## Behavior contract (gate 3)

Parameter-table construction, argument form detection, positional
ordering and range, duplicate binding, type conformance, inclusive
constraint checking, reference resolution, default fill-in and the
nine-item roll-up are exercised by the gate 3 contract test:
scripts/test_e4008_template_argument_requirements.py against
scripts/e4008_template_argument_requirements_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_e4008_template_argument_requirements.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 →