maroffo/claude-forge

process-clippings

Process web clippings into Second Brain. Use when user mentions clippings, asks to process articles, or wants to integrate saved content. Not for newsletters (use newsletter-digest) or email bookmarks (use process-email-bookmarks).

First seen Mar 1, 2026

Installation

$ npx skills add maroffo/claude-forge --skill process-clippings

Also in this package

Other skills from maroffo/claude-forge · top by installs.

npx skills add maroffo/claude-forge

Browse all from maroffo/claude-forge

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 16
License LICENSE
Default branch main
Open issues 6
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

CompatibilityRequires Obsidian CLI (obsidian MCP commands).
Allowed toolsBash, Read, WebFetch
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,599 B
  • docs SUMMARY.md 256 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

ABOUTME: Process web clippings from Obsidian vault into Second Brain via CLI

ABOUTME: Reads clippings, categorizes, extracts knowledge, integrates, archives

Process Clippings Skill

Process web clippings from the Clippings folder and integrate them into the Second Brain.

Obsidian CLI: See ../OBSIDIAN.md | Integration: See ../SECOND_BRAIN.md

Vault Structure

Documents/                        (vault)
├── Clippings/                    ← Inbox (unprocessed)
│   └── Processed/                ← Archive
├── Second Brain/                 ← Destination for actionable knowledge
│   ├── Second Brain - AI Agents and Tools.md
│   ├── Second Brain - Claude Code.md
│   ├── Second Brain - Development.md
│   ├── Second Brain - DevOps and Cloud.md
│   └── Second Brain - Engineering Management.md
└── Bookmarks/                    ← Reference links only

Processing Workflow

Step 1: Find Clippings

obsidian files folder=Clippings ext=md

Step 2: For Each Clipping

  1. Read the clipping:
obsidian read path="Clippings/<file>.md"
  1. Categorize per ../SECONDBRAIN.md routing table
  2. Decide: Actionable (tutorials, patterns, code) -> Second Brain | Reference only -> Bookmarks
  3. Extract & integrate per ../SECONDBRAIN.md content template:
# Append to destination
obsidian append file="Second Brain - <Topic>" content="<extracted>"
# Update timeline
obsidian append file="Second Brain - Timeline" content="- **YYYY-MM-DD** | [Topic] | Source: Clipping | -> Second Brain - <File>.md"

Step 3: Archive Clipping

After successful integration:

obsidian move path="Clippings/<file>.md" to="Clippings/Processed/<file>.md"

Or if user prefers, delete:

obsidian delete path="Clippings/<file>.md"

Output Format

After processing each clipping, report:

Processed: [Clipping Title]
  -> Added to: Second Brain - [File].md
  -> Type: [Actionable/Reference]
  -> Key insight: [1-line summary]

Rules

See ../SECONDBRAIN.md for shared rules. Additional:

  • Code examples: only if genuinely useful, keep minimal