Agent skill
link-saver
Fetch a URL, summarize it, and save it to memory for later retrieval. Use when the user drops a link and wants it remembered, or asks to "save this link".
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/link-saver
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83d\udd17", "requires": { "bins": [ "mkdir", "cat" ] } }
SKILL.md
Link Saver
Quickly save any URL to your memory with a summary — perfect for links you drop during conversation.
When to Use
- User drops a link and says "remember this" or "save this link"
- User asks "save this for later" with a URL
- You want to store an interesting article, doc, or resource for future reference
How It Works
- Fetch the URL using
web_fetch - Summarize the content (or just grab title + excerpt)
- Save to
memory/links/YYYY-MM-DD.mdin Markdown format
Usage
Save a link
When user says something like:
- "Save this: https://example.com"
- "Remember this link: ..."
- "Link: https://..."
Do:
# 1. Fetch the URL
web_fetch url="https://example.com" maxChars=3000
# 2. Extract title + summary
# (manual - read the fetched content)
# 3. Save to memory/links/YYYY-MM-DD.md
# Format:
# ## [Page Title](URL)
#
# **Saved:** YYYY-MM-DD HH:MM
# **Summary:** 1-2 sentence summary
# **Tags:** #link #topic
Format for memory/links/
## [Article: How to Build AI Agents](https://example.com/article)
**Saved:** 2026-02-23 19:45
**Summary:** A guide to building autonomous AI agents with memory, tools, and multi-agent orchestration.
**Tags:** #link #ai #agents
---
File Location
Saved links go to:
~/.openclaw/workspace/memory/links/YYYY-MM-DD.md
Create the links directory if it doesn't exist:
mkdir -pworkspace/memory/links
Retrieval
To find saved links later:
- Search
memory/links/directly - Use
memory_searchwith keywords from the title or summary - Ask "what links did we save about X?"
Notes
- Only save links when user explicitly asks ("save this", "remember this link", etc.)
- Don't save every URL automatically — that's noise
- Keep summaries brief (1-2 sentences)
- Add relevant tags for better searchability
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?