@memo-code/memo 0.7.1 → 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 +5 -8
- package/README.zh.md +5 -8
- package/dist/index.js +80 -79
- package/package.json +7 -6
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.
|
|
@@ -214,7 +212,7 @@ memo-cli/
|
|
|
214
212
|
|
|
215
213
|
## Tech Stack
|
|
216
214
|
|
|
217
|
-
- **Runtime**: Node.js
|
|
215
|
+
- **Runtime**: Node.js 20+
|
|
218
216
|
- **Language**: TypeScript
|
|
219
217
|
- **UI**: React + Ink
|
|
220
218
|
- **Protocol**: MCP (Model Context Protocol)
|
|
@@ -224,7 +222,6 @@ memo-cli/
|
|
|
224
222
|
|
|
225
223
|
- [User Guide](./site/content/docs/README.md) - User-facing docs by module
|
|
226
224
|
- [Core Architecture](./docs/core.md) - Core implementation details
|
|
227
|
-
- [TUI Rewrite Design](./docs/tui-rewrite-design.md) - Codex-aligned TUI architecture and migration notes
|
|
228
225
|
- [CLI Adaptation History](./docs/cli-update.md) - Historical migration notes (Tool Use API)
|
|
229
226
|
- [Contributing](./CONTRIBUTING.md) - Contribution guide
|
|
230
227
|
- [Project Guidelines](./AGENTS.md) - Coding conventions and development process
|
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 格式便于分析和调试。
|
|
@@ -210,7 +208,7 @@ memo-cli/
|
|
|
210
208
|
|
|
211
209
|
## 技术栈
|
|
212
210
|
|
|
213
|
-
- **Runtime**: Node.js
|
|
211
|
+
- **Runtime**: Node.js 20+
|
|
214
212
|
- **语言**: TypeScript
|
|
215
213
|
- **UI**: React + Ink
|
|
216
214
|
- **Protocol**: MCP (Model Context Protocol)
|
|
@@ -220,7 +218,6 @@ memo-cli/
|
|
|
220
218
|
|
|
221
219
|
- [用户指南](./site/content/docs/README.md) - 面向使用者的分模块说明
|
|
222
220
|
- [Core 架构](./docs/core.md) - 核心实现详解
|
|
223
|
-
- [TUI 重构设计](./docs/tui-rewrite-design.md) - 对标 Codex 的 TUI 架构与迁移说明
|
|
224
221
|
- [CLI 适配更新](./docs/cli-update.md) - Tool Use API 迁移说明
|
|
225
222
|
- [开发指南](./CONTRIBUTING.md) - 贡献指南
|
|
226
223
|
- [项目约定](./AGENTS.md) - 代码规范和开发流程
|