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.
npx skills add etoyama/insight-blueprint --skill data-lineagegit clone --depth 1 https://github.com/etoyama/insight-blueprintWrote 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.
[](https://agentmods.dev/skills/etoyama/insight-blueprint/data-lineage)<a href="https://agentmods.dev/skills/etoyama/insight-blueprint/data-lineage"><img src="https://agentmods.dev/badge/skills/etoyama/insight-blueprint/data-lineage/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.
<a href="https://agentmods.dev/skills/etoyama/insight-blueprint/data-lineage"><img src="https://agentmods.dev/badge/skills/etoyama/insight-blueprint/data-lineage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00083 | $0.01307 |
| Opus 5 | $0.00042 | $0.00654 |
| Sonnet 5 | $0.00017 | $0.00261 |
| Haiku 4.5 | $0.00008 | $0.00131 |
Grade A, and why
data-lineage 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/data-lineage — Pipeline Lineage Tracker
Track DataFrame transformation pipelines and visualize row count changes
using insight_blueprint.lineage.
When to Use
- Setting up lineage tracking in a new notebook
- Exporting Mermaid diagrams from tracked pipelines
- Refactoring pipelines based on lineage analysis
When NOT to Use
- Creating or managing analysis designs (-> /analysis-design)
- Recording reasoning steps (-> /analysis-journal)
- Registering data sources (-> /catalog-register)
Prerequisites Check
Step 0: Python Package Check (MUST run before Step 1)
- Run:
python -c "from insight_blueprint.lineage import tracked_pipe; print('OK')" - If output is "OK": proceed to Step 1
- If ImportError or command fails:
- Ask the user: "data-lineage の tracked_pipe を使うには insight-blueprint Python パッケージが必要です。
uv add insight-blueprintを実行しますか?(分析パイプラインの透明性追跡に推奨)" - If user approves: run
uv add insight-blueprint, then re-check import - If user declines: inform user that tracked_pipe features are unavailable, continue with MCP tools only (export/Mermaid diagram generation via MCP is still available)
- If install fails: show error, suggest manual install with
pip install insight-blueprint
- Ask the user: "data-lineage の tracked_pipe を使うには insight-blueprint Python パッケージが必要です。
Note: MCP tools (Mermaid export, lineage graph generation) work without the Python package. Only
tracked_pipein user notebooks/scripts requires the package.
Workflow
Mode A: Setup — /data-lineage <design_id> setup
Help the user add tracked_pipe to an existing notebook.
Workflow:
- Confirm the target AnalysisDesign (if design_id provided, call
get_analysis_design) - Locate the target notebook/script (ask the user if unclear)
- Read the notebook and identify DataFrame transformation steps (
.pipe(), filter, merge, join, dropna, assign, query, etc.) - For each transformation, suggest wrapping with
tracked_pipe:
from insight_blueprint.lineage import LineageSession, tracked_pipe
session = LineageSession(name="<pipeline_name>", design_id="<design_id>")
# Before:
df = df.dropna(subset=["price"])
# After:
df = df.pipe(tracked_pipe(
lambda df: df.dropna(subset=["price"]),
reason="price 欠損行を除外",
session=session,
))
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.
- 9d ago First seen · 149 lines · 83 tokens per session scan A 901c17e56168
data-lineage is a skill published in the GitHub repository etoyama/insight-blueprint (0 stars, last pushed 17d ago), licensed MIT. It adds 83 tokens to every session and 1,307 once invoked, about $0.0004 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.
Other skills, from other repositories
safe-email-operations
Use email through the bundled mcp-email-server MCP server, diagnose bounded non-secret state, and hand account or credential setup to a user-operated CLI or authenticated local UI.
rival-search-mcp
Deterministic deep research via RivalSearchMCP. 9 tools: 5-engine web search (DuckDuckGo/Bing/Yahoo/Mojeek/Wikipedia), 9-platform social search (Reddit/HN/StackOverflow/Dev.to/Medium/ProductHunt/Bluesky/Lobste.rs/Lemmy), 5-source news (Google/Bing/Guardian/GDELT/DDG), 5 academic DBs…
mcp-musescore
Use the ghchen99/mcp-musescore MCP server to inspect, navigate, compose, and edit an open MuseScore score through its QML WebSocket plugin.
naver-search-mcp
Use for Korean web search, Naver News, Blog, Cafe, Image, Knowledge iN, Encyclopedia, Local search, and Naver DataLab search-trend and shopping-insight analysis through the published npm MCP server.
ocr-expert
You are connected to OCR-MCP, a FastMCP 3.4+ server with 14 OCR backends. This skill teaches you how to use it effectively.
skills
Generate a complete SVG file from a natural language description using SEP-1577 multi-step sampling.