@ours.network/cowork 0.3.0 → 0.3.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/README.md +9 -1
- package/dist/cli.js +655 -14
- package/dist/daemon.js +1500 -1169
- package/dist/mufl_code/{9D2DA4CD06758ABFBC52B9C5692A2E30249A3C12F48B6F45F193B22E447F0342.muflo → BBAE58CF78DEE59692F456EAFFA9A6109835B66846FC3989F6D201B8F4523A55.muflo} +0 -0
- package/dist/web/assets/app.js +12 -12
- package/docs/05-room-workflow.md +3 -3
- package/docs/07-messaging-history.md +10 -2
- package/docs/10-limitations.md +3 -1
- package/docs/11-web-console.md +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,9 @@ ours-cowork web
|
|
|
7
7
|
ours-cowork docs
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
`ours-cowork web` starts the daemon if it is absent, waits for the console, and opens `http://127.0.0.1:3052/`. Create a room first, then add each invitation requirement from its Invite panel. The Communication view contains the human-readable room chat; operational records remain in Events and the complete ordered stream remains in Archive.
|
|
10
|
+
`ours-cowork web` starts the daemon if it is absent, waits for the console, and opens `http://127.0.0.1:3052/`. Create a room with a friendly display name first, then add each invitation requirement from its Invite panel. Names are trimmed, normalized to Unicode NFC, and may contain 1–64 Unicode characters excluding control and format characters. Duplicate names are allowed. The Communication view contains the human-readable room chat; operational records remain in Events and the complete ordered stream remains in Archive.
|
|
11
|
+
|
|
12
|
+
The friendly `room_name` is presentation metadata. The opaque `room_id` remains the stable key for routing, URLs, storage, and identity correlation, and the underlying technical room identity is never renamed. Rooms created before friendly names existed migrate deterministically to `Room <first 8 room_id characters>`.
|
|
11
13
|
|
|
12
14
|
The localhost HTTP console has no authentication. Keep it bound to `127.0.0.1`; do not proxy, forward, or expose the port to other hosts. Room state is refreshed by periodic polling, not pushed to the browser.
|
|
13
15
|
|
|
@@ -15,6 +17,12 @@ The package runs independently with its own config and state directory. Operator
|
|
|
15
17
|
|
|
16
18
|
Ordinary ours-mcp identities can join only as remote participants over the ours protocol.
|
|
17
19
|
|
|
20
|
+
Active participants can also send files through the room packet. Cowork treats
|
|
21
|
+
them as opaque bytes, archives them before consuming packet state, and relays a
|
|
22
|
+
signed metadata envelope plus the core binary file to every other active seat.
|
|
23
|
+
Files are limited to 2 MiB; larger inputs fail loudly instead of weakening
|
|
24
|
+
crash recovery guarantees.
|
|
25
|
+
|
|
18
26
|
The release package contains the standalone daemon, operator CLI, compiled room packet, deterministic web assets, and all eleven offline operator topics. It has no dependency on another agent daemon.
|
|
19
27
|
|
|
20
28
|
Licensed under [FSL-1.1-Apache-2.0](./LICENSE).
|