@choonkeat/agent-chat 0.3.0 → 0.5.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 (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -49,6 +49,7 @@ Agent (Claude, etc.)
49
49
  | `send_progress` | Send a non-blocking progress update. |
50
50
  | `send_verbal_progress` | Send a non-blocking spoken progress update. |
51
51
  | `check_messages` | Non-blocking check for queued user messages. |
52
+ | `export_chat_html` | Export the current chat as a self-contained HTML file. The browser walks its DOM and inlines uploaded images as base64 (clickable for full-size, or downsampled with `image_mode='thumbnail'`); the server writes the file to `./agent-chats/YYYY-MM-DD-{title}.html`. Requires a connected browser tab. |
52
53
 
53
54
  ## Installation
54
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@choonkeat/agent-chat",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "description": "A \"less intimidating\" chat UI for any agent",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,12 +19,12 @@
19
19
  },
20
20
  "license": "MIT",
21
21
  "optionalDependencies": {
22
- "@choonkeat/agent-chat-darwin-arm64": "0.3.0",
23
- "@choonkeat/agent-chat-darwin-x64": "0.3.0",
24
- "@choonkeat/agent-chat-linux-arm64": "0.3.0",
25
- "@choonkeat/agent-chat-linux-x64": "0.3.0",
26
- "@choonkeat/agent-chat-win32-arm64": "0.3.0",
27
- "@choonkeat/agent-chat-win32-x64": "0.3.0"
22
+ "@choonkeat/agent-chat-darwin-arm64": "0.5.0",
23
+ "@choonkeat/agent-chat-darwin-x64": "0.5.0",
24
+ "@choonkeat/agent-chat-linux-arm64": "0.5.0",
25
+ "@choonkeat/agent-chat-linux-x64": "0.5.0",
26
+ "@choonkeat/agent-chat-win32-arm64": "0.5.0",
27
+ "@choonkeat/agent-chat-win32-x64": "0.5.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@playwright/test": "^1.58.2"