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

Q7050 Data Recording And Trending

ASecurity

Analyze a recorded series of cleanliness monitoring results against its alert and action levels under ECSS-Q-ST-70-50C. Use when a monitoring location holds a time-ordered record, the programme has set an action limit with a derived alert level, and the question is whether the location is drifting toward that limit rather than merely conforming today. Computes the record mean and sample spread, fits a least-squares drift, projects the days remaining until the fit reaches the action limit, cou...

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 q7050-data-recording-and-trending --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Q7050 Data Recording And Trending?

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

Security grade badge for Q7050 Data Recording And Trending
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-q7050-data-recording-and-trending/badge)](https://www.skillsdirectory.com/skills/ashfordeou-q7050-data-recording-and-trending)

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

Download with Pro
Files
SKILL.md
---
name: q7050-data-recording-and-trending
description: "Analyze a recorded series of cleanliness monitoring results against its alert and action levels under ECSS-Q-ST-70-50C. Use when a monitoring location holds a time-ordered record, the programme has set an action limit with a derived alert level, and the question is whether the location is drifting toward that limit rather than merely conforming today. Computes the record mean and sample spread, fits a least-squares drift, projects the days remaining until the fit reaches the action limit, counts the trailing run of results above the alert level, and reports a record whose points are unordered, too sparse to trend, or separated by a sampling gap. Trigger: ecss, q-st-70-50, particle-monitoring-trend, alert-and-action-level, least-squares-drift-slope, days-to-action-limit, consecutive-alert-run, monitoring-record-gap."
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, q-st-70-cleanliness-monitoring-scope, q7050-data-recording-and-trending, particle-monitoring-trend, alert-and-action-level, least-squares-drift-slope, days-to-action-limit, consecutive-alert-run]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Cleanliness Monitoring — Data Recording and Trending (space-systems/ecss/q7050-data-recording-and-trending)

Use when the task is the recording and trending step of ECSS-Q-ST-70-50C
cleanliness monitoring — turning a location's accumulated results into a
statement about where it is heading, not only whether today's sample
conformed.

## Domain quick reference

- Conformance today and control over time are different questions. A
  record every point of which conforms can still be walking steadily
  toward its action limit, and the whole reason the results are recorded
  rather than merely checked is to see that before it arrives.
- The alert level is derived from the action limit, not set beside it.
  Deriving it by a stated fraction keeps the alert below the action by
  construction, so a programme that changes the action limit cannot
  leave an alert level stranded above it.
- A trend needs a third point. Two points define a line exactly and
  therefore describe scatter and drift identically; the fit is only
  informative once there is a residual it could have failed to explain.
- The projection that matters is from the last observation, not from
  the fitted intercept. It answers how long the location has at its
  current drift, and it is meaningless when the drift is flat or
  falling, where the honest output is no projection rather than a large
  positive number.
- A run of consecutive results above the alert level is a trigger in its
  own right. Several points in a row above the alert say the process
  moved even when no single point reached the action limit, and a run
  broken by one result exactly at the alert level is a broken run.
- A record with a sampling gap wider than the programme's interval is
  not a denser record with missing rows; the drift through the gap is
  unobserved, and the fit spans it as if it were sampled.

## Workflow

1. Validate the record: strictly increasing days, non-negative results,
   at least two points. An out-of-order or repeated timestamp is a data
   defect, not something to sort away silently.
2. Derive the alert level from the action limit by the stated fraction.
3. Form the record statistics: mean, sample spread, extremes and span.
4. Categorize every point as conforming, alert or action, absorbing an
   exact equality at either boundary with a named tolerance.
5. Fit a least-squares line over elapsed days and read the drift slope
   and the residual; refuse to fit a record with fewer than three
   points and say so as a finding.
6. Project the days from the last observation to the action limit, and
   report it only when the drift rises.
7. Count the trailing run above the alert level, list the sampling gaps
   when an interval is stated, and report every finding alongside the
   trend rather than collapsing them to a single verdict.

## Pitfalls

- Reporting the mean of a drifting record. The mean of a location that
  doubled over the campaign describes no week of it, and it hides the
  one property the record was kept to expose.
- Projecting from a flat or falling fit. Dividing by a slope near zero
  produces an enormous or negative time-to-limit that reads as a
  comfortable margin; no projection is the correct output there.
- Fitting across a sampling gap as if it were sampled. The drift inside
  the gap is unobserved, and a fit through it borrows confidence the
  record does not have.
- Treating an alert run as merely several conforming points. The run is
  its own trigger, and waiting for a single point past the action limit
  discards the warning the alert level exists to give.
- Nudging the alert level up so a run clears. The alert is derived from
  the action limit; changing the derivation to clear a run removes the
  only margin the location had.

## Behavior contract (gate 3)

The record validation, alert derivation, statistics, per-point
categorization, least-squares drift, time-to-limit projection, trailing
alert run and gap detection are exercised by the gate 3 contract test:
scripts/test_q7050_data_recording_and_trending.py against
scripts/q7050_data_recording_and_trending_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_q7050_data_recording_and_trending.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 →