scada-timeseries

scada-timeseries is a skill for Claude Code from kucherenko/petropowers. It costs 26 tokens per session (4,862 once invoked), scanned A, original, MIT.

A guide for processing live and historical industrial sensor data as time series, including drilling, production, and pipeline measurements. It covers WITSML and PRODML, XML-based formats used for oil and gas data.

In plain words
What is it for?
Use it to work with pressure, temperature, flow, speed, drilling weight, torque, and mud measurements, including anomaly detection and quality control.
Why use it?
It provides consistent ways to parse sensor streams, check data quality, and identify unusual readings.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the petropowers plugin — 26 skills, 3 commands, 1 agent, 2 hooks shipped together

Good fit Use it to work with pressure, temperature, flow, speed, drilling weight, torque, and mud measurements, including anomaly detection and quality control.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kucherenko/petropowers/scada-timeseries
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 kucherenko/petropowers --skill scada-timeseries
Clone the repo
git clone --depth 1 https://github.com/kucherenko/petropowers

Made for: Claude Code.

Or install petropowers, the plugin that ships this one along with the rest of its 26 skills, 3 commands, 1 agent, 2 hooks.

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 scada-timeseries

README.md
[![agentmods](https://agentmods.dev/badge/skills/kucherenko/petropowers/scada-timeseries/github.svg)](https://agentmods.dev/skills/kucherenko/petropowers/scada-timeseries)
Your own site
<a href="https://agentmods.dev/skills/kucherenko/petropowers/scada-timeseries"><img src="https://agentmods.dev/badge/skills/kucherenko/petropowers/scada-timeseries/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 scada-timeseries

Your own site · 80×15
<a href="https://agentmods.dev/skills/kucherenko/petropowers/scada-timeseries"><img src="https://agentmods.dev/badge/skills/kucherenko/petropowers/scada-timeseries.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,862 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00026 $0.04862
Opus 5 $0.00013 $0.02431
Sonnet 5 $0.00005 $0.00972
Haiku 4.5 $0.00003 $0.00486

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

Security

Grade A, and why

scada-timeseries scanned grade A with 1 finding 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 10d ago.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

response = requests.post(
skills/oil-gas-cross-cutting/scada-timeseries/SKILL.md · 651 lines

How it starts

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

Skill: SCADA & Time-Series

Handle real-time SCADA data, WITSML/PRODML streams, and time-series analysis.

Purpose

Process real-time sensor data across drilling, production, and pipeline operations. Provides patterns for handling time-series data, anomaly detection, and quality control.

Data Standards

WITSML (Wellsite Information Transfer Standard Markup Language)

  • XML-based standard for drilling and completion data
  • Managed by Energistics consortium
  • Real-time drilling parameters, mud logs, trajectory data

PRODML (Production Markup Language)

  • XML-based standard for production data
  • Production rates, well tests, allocations
  • Real-time and historical data

Common Data Types

Parameter Unit Typical Range
Pressure psi, bar 0-15000
Temperature °F, °C 50-400
Flow rate bpd, m³/d 0-50000
RPM rev/min 0-200
WOB (Weight on Bit) klbs 0-80
Torque kft-lbs 0-50
Mud weight ppg 8-20

Dependencies

pip install pandas numpy scipy

Capabilities

1. Parse Time-Series Data

import pandas as pd
import numpy as np
from datetime import datetime, timedelta

# Simulated SCADA data
timestamps = pd.date_range(start='2024-01-01', periods=1000, freq='1min')

data = pd.DataFrame({
    'timestamp': timestamps,
    'pressure_psi': np.random.normal(5000, 100, 1000),
    'temp_f': np.random.normal(180, 5, 1000),
    'flow_bpd': np.random.normal(10000, 200, 1000),
})

data.set_index('timestamp', inplace=True)
print(data.head())

2. WITSML Parsing

import xml.etree.ElementTree as ET
import pandas as pd

# Parse WITSML document (simplified)
def parse_witsml_log(xml_content):
    root = ET.fromstring(xml_content)
    
    # Namespace handling
    ns = {'w': 'http://www.witsml.org/schemas/131'}
    
    data_points = []
    for point in root.findall('.//w:mnemonic', ns):
        data_points.append({
            'mnemonic': point.get('mnemonic'),
            'value': point.text,
            'unit': point.get('unitUom'),
        })
    
    return pd.DataFrame(data_points)

# Example WITSML content
witsml_example = '''<?xml version="1.0"?>
<witsml:logs xmlns:witsml="http://www.witsml.org/schemas/131">
    <witsml:mnemonic mnemonic="PRESS" unitUom="psi">5123.5</witsml:mnemonic>
</witsml:logs>'''

# Parse
df = parse_witsml_log(witsml_example)
print(df)

Read the full file on GitHub · 651 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. 10d ago First seen · 651 lines · 26 tokens per session scan A ab01a88976ed

Subscribe to this mod's changes

scada-timeseries is a skill published in the GitHub repository kucherenko/petropowers (11 stars, last pushed 5mo ago), licensed MIT. It adds 26 tokens to every session and 4,862 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

jetson-diagnostic

Read-only Jetson health snapshot for identity, memory, GPU, thermal, power, storage, services, and top processes.

NVIDIA/skills · 30 tokens

doca-socket-relay

Use this skill when the operator is driving the DOCA Socket Relay to bridge a socket-oriented host application onto a BlueField DPU peer without rewriting it — picking the deployment shape (in-process, sidecar, or BlueField service container), configuring the host-side socket and the DPU-side forwarding endpoint…

NVIDIA/skills · 236 tokens

offensive-z-wave

Z-Wave attack methodology — sniffing with Z-Force / EZ-Wave / RTL-SDR + ZniffMobile, S0 (legacy) network-key derivation flaw and key reuse, S2 (modern) ECDH commissioning analysis, replay/injection on unauthenticated nodes, default-key brute-force on test deployments, and home-automation hub pivots. Use when targeting…

SnailSploit/Claude-Red · 113 tokens

hsb-flash

Flash the FPGA on an HSB board connected to an NVIDIA devkit. Supports HSB Lattice boards (FPGA versions 2407, 2412, 2507, 2510) and Leopard Imaging VB1940 "all-in-one" cameras (FPGA versions 2507, 2510). Uses release-specific YAML manifests and board-type-specific program commands. Lattice and VB1940 commands must…

NVIDIA/skills · 94 tokens

jetson-validate-image

Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.

NVIDIA/skills · 50 tokens