Prompts
Save Web Resource
Fetch URLs, extract metadata, generate summaries and key points, save to vault with proper tags
Purpose
Save and summarize a webpage or social media post. Extracts metadata, generates summaries, and creates a properly formatted resource note.
How to Use
Invoke with /save-web <url> in Claude Code.
Example: /save-web https://example.com/interesting-article
Arguments
- $ARGUMENTS: URL to save (required)
Instructions
-
Fetch the URL using WebFetch to get the content
-
Extract metadata:
- Title (use for filename)
- Author if available
- Publication date if available
- Source (domain name, e.g., "Twitter", "Medium", "GitHub")
-
Create the file:
- Path:
400 Resources/Web/<Title>.md - Clean the title for filename (remove special chars)
- Path:
-
Generate content:
---
type: web
url: <url>
source: <domain>
author: <author if found>
published: <date if found>
saved: <today YYYY-MM-DD>
tags: [<3-5 relevant tags>]
---
-
Write sections:
- Summary: 2-3 sentences capturing the main point
- Why It's Useful: 1-2 sentences on practical value or relevance
- Key Points: Bullet list of main takeaways (3-5 items)
- Notes: Leave empty for user annotations
-
Tag guidelines:
- Use lowercase, hyphenated tags
- Include topic tags (e.g.,
productivity,programming,design) - Include format tags if relevant (e.g.,
tutorial,thread,article) - Keep to 3-5 tags max
-
Confirm creation with file path.