menmu-agent-room 1.0.4 → 1.0.6

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 CHANGED
@@ -125,3 +125,46 @@ and `~/.local/bin/agent_room-update` wrappers, and remove only
125
125
  `~/.local/share/agent_room/npm`. Keep the surrounding agent_room directory and
126
126
  user configuration directory to preserve host state and member credentials.
127
127
  The marked PATH block can remain if you use `~/.local/bin` for other tools.
128
+
129
+ ## 1.0.6 更新
130
+
131
+ - 已发送附件支持预览和下载;刷新后恢复图片预览。
132
+ - 草稿保存到本机,断开重连、重启客户端后恢复。
133
+ - 支持搜索已同步的完整聊天历史;显示任务队列,明确“停止当前任务”不暂停后续任务。
134
+ - 新增 visitor(参观者,只读历史)和 asker(询问者,只读问答)权限,由 Host 分配。
135
+ - 询问者复用 Host 的 Codex 登录、模型与 session,无需额外 API Key;问答在单独视图展示,协作成员可按成员查看。
136
+
137
+ ```sh
138
+ agent_room requests
139
+ agent_room approve REQUEST_ID --role visitor
140
+ agent_room approve REQUEST_ID --role asker
141
+ agent_room role REQUEST_ID --role roommate
142
+ ```
143
+
144
+ 以上管理命令在 Host 的项目目录执行,可用 `--state DIR` 指定状态目录。
145
+
146
+ 问答会进入共享 Codex 上下文,隐藏页面记录不代表记忆隔离。问答使用只读沙箱,与正式任务串行执行;当前存在 MCP、Apps、Hooks 等无法确认只读的扩展配置时,会拒绝问答,不降级为可写任务。协议与界面已通过模拟器测试,真实 Codex 工具写入阻断尚未实机验收。
147
+
148
+ 更新前备份 Host 状态目录。此版本将数据库迁移到 schema 4,迁移后不能直接用旧版 Host 打开。升级后重启 Host、Dashboard 和客户端才能使用新能力;安装更新不会自动重启运行中的进程。
149
+
150
+ ```sh
151
+ npm install -g menmu-agent-room@1.0.6 --registry=https://registry.npmjs.org/
152
+ agent_room --version
153
+ ```
154
+
155
+ 使用持久化安装脚本的用户执行 `agent_room-update` 更新对应安装。
156
+
157
+ ## 1.0.5 更新
158
+
159
+ - Room 项目名称同步、缓存和搜索;支持删除本机 Room 记录,再次添加复用成员身份。
160
+ - 聊天历史向上翻页加载,回复链接在新标签页打开。
161
+ - 选择、拖拽文件或粘贴图片上传后发送给模型;单文件最大 20 MiB。附件功能需要 host 和客户端均升级。
162
+ - “停止模型”中断当前任务并保持连接;已排队的任务继续执行。
163
+
164
+ ```sh
165
+ agent_room-update
166
+ agent_room --version
167
+ agent_room dashboard
168
+ ```
169
+
170
+ 更新后重新启动客户端;使用附件功能前也需要重启升级后的 host。
package/native/SHA256SUMS CHANGED
@@ -1,4 +1,4 @@
1
- a2d397824d4e26a148938f4876100b1b4a15d840a48459326913fc65a99cb410 agent_room-linux-amd64
2
- 43c251414fb4c579b3b799c778554046b58bebaf92902b78e63ed417e777b83a agent_room-linux-arm64
3
- d83bbc0f7453f5f7ffc78cec9a11789940344c179412b666b74043af1667f167 agent_room-darwin-amd64
4
- ecdf2062f4e8c347c6fb052b4d23fb9aa4417b91beed38f4b0d6bd353adff084 agent_room-darwin-arm64
1
+ 41b8906080f2c5ac4b9da2a89e738f42f75b811bf53b3467ebcd54ce32db3d0a agent_room-linux-amd64
2
+ 1033d7a088cc2248be96667c4543cffd665959845b0fb7f6cf502313f030d050 agent_room-linux-arm64
3
+ 0adfe87524b620992b22d9d6c53bd6e69d8e98a23f517c7084e1d4960a735090 agent_room-darwin-amd64
4
+ b9735c07cb1b53f75fd60d85c08adf938afc17aaec32c2308adcae3a21f9684e agent_room-darwin-arm64
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "menmu-agent-room",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Shared Codex project sessions with host-approved members, terminal and browser clients",
5
5
  "publishConfig": {
6
6
  "access": "public",