ingest

ingest is a skill for Claude Code from NatsuFox/Tapestry. It costs 45 tokens per session (1,314 once invoked), scanned A, original, MIT.

A web-crawling and scraping tool that turns one or more URLs into stored, reusable records. It captures the source, standardizes the result, and saves it to a knowledge base.

In plain words
What is it for?
Use it to archive linked web pages, collect raw online research, or prepare website content for later organization and analysis.
Why use it?
It removes the need to build separate fetching, parsing, and storage steps for every website. The saved source artifacts can then be reused by other workflows.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: $skill-name invocation.

Part of the Tapestry plugin — 9 skills shipped together

Good fit Use it to archive linked web pages, collect raw online research, or prepare website content for later organization and analysis.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/natsufox/tapestry/ingest
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 NatsuFox/Tapestry --skill ingest
Clone the repo
git clone --depth 1 https://github.com/NatsuFox/Tapestry

Made for: Claude Code.

Or install Tapestry, the plugin that ships this one along with the rest of its 9 skills.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/natsufox/tapestry/ingest"><img src="https://agentmods.dev/badge/skills/natsufox/tapestry/ingest.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,314 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.00045 $0.01314
Opus 5 $0.00023 $0.00657
Sonnet 5 $0.00009 $0.00263
Haiku 4.5 $0.00005 $0.00131

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

Security

Grade A, and why

ingest 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.

The scan reads SKILL.md. This mod also ships 1 executable file (_scripts/run.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/tapestry/ingest/SKILL.md · 123 lines

How it starts

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

Tapestry Ingest

When to use this skill

Use this skill when:

  • A user shares URLs or links to web content
  • You need to archive or ingest web content into the local knowledge base
  • Raw source artifacts need to be normalized before feed-building or synthesis
  • The user asks to "save", "archive", "ingest", or "capture" web content
  • You need deterministic crawling and scraping before model-based analysis

Overview

Turn a URL into a repeatable deterministic three-step chain:

  1. capture the source
  2. normalize it into a feed entry
  3. store the resulting content in the local knowledge base

Use the bundled runner instead of hand-rolling fetch and parse steps in the conversation. This skill is the primitive acquisition layer: crawl the source, normalize the result, and persist durable artifacts. It does not perform model-based synthesis. The runner auto-selects a crawler from the code-defined implementations under _src/crawlers/.

Workflow

  1. Collect every relevant URL from the current user request.
  2. Run the ingest runner. The script is at ingest/_scripts/run.py relative to the tapestry skill root (i.e., $skill_root/ingest/_scripts/run.py). Always run it from the tapestry skill root:
python ingest/_scripts/run.py \
  "$ARGUMENTS"
  1. Pass --text when the surrounding request text contains useful context worth preserving alongside the URLs.
  2. Use --list-crawlers if you need to inspect the currently available crawler ids.
  3. Use --crawler <id> only when the user explicitly wants to force a particular crawler instead of automatic matching.
  4. Review the command output for the created feed, note, and handoff-ready artifacts.
  5. Synthesis behavior based on mode:
    • "auto": Agent evaluates note accumulation and decides whether to invoke $tapestry-synthesis. The decision should be based on:
      • Number of unmerged notes accumulated
      • Content relevance and importance
      • Whether immediate merge provides value vs. waiting for more content
      • System load and performance considerations
    • "deterministic": Automatically invoke $tapestry-synthesis after every successful ingest
    • "manual": Only invoke $tapestry-synthesis when user explicitly requests it
    • "batch": Wait until user requests batch synthesis of multiple ingests
  6. If the user wants a rigorous structured feed instead of the raw normalized artifact, route the next step through $tapestry-feed.
  7. Report back with the successful URLs, created paths, matched crawlers when available, and any failures.

Read the full file on GitHub · 123 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 123 lines · 45 tokens per session scan A ddbb06d46147

Subscribe to this mod's changes

ingest is a skill published in the GitHub repository NatsuFox/Tapestry (64 stars, last pushed 4mo ago), licensed MIT. It adds 45 tokens to every session and 1,314 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-30.

Related

Other skills, from other repositories

add-tavily-tool

Add Tavily Search and Extract as keyless remote MCP tools for selected NanoClaw agent groups. Use when installing Tavily web search or URL extraction without an API key.

nanocoai/nanoclaw · 41 tokens

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.

nanocoai/nanoclaw · 51 tokens

browser-cdp

Use this skill when you need to control a Chrome browser via CDP (Chrome DevTools Protocol) to reuse existing login sessions. Covers: launching Chrome in debug mode, opening URLs, waiting for page load, evaluating JavaScript, taking snapshots, and extracting auth tokens. Trigger phrases: browser automation, CDP…

zenstory-ai/oh-story-claudecode · 94 tokens

scrapling

A Python-based web-scraping workflow for fetching pages and extracting data, including pages that need JavaScript, login sessions, or protection handling. Web scraping means collecting information from websites by code.

fengshao1227/ccg-workflow · 74 tokens

memory-bridge

Browse and compare wiki knowledge by which AI tool originally produced it. Use this skill when the user says "/memory-bridge", "browse codex memory", "what did codex know about X", "show me claude knowledge", "cross-tool memory", "what does hermes know that claude doesn't", "show me knowledge from ", "compare my AI…

Ar9av/obsidian-wiki · 134 tokens

browser

Browser automation — setup the bsession environment, fetch info from a website (one-shot), create scripted automations (one-shot or recurring), or debug existing sessions. Works from any repo.

UnicomAI/wanwu · 40 tokens