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".
Quickly save any URL to your memory with a summary — perfect for links you drop during conversation.
web_fetchmemory/links/YYYY-MM-DD.md in Markdown formatWhen user says something like:
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
## [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
---
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
To find saved links later:
memory/links/ directlymemory_search with keywords from the title or summary