web-clipper

Clip web pages to clean markdown for later reading and search. Use when needing to save a URL, bookmark an article, clip a page, build a read-later collection, or archive web content. Trigger on phrases like "clip this", "save this page", "bookmark", "read later", "web clip", "save article".

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "web-clipper" with this command: npx skills add dandcg/claude-skills/dandcg-claude-skills-web-clipper

Web Clipper

Save any web page as clean markdown with YAML frontmatter. Optionally search your clips or ingest them into repo-search for semantic search.

Prerequisites

  • Python 3 with venv
  • Docker (optional, for FlareSolverr fallback on Cloudflare-protected sites)

Setup

First-Time Setup

~/.claude/skills/web-clipper/setup.sh

This creates a .venv and installs dependencies (trafilatura, requests, python-slugify, pyyaml).

Usage

Clip a URL

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/clip.py <url>

With tags:

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/clip.py <url> --tags "python,web-dev"

Force FlareSolverr (for Cloudflare-protected sites):

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/clip.py <url> --force-flaresolverr

JSON output:

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/clip.py <url> -f json

Clips are saved to ~/web-clips/ as markdown files with YAML frontmatter (title, url, domain, author, date, tags).

List Clips

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/list.py

Filter by domain, tag, or date:

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/list.py --domain "example.com"
~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/list.py --tag "python"
~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/list.py --after 2026-01-01 --before 2026-02-01
~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/list.py -f json

Search Clips

Full-text search across all clips:

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/search.py "search terms"
~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/search.py "search terms" -f json

Delete a Clip

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/delete.py <filename>
~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/delete.py --url "https://example.com/article"

Ingest into Repo Search (semantic search)

Requires the repo-search skill. Pushes all clips into ChromaDB:

~/.claude/skills/web-clipper/.venv/bin/python ~/.claude/skills/web-clipper/scripts/ingest.py

After ingestion, clips are searchable via repo-search:

~/.claude/skills/repo-search/.venv/bin/python ~/.claude/skills/repo-search/query.py "query" --collection web-clips

Error Handling

ErrorCauseFix
Could not extract article contentPage has no extractable article text (e.g., SPA, login wall)Try --force-flaresolverr for JS-rendered pages
FlareSolverr errorFlareSolverr container not runningRun ~/.claude/skills/flaresolverr/scripts/flaresolverr-ensure.sh
repo-search skill not foundrepo-search not installedRun ./install.sh repo-search

Limitations

  • Extracts article text only — does not preserve images, videos, or interactive elements
  • JavaScript-rendered SPAs may need FlareSolverr for content extraction
  • Login-walled content cannot be accessed

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

outlook

No summary provided by upstream source.

Repository SourceNeeds Review
General

humanize

No summary provided by upstream source.

Repository SourceNeeds Review
General

trello

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

Planning with files

Implements Manus-style file-based planning to organize and track progress on complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when aske...

Registry SourceRecently Updated
8.4K22Profile unavailable