BITE: Skill for Claude Code

.claude/skills/papers-collect-from-web/SKILL.md

papers-collect-from-web is a skill for Claude Code from RipeMangoBox/BITE. It costs 108 tokens per session (961 once invoked), scanned A, original, MIT.

A web-page research tool that finds paper candidates on conference sites, lab pages, proceedings, scholar results, and paper-list blogs, then adds them to a local CSV list.

In plain words
What is it for?
Use it with web URLs, keywords, and a venue or year label to collect papers into `paper_list.csv`. It is for non-GitHub sources; GitHub repositories use a separate add-on.
Why use it?
It avoids copying paper details by hand from many different websites. It also keeps saved source pages and collected rows together for later review.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

This is RipeMangoBox/BITE's own configuration. It tells Claude Code how to work on BITE 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 BITE configures →

Reuse

Borrowing it

Nothing to install: this file belongs to RipeMangoBox/BITE. 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/RipeMangoBox/BITE/main/.claude/skills/papers-collect-from-web/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/RipeMangoBox/BITE

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 papers-collect-from-web

README.md
[![agentmods](https://agentmods.dev/badge/skills/ripemangobox/bite/papers-collect-from-web.svg)](https://agentmods.dev/skills/ripemangobox/bite/papers-collect-from-web)
Your own site
<a href="https://agentmods.dev/skills/ripemangobox/bite/papers-collect-from-web"><img src="https://agentmods.dev/badge/skills/ripemangobox/bite/papers-collect-from-web.svg" alt="Measured on agentmods" height="20"></a>
Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 961 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00108 $0.00961
Opus 5 $0.00054 $0.00481
Sonnet 5 $0.00022 $0.00192
Haiku 4.5 $0.00011 $0.00096

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

Security

Grade A, and why

papers-collect-from-web 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/paper_collector_online/collect_from_urls.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.

.claude/skills/papers-collect-from-web/SKILL.md · 73 lines

How it starts

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

Paper Collector (Online / Web)

Fetch web pages to local storage, extract paper candidates, and append them to obsidian-vault/paper_list.csv.

Use this skill for non-GitHub web sources: conference sites, lab homepages, proceedings pages (ACL Anthology, IEEE Xplore, etc.), Google Scholar results, blog posts with paper lists, etc.

For GitHub repositories (awesome lists, survey repos, lab paper repos, conference paper repos), use papers-collect-from-github-repo instead — it handles raw Markdown and multi-file repo structures better.

Scope

  • Input: one or more web URLs + include/exclude keyword constraints + target venue/year label.
  • Output:
    • saved source pages under paperSources/<run_id>/...
    • new rows appended to obsidian-vault/paper_list.csv

Output format (CSV columns, same as paper_list.csv)

state,importance,paper_title,venue,project_link_or_github_link,paper_link,sort,pdf_path

Defaults:

  • state: Wait (newly collected) or Skip (manually marked skip)
  • importance: empty (user fills later)
  • venue: user-provided label such as ICLR 2026
  • sort: leave blank if unknown; user can fill per item later
  • pdf_path: empty (filled later by papers-download-from-list)

State convention is defined in STATE_CONVENTION.md: main pipeline Wait → Downloaded → analysised → checked; out-of-band states Skip / Missing.

Workflow

  1. Ask user for:
    • URLs (one or many)
    • include keywords (optional) and exclude keywords (optional)
    • venue/time label (for example ICLR 2026)
    • whether to overwrite or append if rows already exist for this venue
  2. Run collector script (preferred default):
    • python3 ".claude/skills/papers-collect-from-web/scripts/paper_collector_online/collect_from_urls.py" --venue-time "ICLR 2026" --urls "<URL1>" "<URL2>" --include "motion;diffusion" --exclude "workshop;dataset" --append
  3. Verify generated rows:
    • columns present and in correct order
    • dedup applied by normalized paper link against existing paper_list.csv
    • links are well-formed (no surrounding punctuation)
  4. If extraction quality is poor for a URL:
    • rerun with tighter keywords, or
    • run per-source URLs separately, or
    • manually provide a short snippet list and extend script patterns only if needed.

Read the full file on GitHub · 73 lines

Files

What ships with it

3 files 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. 8d ago First seen · 73 lines · 108 tokens per session scan A aaba8d6d8a55

Subscribe to this mod's changes

papers-collect-from-web is a skill published in the GitHub repository RipeMangoBox/BITE (61 stars, last pushed 25d ago), licensed MIT. It adds 108 tokens to every session and 961 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-30.

Related

Other skills, from other repositories

results-report

A workflow for turning completed experiment analyses into a structured research report with findings, limitations, failures, and next steps.

Galaxy-Dawn/claude-scholar · 78 tokens

wiki-lint

Audit and maintain the health of the Obsidian wiki. Use this skill when the user wants to check their wiki for issues, find orphaned pages, detect contradictions, identify stale content, fix broken wikilinks, or perform general maintenance on their knowledge base. Also triggers on "clean up the wiki", "what needs…

Ar9av/obsidian-wiki · 152 tokens

code-review-excellence

This skill should be used when the user asks to review a diff or pull request, write review comments, audit code quality, establish review standards, or improve how a team performs code review.

Galaxy-Dawn/claude-scholar · 43 tokens

wiki-export

Export the Obsidian wiki's knowledge graph to structured formats for use in external tools. Use this skill when the user says "export wiki", "export graph", "export to JSON", "export to Gephi", "export to Neo4j", "export to Postgres", "export to SQL", "graphml", "visualize wiki", "knowledge graph export", "export to…

Ar9av/obsidian-wiki · 172 tokens

agent-identifier

Use when creating or configuring Claude Code agents and their frontmatter.

Galaxy-Dawn/claude-scholar · 17 tokens

wiki-import

Import a wiki knowledge graph into the current vault — either from a graph.json export file (stubs) or from an OKF (Open Knowledge Format) markdown bundle (full page bodies). Use this skill when the user says "import wiki", "import from export", "load graph.json", "import vault", "import OKF bundle", "import OKF"…

Ar9av/obsidian-wiki · 108 tokens