menmu-agent-room 0.1.0 → 0.1.2

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Doorwood
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -13,20 +13,29 @@ agent_room help
13
13
 
14
14
  This archive includes macOS/Linux x64/arm64 native binaries. It requires no Go compiler, install scripts, or additional download during installation. The launcher selects the platform and checks its SHA-256 before running. `--ignore-scripts` installations also work.
15
15
 
16
- The npm package name is `menmu-agent-room`; the installed command is `agent_room`. For offline installation, use `npm install -g ./menmu-agent-room-0.1.0.tgz`. To install without administrator access, add `--prefix "$HOME/.local"` and put `$HOME/.local/bin` on PATH.
16
+ The npm package name is `menmu-agent-room`; the installed command is `agent_room`. For offline installation, use `npm install -g ./menmu-agent-room-0.1.2.tgz`. To install without administrator access, add `--prefix "$HOME/.local"` and put `$HOME/.local/bin` on PATH.
17
17
 
18
18
  ## Host (Linux)
19
19
 
20
20
  The host also needs the compatible Codex runtime and a Codex login:
21
21
 
22
22
  ```sh
23
- npm install --prefix "$HOME/.local/share/agent_room/codex" '@openai/codex@0.151.0-alpha.7.2'
24
- ~/.local/share/agent_room/codex/node_modules/.bin/codex login
23
+ npm install -g '@openai/codex@0.153.4'
24
+ codex --version
25
+ codex login
25
26
  cd /path/to/your/git/project
26
27
  agent_room host .
27
28
  ```
28
29
 
29
- If the host already has this runtime and login, reuse them. Members need neither Codex nor a host OS account. Work runs with the host execution user's authority.
30
+ If the host already has this runtime and login, reuse them. Every host startup
31
+ finds Codex on the current PATH and validates compatibility. It does not prefer
32
+ private runtime folders or override the model/reasoning effort: those come from
33
+ the selected Codex's environment and configuration, including CODEX_HOME.
34
+ Missing or unreviewed runtimes fail startup. Members need neither Codex nor a
35
+ host OS account. Work runs with the host execution user's authority.
36
+
37
+ Existing rooms created with the older runtime need a stopped-host backup and
38
+ metadata migration; see [runtime upgrade instructions](https://github.com/Doorwood/agent_room/blob/main/docs/runtime-upgrade.md).
30
39
 
31
40
  ## Join and open the browser (member's computer)
32
41
 
@@ -51,7 +60,7 @@ agent_room answers HOST_IP SESSION_ID --name alice
51
60
 
52
61
  Startup prints `Browser URL: http://127.0.0.1:<local-port>/<random-access-id>/`. This address is generated on each member's own computer; it cannot be assembled from the host IP and session ID. Keep the client running. Add `--no-open` to print the URL without launching a browser.
53
62
 
54
- The browser supports sending tasks, shared member history, member filters, progress grouped by task, and final answers with collapsible progress. The original terminal remains available.
63
+ The browser supports sending tasks, shared member history, member filters, progress grouped by task, and final answers with collapsible progress. Press Enter to send a message or Alt+Enter to insert a newline. The original terminal remains available.
55
64
 
56
65
  ## Update or uninstall
57
66
 
package/native/SHA256SUMS CHANGED
@@ -1,4 +1,4 @@
1
- dc72bf7b7c5039354573f7f28008815a760515fe0668d7b7d3b69d930fb05a60 agent_room-linux-amd64
2
- 3caaf84a17353f800afa4caefb86119bcaece39beedcc9e8c01faeaa8506bb60 agent_room-linux-arm64
3
- a0e51e90b386f81986bf1d4a0e7c3d8b018df56fb4bf300e0ee72eb3524ab640 agent_room-darwin-amd64
4
- fb92b33ea29dc1007434e4d85e3185209f2676c670b7d9fbef2ec324cbda022b agent_room-darwin-arm64
1
+ 42b01b04f38c41c8b8dc71d1e4fe098f3d635156a3b4a7d1de9722163aee92b9 agent_room-linux-amd64
2
+ 22ad3a2cf1d060e523091c69973cf26c95be3c319f59e7a4b5d4ae7145b556ea agent_room-linux-arm64
3
+ 38da1a6973e21b64db8f52d75c17a4a24239e49aa361c25390659997e5d30eed agent_room-darwin-amd64
4
+ 68a1830fc9442441c6e1efdc4d963fe27f9ad5d89d822a05d8e7e2a9e41fa0e8 agent_room-darwin-arm64
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,19 +1,24 @@
1
1
  {
2
2
  "name": "menmu-agent-room",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Shared Codex project sessions with host-approved members, terminal and browser clients",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "registry": "https://registry.npmjs.org/"
8
8
  },
9
- "license": "UNLICENSED",
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/Doorwood/agent_room.git"
13
+ },
10
14
  "bin": {
11
15
  "agent_room": "bin/agent_room.cjs"
12
16
  },
13
17
  "files": [
14
18
  "bin/agent_room.cjs",
15
19
  "native/",
16
- "README.md"
20
+ "README.md",
21
+ "LICENSE"
17
22
  ],
18
23
  "engines": {
19
24
  "node": ">=20"