@memo-code/memo 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -6
- package/README.zh.md +4 -6
- package/dist/index.js +77 -76
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -143,15 +143,13 @@ Memo includes a tool-approval mechanism to reduce risky operations:
|
|
|
143
143
|
|
|
144
144
|
## Session History
|
|
145
145
|
|
|
146
|
-
All sessions are saved to `~/.memo/sessions/`, grouped by
|
|
146
|
+
All sessions are saved to `~/.memo/sessions/`, grouped by project absolute path:
|
|
147
147
|
|
|
148
148
|
```text
|
|
149
149
|
~/.memo/sessions/
|
|
150
|
-
└──
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
├── rollout-2026-02-08T02-21-18-abc123.jsonl
|
|
154
|
-
└── rollout-2026-02-08T02-42-09-def456.jsonl
|
|
150
|
+
└── -Users-mcell-Desktop-workspace-memo-code/
|
|
151
|
+
├── 2026-02-08T02-21-18-abc123.jsonl
|
|
152
|
+
└── 2026-02-08T02-42-09-def456.jsonl
|
|
155
153
|
```
|
|
156
154
|
|
|
157
155
|
JSONL format is useful for analysis and debugging.
|
package/README.zh.md
CHANGED
|
@@ -139,15 +139,13 @@ memo mcp remove remote
|
|
|
139
139
|
|
|
140
140
|
## 会话历史
|
|
141
141
|
|
|
142
|
-
所有会话自动保存到 `~/.memo/sessions
|
|
142
|
+
所有会话自动保存到 `~/.memo/sessions/`,按项目绝对路径分层组织:
|
|
143
143
|
|
|
144
144
|
```
|
|
145
145
|
~/.memo/sessions/
|
|
146
|
-
└──
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
├── rollout-2026-02-08T02-21-18-abc123.jsonl
|
|
150
|
-
└── rollout-2026-02-08T02-42-09-def456.jsonl
|
|
146
|
+
└── -Users-mcell-Desktop-workspace-memo-code/
|
|
147
|
+
├── 2026-02-08T02-21-18-abc123.jsonl
|
|
148
|
+
└── 2026-02-08T02-42-09-def456.jsonl
|
|
151
149
|
```
|
|
152
150
|
|
|
153
151
|
JSONL 格式便于分析和调试。
|