← 返回
未分类 中文

Recall

Load context from past sessions. Three modes: temporal (what did I work on yesterday/last week), topic (semantic search across sessions and notes), and graph...
从过去的会话中加载上下文。三种模式:时间模式(昨天/上周做了什么),主题模式(跨会话和笔记的语义搜索),以及图模式……
borodich borodich 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 295
下载
💾 0
安装
1
版本
#latest#memory#personal-os

概述

Recall

> Your agent forgets between sessions. Recall fixes that.

Three modes: temporal (date-based), topic (semantic search), graph (visual map). Every recall ends with One Thing — a concrete, specific next action synthesized from what you find.


Modes

1. Temporal — What were you working on?

/recall yesterday
/recall last week
/recall 2026-03-28
/recall this week
/recall last 3 days

Scans memory/YYYY-MM-DD.md and memory/chat-log-YYYY-MM-DD.jsonl files chronologically. Shows a timeline of sessions with topics, decisions made, and tasks in progress.

What it shows:

  • Sessions list (time, topic, key decisions)
  • Tasks that were in progress → which are done, which are stuck
  • Decisions made and why
  • Open loops that weren't closed

2. Topic — What do you know about X?

/recall authentication
/recall meeting with Bayram
/recall MoltNet architecture
/recall voice cloning

Searches across:

  • memory/ daily files
  • MEMORY.md long-term memory
  • SESSION-STATE.md
  • Any notes in the workspace

Uses keyword + semantic matching. Returns relevant excerpts with dates.

3. Graph — Visualize your work streams

/recall graph yesterday
/recall graph last week
/recall graph last 3 days

Generates an interactive HTML visualization:

  • Sessions as nodes, colored by day
  • Files touched as connected nodes
  • Clusters reveal related work streams
  • Shared files show cross-session dependencies

Output: memory/recall-graph-YYYY-MM-DD.html — opens in browser.


The One Thing

Every recall ends with synthesis:

> Based on what has momentum, what's blocked, and what's closest to done — here's the single highest-leverage action right now:

>

> [Specific, actionable, not generic]

Not "work on your project." More like "The auth flow has been blocked for 3 days — unblock it by making the decision about OAuth vs API keys you've been deferring."


How It Works

Step-by-step execution

Temporal query:

# 1. Find relevant memory files
ls ~/[workspace]/memory/YYYY-MM-DD.md  # today and requested range

# 2. Read them chronologically
cat memory/2026-03-28.md memory/2026-03-29.md ...

# 3. Also check SESSION-STATE.md for current hot context
cat memory/SESSION-STATE.md

# 4. Build timeline
# 5. Synthesize One Thing

Topic query:

# 1. Search memory files for topic
grep -r "TOPIC" memory/ --include="*.md" -l

# 2. If QMD is available (faster, semantic):
qmd search "TOPIC" -n 10

# 3. Read matched sections
# 4. Synthesize what's known + One Thing

Graph query:

# 1. Parse memory files for file references and decisions
# 2. Build adjacency data
# 3. Generate HTML with D3.js visualization
python3 ${CLAUDE_SKILL_DIR}/scripts/generate-graph.py --days 7 --output memory/recall-graph.html
# 4. Open in browser or share link

Configuration

No configuration required. Works with any workspace that has memory/ files.

Optional — better search with QMD:

# Install QMD for semantic search
npm install -g @qmd/cli
qmd index memory/ --collection sessions

Optional — richer graph with file tracking:

Add to your AGENTS.md:

When touching important files, log them to memory/YYYY-MM-DD.md:
  - Touched: path/to/file.md

Examples

"What was I doing last week?"

📅 Last week (Mar 24–30):

Mon Mar 24: Voice cloning setup — installed Chatterbox, tested on DGX
Tue Mar 25: LanguageMirror backend — /clone-voice endpoint working
Wed Mar 26: Blocked on Russian TTS (CosyVoice failed), pivoted to English MVP
Thu Mar 27: Voxtral announcement — saved notes, compared to ElevenLabs
Fri Mar 28: Content pipeline — built preflight-check.sh, integrated with Moltbook

🔄 In progress: LanguageMirror end-to-end test (Pron)
✅ Done: Chatterbox, preflight-check
❌ Blocked: Russian TTS, Google Auth

⚡ One Thing: The LanguageMirror test has been queued for Pron for 3 days — check if it's done or unblock it.

"What do I know about the MoltNet architecture?"

📚 Found 8 references across 12 sessions (Mar 15 – Mar 31):

[2026-03-15] Decided: Node 1 Strasbourg as primary, Proxmox VE
[2026-03-18] Router deployed at /opt/moltnet/router/router.js
[2026-03-22] MoltWallet vs MoltPay distinction documented
[2026-03-28] Node 2 Singapore planned (Ryzen 9950X €299)

Key decision: Multi-tenant VPS marketplace, Telegram-first

⚡ One Thing: Node 2 Singapore has been "planned" for 2 weeks with no action — decide: this month or defer to Q3?

Upgrade Path

SetupWhat you get
--------------------
Just memory/ filesTemporal recall, basic topic search
+ QMD installedSemantic topic search, faster
+ file tracking in AGENTS.mdRicher graph with file relationships
+ SESSION-STATE.md protocolReal-time hot context always available

Start simple. Add as needed.


See Also

  • evolutionary-model — why memory persistence matters
  • onboarding — set up your memory foundation first
  • ArtemXTech's original recall skill for Claude Code + Obsidian workflows

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 16:27 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,109 📥 831,207
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,398 📥 323,078
dev-programming

Bug Fix Protocol

borodich
结构化协议,用于 AI 代理修复 bug。在代码更改前强制逐步诊断,防止幻觉和修复循环。
★ 0 📥 472