Claude Agent Skill · by Kepano

Defuddle

When you need to analyze web content without burning tokens on navigation menus and ads, this extracts clean markdown from any URL. It's essentially a smart web

Install
Terminal · npx
$npx skills add https://github.com/kepano/obsidian-skills --skill defuddle
Works with Paperclip

How Defuddle fits into a Paperclip company.

Defuddle drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md41 lines
Expand
---name: defuddledescription: Extract clean markdown content from web pages using Defuddle CLI, removing clutter and navigation to save tokens. Use instead of WebFetch when the user provides a URL to read or analyze, for online documentation, articles, blog posts, or any standard web page. Do NOT use for URLs ending in .md — those are already markdown, use WebFetch directly.--- # Defuddle Use Defuddle CLI to extract clean readable content from web pages. Prefer over WebFetch for standard web pages — it removes navigation, ads, and clutter, reducing token usage. If not installed: `npm install -g defuddle` ## Usage Always use `--md` for markdown output: ```bashdefuddle parse <url> --md``` Save to file: ```bashdefuddle parse <url> --md -o content.md``` Extract specific metadata: ```bashdefuddle parse <url> -p titledefuddle parse <url> -p descriptiondefuddle parse <url> -p domain``` ## Output formats | Flag | Format ||------|--------|| `--md` | Markdown (default choice) || `--json` | JSON with both HTML and markdown || (none) | HTML || `-p <name>` | Specific metadata property |