@zooid/web 0.6.0 → 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.
Files changed (47) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +39 -0
  3. package/dist/assets/geist-cyrillic-wght-normal-CHSlOQsW.woff2 +0 -0
  4. package/dist/assets/geist-latin-ext-wght-normal-DMtmJ5ZE.woff2 +0 -0
  5. package/dist/assets/geist-latin-wght-normal-Dm3htQBi.woff2 +0 -0
  6. package/dist/assets/index-7XS-VDDg.js +118066 -0
  7. package/dist/assets/index-BZqMJwGi.css +1 -0
  8. package/dist/assets/index-BnCMAXt6.js +439 -0
  9. package/dist/assets/reaction-picker-emoji-GenoruKr.js +716 -0
  10. package/dist/favicon.svg +1 -0
  11. package/dist/index.html +7 -35
  12. package/package.json +62 -29
  13. package/dist/assets/index-7P1i28a8.js +0 -66
  14. package/dist/assets/index-BeqmFlCW.css +0 -1
  15. package/dist/assets/json-editor-Cvlnnf1Q.css +0 -1
  16. package/dist/assets/json-editor-iJIPDKxB.js +0 -84
  17. package/dist/assets/vanilla-picker-l5rcX3cq.js +0 -8
  18. package/src/App.svelte +0 -678
  19. package/src/app.css +0 -178
  20. package/src/lib/api.ts +0 -78
  21. package/src/lib/components/admin-dropdown.svelte +0 -89
  22. package/src/lib/components/auth-modal.svelte +0 -114
  23. package/src/lib/components/avatar.svelte +0 -29
  24. package/src/lib/components/channel-header.svelte +0 -73
  25. package/src/lib/components/create-channel-modal.svelte +0 -137
  26. package/src/lib/components/edit-channel-modal.svelte +0 -234
  27. package/src/lib/components/event-card.svelte +0 -221
  28. package/src/lib/components/event-feed.svelte +0 -50
  29. package/src/lib/components/homepage.svelte +0 -86
  30. package/src/lib/components/json-editor.svelte +0 -57
  31. package/src/lib/components/keys-and-tokens-page.svelte +0 -216
  32. package/src/lib/components/keys-modal.svelte +0 -120
  33. package/src/lib/components/message-bar.svelte +0 -290
  34. package/src/lib/components/mint-token-modal.svelte +0 -141
  35. package/src/lib/components/ref-link.svelte +0 -33
  36. package/src/lib/components/ref-side-sheet.svelte +0 -105
  37. package/src/lib/components/server-config-modal.svelte +0 -141
  38. package/src/lib/components/server-config-page.svelte +0 -130
  39. package/src/lib/components/sidebar.svelte +0 -144
  40. package/src/lib/components/status-bar.svelte +0 -40
  41. package/src/lib/pretty-json.test.ts +0 -200
  42. package/src/lib/pretty-json.ts +0 -79
  43. package/src/lib/time.ts +0 -38
  44. package/src/lib/zooid-uri.test.ts +0 -102
  45. package/src/lib/zooid-uri.ts +0 -74
  46. package/src/main.ts +0 -7
  47. package/src/vite-env.d.ts +0 -2
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 zooid-ai
3
+ Copyright (c) 2026 Zooid contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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