ingest-pipeline

ingest-pipeline is a skill for Claude Code from odere-pro/claude-wiki-pages-plugin. It costs 104 tokens per session (4,349 once invoked), scanned A, original, MIT.

A reference guide for a wiki-ingestion process, including how to plan a topic tree, ask for approval, optionally restructure pages, and write the final report.

In plain words
What is it for?
Use it when importing source material into the project's wiki, choosing page topics and links, running the optional optimization step, or preparing the process report.
Why use it?
It keeps the ingestion process consistent and makes destructive restructuring require explicit approval before pages are changed.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the claude-wiki-pages plugin — 26 skills, 5 commands, 17 agents, 7 hooks shipped together

Good fit Use it when importing source material into the project's wiki, choosing page topics and links, running the optional optimization step, or preparing the process report.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add odere-pro/claude-wiki-pages-plugin
Claude Code
/plugin install claude-wiki-pages

Made for: Claude Code.

Or install claude-wiki-pages, the plugin that ships this one along with the rest of its 26 skills, 5 commands, 17 agents, 7 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 ingest-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/odere-pro/claude-wiki-pages-plugin/ingest-pipeline/github.svg)](https://agentmods.dev/skills/odere-pro/claude-wiki-pages-plugin/ingest-pipeline)
Your own site
<a href="https://agentmods.dev/skills/odere-pro/claude-wiki-pages-plugin/ingest-pipeline"><img src="https://agentmods.dev/badge/skills/odere-pro/claude-wiki-pages-plugin/ingest-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 ingest-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/odere-pro/claude-wiki-pages-plugin/ingest-pipeline"><img src="https://agentmods.dev/badge/skills/odere-pro/claude-wiki-pages-plugin/ingest-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,349 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.00104 $0.04349
Opus 5 $0.00052 $0.02174
Sonnet 5 $0.00021 $0.00870
Haiku 4.5 $0.00010 $0.00435

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

Security

Grade A, and why

ingest-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 11d 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/ingest-pipeline/SKILL.md · 426 lines

How it starts

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

Wiki Ingest Pipeline — Plan & Optimize Procedures (reference)

The Step 1.4 topic-tree plan + confirmation gate, the Step 3 optimize (destructive restructure) procedure, and the final-report template for claude-wiki-pages-ingest-agent. The agent reads this skill at the start of Step 1.4 and Step 3, and when composing the final report. Schema authority remains vault/CLAUDE.md; the contract, preflight, page-write steps, auto-heal delegation, synthesis, model selection, and hard rules live in the agent body. Every page the pipeline produces follows the house voice — see skills/voice: a one-line plain-language definition first, then typed content in the engineer register, no marketing inside the vault.

Step 1.4 — Plan the topic tree (externalize, then confirm)

The topic-tree shape is the most consequential decision of the run. Errors here cascade into every page's parent: and path:, and into the Obsidian graph structure. Externalize the plan so the user can review or edit before any page is written.

PDF sources (source_format: pdf): when a source is a PDF under raw/assets/, apply the PDF ingest path documented in skills/ingest/SKILL.md — "PDF sources (I4): source_format: pdf" — before planning the topic tree. The required fields (source_format: pdf, attachment_path, extracted_at) must appear in the source note, and the PDF remains immutable in raw/assets/ throughout. Classification and dedup proceed identically to text sources.

1.4a — Write the plan

Write to vault/output/_pipeline-plan-YYYY-MM-DD.md (git-ignored; no frontmatter required). Structure:

# Ingest plan — YYYY-MM-DD

## Sources in this run
- <source-1.md> — N entities, M concepts
- <source-2.md> — N entities, M concepts
...

## Entities and concepts extracted

> For each extracted item, apply the **classification checklist** in
> `skills/ingest/SKILL.md` — assign exactly one `type` (and, for entities,
> one `entity_type`) drawn from `ontology-profile-v1` in `vault/CLAUDE.md`.
> Never invent out-of-enum values; flag ambiguous cases for human review.
>
> Also apply the **two-pass alias-aware dedup** from `skills/ingest/SKILL.md`
> before marking any item as `new`. Pass 1 = exact title match; pass 2 =
> alias-aware match against existing pages' `aliases` fields. Mark items as
> `existing` if either pass matches, and plan an additive extension (never a
> duplicate). See "Dedup: two-pass existence check (I2)" in
> `skills/ingest/SKILL.md` for the full procedure.

- [<new|existing>] <Entity/Concept name> — `type: <type>` (entity: `entity_type: <value>`) — from <source(s)>
...

## Proposed topic tree

wiki/<existing-or-new-topic>/
├── <topic>.md                   [new | existing]   # folder note (legacy _index.md if already present)
├── <page>.md                    [new | update]
├── <subtopic>/                  [new | existing]
│   ├── <subtopic>.md            [new | existing]   # folder note
│   └── <page>.md                [new | update]
...

## Folder size check
- <topic>/: N direct children (target ≤ 12)
- <topic>/<subtopic>/: N direct children (target ≤ 12)

## Graph color groups needed
- <new-top-level-topic> → next palette color
- (or: none)

## Open decisions
- <any ambiguities the model resolved — e.g., "placed X under Y instead of Z because …">

Read the full file on GitHub · 426 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 · 426 lines · 104 tokens per session scan A 6512e73f5f5d

Subscribe to this mod's changes

ingest-pipeline is a skill published in the GitHub repository odere-pro/claude-wiki-pages-plugin (1 stars, last pushed 2mo ago), licensed MIT. It adds 104 tokens to every session and 4,349 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-31.