second-brain: Skill for Claude Code

.claude/skills/jina-capture/SKILL.md

jina-capture is a skill for Claude Code from slowww-ai/second-brain. It costs 78 tokens per session (785 once invoked), scanned A, original, MIT.

A command for saving a web page as clean Markdown in a wiki's raw folder. Markdown is plain text formatted for readable notes, and the command uses the Jina Reader service to fetch the page.

In plain words
What is it for?
Use it when you provide a URL and want to capture an article, import several links, or save reading material to a second-brain wiki.
Why use it?
It gives you a consistent local copy of an article or other web page for later reference, without keeping the original page's cluttered layout.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is slowww-ai/second-brain's own configuration. It tells Claude Code how to work on second-brain itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything second-brain configures →

Reuse

Borrowing it

Nothing to install: this file belongs to slowww-ai/second-brain. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/slowww-ai/second-brain/main/.claude/skills/jina-capture/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/slowww-ai/second-brain

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 jina-capture

README.md
[![agentmods](https://agentmods.dev/badge/skills/slowww-ai/second-brain/jina-capture/github.svg)](https://agentmods.dev/skills/slowww-ai/second-brain/jina-capture)
Your own site
<a href="https://agentmods.dev/skills/slowww-ai/second-brain/jina-capture"><img src="https://agentmods.dev/badge/skills/slowww-ai/second-brain/jina-capture/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 jina-capture

Your own site · 80×15
<a href="https://agentmods.dev/skills/slowww-ai/second-brain/jina-capture"><img src="https://agentmods.dev/badge/skills/slowww-ai/second-brain/jina-capture.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 785 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00078 $0.00785
Opus 5 $0.00039 $0.00392
Sonnet 5 $0.00016 $0.00157
Haiku 4.5 $0.00008 $0.00078

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

Security

Grade A, and why

jina-capture scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sL "https://r.jina.ai/<url>" -o /tmp/jina.md
.claude/skills/jina-capture/SKILL.md · 65 lines

How it starts

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

Jina Capture

Turn any URL into a stamped markdown file in wiki/raw/ using the Jina Reader service (https://r.jina.ai/<url>), which returns a clean markdown version of the page.

When to use

  • User provides a URL and wants it captured into the second brain.
  • User says "save this", "capture this", "add to raw", "read this later", etc., alongside a link.
  • Bulk import of a list of URLs.

How it works

https://r.jina.ai/<full-url> returns the target page rendered as markdown. No API key is required for basic use. Just fetch it and save the body.

Steps

  1. Confirm target folder. Default is wiki/raw/ in the current project (the second brain repo). If the user is not in that repo, ask where to save.

  2. Fetch the markdown. For each URL:

    • Construct https://r.jina.ai/<url> (do not URL-encode the target — Jina expects the raw URL appended).
    • Use the WebFetch tool to retrieve it. Ask for the full markdown body.
    • If WebFetch summarizes instead of returning raw content, fall back to:
      curl -sL "https://r.jina.ai/<url>" -o /tmp/jina.md
      
      and read /tmp/jina.md.
  3. Extract a title and slug. Jina's output usually starts with Title: ... and URL Source: ... lines followed by Markdown Content:. Parse the title from there; slugify it to max 50 chars, lowercase, hyphen-separated.

  4. Write the file. Save to wiki/raw/<YYYY-MM-DD>-<slug>.md with frontmatter prepended:

    ---
    id: <YYYY-MM-DD>-<slug>
    date: <YYYY-MM-DD>
    source: <original url>
    tags: []
    status: draft
    ---
    

    Followed by the markdown body Jina returned. Keep the body intact — do NOT summarize or edit it. The point of raw/ is fidelity.

  5. Report back. Print the new file path (as a computer:// link) and a one-line summary of what the article is about. Do not run /ingest automatically — the user decides when to distill.

Rules

  • Never overwrite an existing file in wiki/raw/. If the slug collides, append -2, -3, etc.
  • Never modify or delete other files in wiki/raw/.
  • If Jina returns an error page or empty body, tell the user and do not create the file.
  • For multiple URLs, process them in sequence and print one summary line per saved file at the end.

Read the full file on GitHub · 65 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. 9d ago First seen · 65 lines · 78 tokens per session scan A 9fb61514e13b

Subscribe to this mod's changes

jina-capture is a skill published in the GitHub repository slowww-ai/second-brain (10 stars, last pushed 26d ago), licensed MIT. It adds 78 tokens to every session and 785 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens