check-pipeline

check-pipeline is a skill for Claude Code from Mexregkan/claude-for-researchers. It costs 106 tokens per session (1,035 once invoked), scanned A, original, MIT.

A compatibility checker for code and its Pipeline documents. A Pipeline document is a written map of a program's steps, symbols, files, and data flow.

In plain words
What is it for?
Use it after editing documented code, before relying on an unfamiliar Pipeline document, or to check every Pipeline document in a project.
Why use it?
It detects documentation drift after code changes, such as renamed functions, shifted notebook cells, removed files, or changed input and output behavior.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 .claude/skills/write-pipeline/dump_code.py "$SCRATCH" "path/to/<file>".

Good fit Use it after editing documented code, before relying on an unfamiliar Pipeline document, or to check every Pipeline document in a project.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Mexregkan/claude-for-researchers
agentmods
npx agentmods add skills/mexregkan/claude-for-researchers/check-pipeline

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/mexregkan/claude-for-researchers/check-pipeline/github.svg)](https://agentmods.dev/skills/mexregkan/claude-for-researchers/check-pipeline)
Your own site
<a href="https://agentmods.dev/skills/mexregkan/claude-for-researchers/check-pipeline"><img src="https://agentmods.dev/badge/skills/mexregkan/claude-for-researchers/check-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 check-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/mexregkan/claude-for-researchers/check-pipeline"><img src="https://agentmods.dev/badge/skills/mexregkan/claude-for-researchers/check-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,035 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00106 $0.01035
Opus 5 $0.00053 $0.00517
Sonnet 5 $0.00021 $0.00207
Haiku 4.5 $0.00011 $0.00103

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

Security

Grade A, and why

check-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 13d 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.

starter/.claude/skills/check-pipeline/SKILL.md · 69 lines

How it starts

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

/check-pipeline — verify a code matches its pipeline doc

Pipeline docs drift when the code changes: a function gets renamed, a cell is inserted (shifting all later cell numbers), a data file is dropped, an I/O contract changes. This skill compares a Pipeline/*.md against the current source and reports every mismatch, so the map stays trustworthy.

When to use

  • Right after editing a documented code.
  • Before relying on a pipeline doc you didn't just write.
  • On request: "is the pipeline still accurate?", "check the codes match the pipelines".
  • Across the board (no argument): check every Pipeline/*.md against its code.

Method

1. Pair each pipeline doc with its code. The doc's header names it ("Code: path/to/"). Read the header, or scan the folder if checking everything.

2. Dump the code to readable text (same helper the writer uses):

python3 .claude/skills/write-pipeline/dump_code.py "$SCRATCH" "path/to/<file>"

3. Extract the doc's checkable claims and verify each against the dump:

  • Symbols (every name in the "Key symbols" table and in prose code-spans): does it still appear in the code? grep -F 'symbolName' the .full.txt (or source). Flag any that are absent (renamed/removed) — the highest-value drift signal.
  • Cell numbers: for each | Symbol | Cell N | row, confirm the symbol's definition is at/near cell N in <base>.outline.txt (±2 tolerates minor insertions; larger shifts = flag "cell numbers stale, N inserted/removed above"). If many rows are off by a constant, an insert/delete happened — report the offset and the pivot cell.
  • Data files: every input/output file the doc says is loaded/written — does the code still read/write it, and does the file exist on disk (ls)?
  • Upstream/downstream links: the "Inputs/outputs" section names producers/consumers — spot-check those still hold (e.g. the doc says stage B consumes symbol X from stage A; grep that X is still built the way the doc claims).
  • Copied-layer coupling: if the doc says "this section is copied verbatim from <other code>", diff the copied definitions against the source — silent divergence there is a real correctness risk, not just doc drift.

Read the full file on GitHub · 69 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. 13d ago First seen · 69 lines · 106 tokens per session scan A 8492551cb278

Subscribe to this mod's changes

check-pipeline is a skill published in the GitHub repository Mexregkan/claude-for-researchers (52 stars, last pushed 9d ago), licensed MIT. It adds 106 tokens to every session and 1,035 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

review-response

Systematic reviewer response workflow: parse comments, classify by severity, develop response strategy, write structured rebuttal. Use when asked to 'write rebuttal', 'respond to reviewers', 'draft review response', or 'handle R&R'.

flonat/flonat-research · 50 tokens

test-iterate-loop

Autonomously diagnose a codebase, apply minimal fixes, and rerun tests until they pass or a real blocker is reached. Use when the user explicitly requests an iterative fix-until-green loop across Python, R, Julia, or HPC workflows.

flonat/flonat-research · 55 tokens

postmortem

Deliver a structured post-mortem after incidents, mistakes, or stuck sessions. Use when the user requests a structured post-mortem after incidents, mistakes, or stuck sessions.

flonat/flonat-research · 40 tokens

code-archaeology

Recover the structure, intent, and lineage of old code, data, or analysis files. Use when inherited or dormant research code must be understood before it is changed. Not for a quality review of already-understood code.

flonat/flonat-research · 50 tokens

devharness

Drive and debug a running app via the devharness MCP server - launch or attach to Chrome and Node.js, set breakpoints and logpoints, inspect call stacks and variables, watch console and network, manage dev servers, replay any earlier tool call by its history index, and record reproduction sequences that verify a fix.…

InDate/devharness · 148 tokens

latex-rescue

Diagnose and fix LaTeX compilation errors. Handles undefined control sequences, missing brackets, math mode violations, package conflicts, undefined references, and environment mismatches.

Calix-L/awesome-latex-skills · 37 tokens