@memo-code/memo 0.8.10 → 0.8.50
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 +1 -0
- package/README.zh.md +1 -0
- package/dist/index.js +88 -79
- package/dist/prompt.md +2 -0
- package/dist/web/server/main.cjs +50 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,6 +66,7 @@ memo
|
|
|
66
66
|
- Version: `memo --version` or `memo -v`.
|
|
67
67
|
- Start web server: `memo web --host 127.0.0.1 --port 5494 --open` (npm package already includes web assets; source checkout needs `pnpm run build`).
|
|
68
68
|
- Startup project guidance: if `AGENTS.md` exists in the startup root, Memo appends it to the system prompt automatically.
|
|
69
|
+
- User personality guidance: if `$MEMO_HOME/SOUL.md` (or `~/.memo/SOUL.md`) exists, Memo injects it as a soft preference layer for personality/tone/style. It never overrides safety rules, tool policy, `AGENTS.md`, or explicit turn instructions; keep it concise to avoid prompt bloat.
|
|
69
70
|
- Skills: Memo auto-discovers `SKILL.md` files and appends an available-skills section into the system prompt.
|
|
70
71
|
- MCP activation selection: when MCP servers are configured, startup shows a multi-select to activate servers for this run.
|
|
71
72
|
- Web app supports multi-workspace project management and concurrent live sessions (up to 20 per server process).
|
package/README.zh.md
CHANGED
|
@@ -62,6 +62,7 @@ memo
|
|
|
62
62
|
- 查看版本:`memo --version` 或 `memo -v`。
|
|
63
63
|
- 启动 Web 服务:`memo web --host 127.0.0.1 --port 5494 --open`(npm 分发包已包含 web 资源;源码运行需先 `pnpm run build`)。
|
|
64
64
|
- 启动目录约定:若启动根目录存在 `AGENTS.md`,Memo 会自动将其拼接进系统提示词。
|
|
65
|
+
- 用户人格约定:若 `$MEMO_HOME/SOUL.md`(或 `~/.memo/SOUL.md`)存在,Memo 会将其作为人格/语气/风格的软偏好层注入系统提示词。它不会覆盖安全规则、工具策略、`AGENTS.md` 约束或当轮用户明确指令;建议保持内容简洁,避免提示词膨胀。
|
|
65
66
|
- Skills:Memo 会自动发现 `SKILL.md` 并把可用 skills 列表拼接进系统提示词。
|
|
66
67
|
- MCP 启动选择:当配置了 MCP server 时,启动会弹出多选以决定本次会话激活哪些 server。
|
|
67
68
|
- Web app 支持多 workspace 项目管理,并可并发运行多个会话(单个 server 进程上限 20)。
|