@unctad-ai/voice-agent 5.4.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 (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +39 -0
  3. package/package.json +21 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @unctad-ai/voice-agent
2
+
3
+ ## 5.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 732df55: feat: add @unctad-ai/voice-agent meta-package that bundles core, registries, and ui into a single dependency — eliminates React duplication and version drift in consuming projects
8
+
9
+ ### Patch Changes
10
+
11
+ - @unctad-ai/voice-agent-core@5.4.0
12
+ - @unctad-ai/voice-agent-registries@5.4.0
13
+ - @unctad-ai/voice-agent-ui@5.4.0
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # @unctad-ai/voice-agent
2
+
3
+ Meta-package that installs all client-side voice-agent-kit packages in one dependency.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @unctad-ai/voice-agent
9
+ ```
10
+
11
+ This replaces installing the three packages individually:
12
+
13
+ ```diff
14
+ - "@unctad-ai/voice-agent-core": "latest",
15
+ - "@unctad-ai/voice-agent-ui": "latest",
16
+ - "@unctad-ai/voice-agent-registries": "latest",
17
+ + "@unctad-ai/voice-agent": "latest"
18
+ ```
19
+
20
+ ## What's included
21
+
22
+ | Package | Description |
23
+ |---------|-------------|
24
+ | `@unctad-ai/voice-agent-core` | Hooks, types, WebSocket client, VAD |
25
+ | `@unctad-ai/voice-agent-ui` | VoiceAgentProvider, GlassCopilotPanel, VoiceOrb |
26
+ | `@unctad-ai/voice-agent-registries` | Form fields, UI actions, client tool handlers |
27
+
28
+ ## Imports
29
+
30
+ Imports stay the same — use the individual package names:
31
+
32
+ ```ts
33
+ import { VoiceAgentProvider, GlassCopilotPanel } from '@unctad-ai/voice-agent-ui';
34
+ import { useProgressiveFields } from '@unctad-ai/voice-agent-registries';
35
+ ```
36
+
37
+ ## Server
38
+
39
+ `@unctad-ai/voice-agent-server` is **not** included — install it separately in your server's `package.json`.
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@unctad-ai/voice-agent",
3
+ "version": "5.4.0",
4
+ "description": "Meta-package for voice-agent-kit client packages — installs core, registries, and ui in one dependency",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/unctad-ai/voice-agent-kit.git",
9
+ "directory": "packages/voice-agent"
10
+ },
11
+ "peerDependencies": {
12
+ "react": ">=18",
13
+ "react-dom": ">=18",
14
+ "react-router": ">=6"
15
+ },
16
+ "dependencies": {
17
+ "@unctad-ai/voice-agent-core": "5.4.0",
18
+ "@unctad-ai/voice-agent-ui": "5.4.0",
19
+ "@unctad-ai/voice-agent-registries": "5.4.0"
20
+ }
21
+ }