atai-newton-omega-model-data-prep

atai-newton-omega-model-data-prep is a skill for Claude Code, Codex from archetypeai/agent-skills. It costs 225 tokens per session (2,779 once invoked), scanned A, original, Apache-2.0.

A preparation pipeline for multivariate time-series data, meaning measurements from several sensors recorded over time. It cleans timestamps and gaps, splits data, and prepares features for later models.

In plain words
What is it for?
Preparing sensor CSVs, creating continuous time blocks, imputing gaps, making train/test splits, and combining sensor embeddings into classifier features.
Why use it?
It helps avoid broken input and misleading results caused by missing values, irregular timing, or mixing future data into training.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Preparing sensor CSVs, creating continuous time blocks, imputing gaps, making train/test splits, and combining sensor embeddings into classifier features.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/archetypeai/agent-skills/atai-newton-omega-model-data-prep
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add archetypeai/agent-skills --skill atai-newton-omega-model-data-prep
Clone the repo
git clone --depth 1 https://github.com/archetypeai/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for atai-newton-omega-model-data-prep

README.md
[![agentmods](https://agentmods.dev/badge/skills/archetypeai/agent-skills/atai-newton-omega-model-data-prep/github.svg)](https://agentmods.dev/skills/archetypeai/agent-skills/atai-newton-omega-model-data-prep)
Your own site
<a href="https://agentmods.dev/skills/archetypeai/agent-skills/atai-newton-omega-model-data-prep"><img src="https://agentmods.dev/badge/skills/archetypeai/agent-skills/atai-newton-omega-model-data-prep/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for atai-newton-omega-model-data-prep

Your own site · 80×15
<a href="https://agentmods.dev/skills/archetypeai/agent-skills/atai-newton-omega-model-data-prep"><img src="https://agentmods.dev/badge/skills/archetypeai/agent-skills/atai-newton-omega-model-data-prep.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 225 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,779 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00225 $0.02779
Opus 5 $0.00112 $0.01389
Sonnet 5 $0.00045 $0.00556
Haiku 4.5 $0.00022 $0.00278

Measured 11d ago against content hash 05b5f4ecf146, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

atai-newton-omega-model-data-prep scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 8 executable files (references/data_preprocessor.py, references/data_splitter.py, references/feature_preparer.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/atai-newton-omega-model-data-prep/SKILL.md · 200 lines

How it starts

The opening of the file, as written. The whole thing — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Newton Data Prep — Clean → Split → Featurize

A pre-modeling pipeline for time-series sensor data. Three composable building blocks that take a raw multivariate dataframe and hand back the (X, y, metadata) arrays a downstream KNN / Isolation Forest classifier expects.

Origin. The three vendored scripts originated from work by Lucas (Solutions Engineering) and have been used end-to-end in real prep pipelines. The repo copy is the source of truth — ping Lucas if you need to pull in a newer revision.

When to Apply

  • User has raw multivariate sensor CSVs (1+ sensors, irregular timestamps, NaN gaps) and is about to embed them with atai-newton-omega-model, and needs to clean the data first.
  • User asks "should I drop rows with NaNs?" / "how do I handle gaps?" / "what's a good train/test split for time-series?"
  • User's classifier is suspiciously good or suspiciously bad and you suspect temporal leakage — DataSplitter(mode='oot') is the fix.
  • User has per-sensor embeddings (from the Omega model) and needs to fold them into a single feature matrix for KNN — that's FeaturePreparer.
  • User wants the "joint state" pattern described in atai-newton-omega-model in code form.

Use the external omega-1-4-preflight checks instead when: you want a read-only go/no-go gate before committing to a run. Preflight makes no changes to the data. This skill makes changes — block-splitting, imputation, dimensionality reduction. The two are complementary: preflight tells you whether the dataset is salvageable; this skill cleans it up.

Do not use this skill when:

  • The task is video, image, or text (use atai-newton-fusion-model).
  • Data is already pristine (regular sampling, no NaNs, no leakage risk) — the pipeline becomes a no-op and you can hand the dataframe directly to the downstream skill.

Read the full file on GitHub · 200 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 200 lines · 225 tokens per session scan A 05b5f4ecf146

Subscribe to this mod's changes

atai-newton-omega-model-data-prep is a skill published in the GitHub repository archetypeai/agent-skills (5 stars, last pushed 21d ago), licensed Apache-2.0. It adds 225 tokens to every session and 2,779 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

tao-finetune-nv-tesseract-ad-diffusion

NV-Tesseract AD Diffusion — diffusion-based anomaly detection and fine-tuning for multivariate time series. Use when the user asks to "fine-tune NV-Tesseract", "run AD diffusion inference", "detect anomalies with diffusion", "time series anomaly detection", "finetune ad-diffusion", "use…

NVIDIA-TAO/tao-skill-bank · 148 tokens

tao-finetune-nv-tesseract-forecasting

NV-Tesseract Forecasting — transformer-based multivariate time series forecasting with DARR (context-enhanced kNN retrieval), interpretability, and fine-tuning. Use when the user asks to "forecast with NV-Tesseract", "run forecasting inference", "use performforecasting", "DARR mode", "context-enhanced forecasting"…

NVIDIA-TAO/tao-skill-bank · 144 tokens

nixtla-model-benchmarker

Generate benchmarking pipelines to compare forecasting models and summarize accuracy/speed trade-offs. Use when evaluating TimeGPT vs StatsForecast/MLForecast/NeuralForecast on a dataset. Trigger with "benchmark models", "compare TimeGPT vs StatsForecast", or "model selection".

jeremylongshore/plugins-nixtla · 61 tokens

nixtla-research-assistant

Research and summarize Nixtla ecosystem updates and time-series forecasting content from the web and GitHub. Use when gathering release notes, recent changes, or best-practice references. Trigger with "Nixtla updates", "what's new with TimeGPT", or "find time-series papers".

jeremylongshore/plugins-nixtla · 66 tokens

timegpt-pipeline-builder

Generate production-ready TimeGPT forecasting pipeline code from requirements. Use when scaffolding a pipeline with validation, logging, visualization, and repeatable runs. Trigger with "create TimeGPT pipeline", "build TimeGPT integration", or "generate forecast code".

jeremylongshore/plugins-nixtla · 56 tokens

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens