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.
curl -O https://raw.githubusercontent.com/slowww-ai/second-brain/main/.claude/skills/jina-capture/SKILL.mdgit clone --depth 1 https://github.com/slowww-ai/second-brainWrote 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/slowww-ai/second-brain/jina-capture)<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.
<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>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.00078 | $0.00785 |
| Opus 5 | $0.00039 | $0.00392 |
| Sonnet 5 | $0.00016 | $0.00157 |
| Haiku 4.5 | $0.00008 | $0.00078 |
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 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
-
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. -
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:
and readcurl -sL "https://r.jina.ai/<url>" -o /tmp/jina.md/tmp/jina.md.
- Construct
-
Extract a title and slug. Jina's output usually starts with
Title: ...andURL Source: ...lines followed byMarkdown Content:. Parse the title from there; slugify it to max 50 chars, lowercase, hyphen-separated. -
Write the file. Save to
wiki/raw/<YYYY-MM-DD>-<slug>.mdwith 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.
-
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/ingestautomatically — 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.
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 · 65 lines · 78 tokens per session scan A 9fb61514e13b
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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
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…
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…
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…