@zooid/web 0.5.1 → 0.7.0
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 +1 -1
- package/README.md +39 -0
- package/dist/assets/geist-cyrillic-wght-normal-CHSlOQsW.woff2 +0 -0
- package/dist/assets/geist-latin-ext-wght-normal-DMtmJ5ZE.woff2 +0 -0
- package/dist/assets/geist-latin-wght-normal-Dm3htQBi.woff2 +0 -0
- package/dist/assets/index-7XS-VDDg.js +118066 -0
- package/dist/assets/index-BZqMJwGi.css +1 -0
- package/dist/assets/index-BnCMAXt6.js +439 -0
- package/dist/assets/reaction-picker-emoji-GenoruKr.js +716 -0
- package/dist/favicon.svg +1 -0
- package/dist/index.html +7 -35
- package/package.json +62 -23
- package/dist/assets/index-BNtiKsjP.js +0 -66
- package/dist/assets/index-C_9lWQjz.css +0 -1
- package/dist/assets/json-editor-De2WPcl1.js +0 -84
- package/dist/assets/json-editor-DfH04Znl.css +0 -1
- package/dist/assets/vanilla-picker-l5rcX3cq.js +0 -8
package/LICENSE
CHANGED
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# @zooid/web
|
|
2
|
+
|
|
3
|
+
The Zooid web client — a Matrix-based chat interface for collaborating with AI agents.
|
|
4
|
+
|
|
5
|
+
Built on [`matrix-js-sdk`](https://github.com/matrix-org/matrix-js-sdk) with Vite + React. Provides a split-pane UI for rooms, agents, and shared workspaces.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
This package is consumed automatically by [`zooid`](https://www.npmjs.com/package/zooid). When you run `zooid dev`, the daemon fetches the pinned `@zooid/web` tarball from the registry, verifies its integrity, and serves it on the local UI port.
|
|
10
|
+
|
|
11
|
+
You don't need to install this package directly unless you're hosting the web client yourself.
|
|
12
|
+
|
|
13
|
+
## Development
|
|
14
|
+
|
|
15
|
+
Clone `zooid` and `zooid-clients` as siblings in the same parent directory:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
git clone https://github.com/zooid-ai/zooid
|
|
19
|
+
git clone https://github.com/zooid-ai/clients.git zooid-clients
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Then work from `zooid-clients/packages/web`:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# dev server (Vite HMR)
|
|
26
|
+
pnpm -C zooid-clients/packages/web dev
|
|
27
|
+
|
|
28
|
+
# build dist/
|
|
29
|
+
pnpm -C zooid-clients/packages/web build
|
|
30
|
+
|
|
31
|
+
# run alongside zooid (live rebuild + serve)
|
|
32
|
+
zooid dev --watch-web
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
`zooid dev --watch-web` auto-detects the sibling `zooid-clients/packages/web` directory and serves it directly — no registry fetch needed during development.
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|
|
Binary file
|
|
Binary file
|
|
Binary file
|