data-pipeline

data-pipeline is a skill for Claude Code from ChrisGVE/localdata-mcp. It costs 30 tokens per session (880 once invoked), scanned A, original, Apache-2.0.

A complete data-analysis workflow that connects to a data source, checks its structure and quality, runs a selected analysis, and produces a report. It supports regression, clustering, forecasting, correlation, and A/B testing.

In plain words
What is it for?
Use it for an end-to-end analysis of a database or file, from connection and quality checks through results and interpretation.
Why use it?
It reduces the need to assemble separate steps for profiling, data checks, analysis, and reporting. It also flags missing or duplicated data that could make results unreliable.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the localdata-mcp plugin — 18 skills, 11 agents, 1 MCP server shipped together

Good fit Use it for an end-to-end analysis of a database or file, from connection and quality checks through results and interpretation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chrisgve/localdata-mcp/data-pipeline
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 ChrisGVE/localdata-mcp --skill data-pipeline
Clone the repo
git clone --depth 1 https://github.com/ChrisGVE/localdata-mcp

Made for: Claude Code.

Or install localdata-mcp, the plugin that ships this one along with the rest of its 18 skills, 11 agents, 1 MCP server.

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 data-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/chrisgve/localdata-mcp/data-pipeline/github.svg)](https://agentmods.dev/skills/chrisgve/localdata-mcp/data-pipeline)
Your own site
<a href="https://agentmods.dev/skills/chrisgve/localdata-mcp/data-pipeline"><img src="https://agentmods.dev/badge/skills/chrisgve/localdata-mcp/data-pipeline/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 data-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/chrisgve/localdata-mcp/data-pipeline"><img src="https://agentmods.dev/badge/skills/chrisgve/localdata-mcp/data-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 880 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.00030 $0.00880
Opus 5 $0.00015 $0.00440
Sonnet 5 $0.00006 $0.00176
Haiku 4.5 $0.00003 $0.00088

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

Security

Grade A, and why

data-pipeline 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 12d 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.

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/workflow/data-pipeline/SKILL.md · 47 lines

How it starts

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

Data Pipeline

Run a complete analysis workflow from connection through profiling, analysis, and structured reporting.

Steps

  1. Parse arguments. Extract the source path and analysis type from $ARGUMENTS. The first argument is the file path or connection string. The second argument is the analysis type: one of regression, clustering, forecast, correlation, or ab-test.

  2. Connect and profile. Call connect_database with the source path. Then call describe_database to get the schema and get_data_quality_report to assess data quality. Summarize table structure, row counts, and quality scores.

  3. Assess data readiness. Review the quality report. If critical issues exist (more than 30% nulls in key columns, severe duplicates), note them as caveats. Identify the columns relevant to the requested analysis type.

  4. Route to the appropriate analysis. Based on the analysis type argument:

    regression -- Call analyze_regression with the target column and feature columns. Then call execute_query if needed to inspect residuals. Report model coefficients, R-squared, and feature importance.

    clustering -- Call analyze_clusters with numeric feature columns and algorithm "kmeans". Try k=2 through k=5 and compare silhouette scores. Call reduce_dimensions with PCA for a 2D summary. Report cluster profiles and quality.

    forecast -- Call analyze_time_series to decompose the series and test stationarity. Then call forecast_time_series with the target column and desired horizon. Report trend, seasonality, and forecast values with confidence intervals.

    correlation -- Call analyze_hypothesis_test with test type "correlation" for each numeric column pair. Call analyze_effect_sizes for the strongest relationships. Report a ranked correlation matrix with significance levels.

    ab-test -- Call analyze_ab_test with the metric and group columns. Call analyze_effect_sizes to quantify practical significance. Report group comparison, p-value, effect size, and ship/iterate/no-ship recommendation.

Read the full file on GitHub · 47 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. 12d ago First seen · 47 lines · 30 tokens per session scan A 6ba8c4a277aa

Subscribe to this mod's changes

data-pipeline is a skill published in the GitHub repository ChrisGVE/localdata-mcp (4 stars, last pushed 28d ago), licensed Apache-2.0. It adds 30 tokens to every session and 880 once invoked, about $0.0002 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.