你的 Claude Code 每次關掉都失憶嗎?
三分鐘設定,讓它記住上次做到哪裡。
「昨天改到哪了?」每次重新交代 10 分鐘。
「為什麼選 A 方案?」Claude 忘了,你也忘了。
「上次那個 bug 修到哪?」手動翻 git log 拼湊。
打 /start,Claude 自動告訴你上次做到哪。
決策記錄完整保留,下次有人問「為什麼?」一查就有。
打 /wrap-up 自動整理、存檔、產出摘要。
自動讀取上次的 session 紀錄和 job memo,告訴你「上次做到哪、下一步是什麼」。
完成一個里程碑時,把進度存進 SQLite。不中斷工作,一秒搞定。
自動整理:做了什麼、改了哪些檔案、關鍵決策、下一步。存 SQLite + 寫 job memo + 輸出摘要。
不用每次花 10 分鐘解釋「上次做到哪」。Claude 自己讀記錄接續。
為什麼選 A 不選 B?每次 wrap-up 都會記錄 trade-off,下次一查就有。
只用 Python 內建的 sqlite3,不需要裝任何東西。資料存在你的電腦上。
需要語意搜尋、多裝置同步、團隊共享?SQLite 格式直接相容 memhall 伺服器。
Terminal 貼三段指令 → 放入三個 SKILL.md → 完成。含 /start、/save、/wrap-up 完整內容,可展開直接複製。
WINDOWSPowerShell 設定步驟 + Python sqlite3。含疑難排解(PATH、UTF-8 編碼、權限問題)。
想要更強大的記憶系統? memhall 伺服器版支援 BM25 + 向量語意搜尋、多裝置同步、namespace 隔離、baton 機制追蹤跨 session 待辦。SQLite 資料可直接匯入,格式完全相容。
Memory Hall is an open-source session memory system for Claude Code (Anthropic's AI coding assistant). It solves a fundamental problem: every time you close a Claude Code session, the AI loses all context about what you were working on.
With three slash commands (/start, /save, /wrap-up) and a local SQLite database, Memory Hall lets your Claude remember previous sessions — what was done, what decisions were made, and what comes next. No external services required.
For teams or power users, the memhall server adds hybrid search (BM25 + vector semantic), multi-device sync, namespace isolation, and baton-based open loop tracking. The SQLite format is fully compatible — upgrade anytime without losing history.
Built by Cypher Lockhart(江中喬/千葉牧人). MIT License.