---
name: Defuddle
slug: defuddle-3
category: Automation
description: Defuddle extracts clean markdown content from web pages using the Defuddle CLI, removing navigation and clutter to reduce token usage. Use it when a URL is provided to read or analyze online documentation, articles, or blog posts.
github: "https://github.com/breferrari/obsidian-mind/tree/main/.claude/skills/defuddle"
language: TypeScript
stars: 4455
forks: 518
install: "npx degit https://github.com/breferrari/obsidian-mind/tree/main/.claude/skills/defuddle ~/.claude/skills/defuddle"
installs_to: ~/.claude/skills/defuddle
source_path: .claude/skills/defuddle/SKILL.md
collection_size: 8
category_size: 1523
collection_url: "https://dirskills.com/collections/breferrari/obsidian-mind"
added: 2026-08-16T07:01:17.435Z
last_synced: 2026-08-16T07:01:17.435Z
canonical_url: "https://dirskills.com/skills/defuddle-3"
---

# Defuddle

Defuddle extracts clean markdown content from web pages using the Defuddle CLI, removing navigation and clutter to reduce token usage. Use it when a URL is provided to read or analyze online documentation, articles, or blog posts.

**Install:**

```bash
npx degit https://github.com/breferrari/obsidian-mind/tree/main/.claude/skills/defuddle ~/.claude/skills/defuddle
```

## README

# 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:

```bash
defuddle parse <url> --md
```

Save to file:

```bash
defuddle parse <url> --md -o content.md
```

Extract specific metadata:

```bash
defuddle parse <url> -p title
defuddle parse <url> -p description
defuddle 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 |
