@choonkeat/agent-chat 0.5.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.
- package/README.md +2 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ Same conversation, two views. The terminal shows MCP tool calls and code diffs.
|
|
|
25
25
|
- **Canvas drawing** — agents can draw diagrams and visualizations on an interactive canvas
|
|
26
26
|
- **Voice conversation** — speak to your agent and hear responses via text-to-speech
|
|
27
27
|
- **Quick replies** — agents can offer clickable response buttons for common actions
|
|
28
|
+
- **Permission prompts in chat** — when Claude Code is launched with `--dangerously-load-development-channels server:swe-swe-agent-chat`, tool-use permission prompts are intercepted from stdin and surfaced as Allow/Deny quick replies in the chat UI (and spoken aloud in voice mode), instead of blocking on a TUI prompt
|
|
28
29
|
|
|
29
30
|
## How it works
|
|
30
31
|
|
|
@@ -49,7 +50,7 @@ Agent (Claude, etc.)
|
|
|
49
50
|
| `send_progress` | Send a non-blocking progress update. |
|
|
50
51
|
| `send_verbal_progress` | Send a non-blocking spoken progress update. |
|
|
51
52
|
| `check_messages` | Non-blocking check for queued user messages. |
|
|
52
|
-
| `
|
|
53
|
+
| `export_chat_md` | Export the current chat as a markdown file (HTML-table format that renders as iMessage-style left/right bubbles via a sibling `index.html` and as a normal markdown doc on GitHub/GitLab). Writes `./agent-chats/YYYY-MM-DD-NN-{title}.md`, copies image attachments to `./agent-chats/assets/`, and upserts the chat-archive `index.html`. First export also writes embedded `viewer.css` / `viewer.js` into the assets directory. |
|
|
53
54
|
|
|
54
55
|
## Installation
|
|
55
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@choonkeat/agent-chat",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.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.
|
|
23
|
-
"@choonkeat/agent-chat-darwin-x64": "0.
|
|
24
|
-
"@choonkeat/agent-chat-linux-arm64": "0.
|
|
25
|
-
"@choonkeat/agent-chat-linux-x64": "0.
|
|
26
|
-
"@choonkeat/agent-chat-win32-arm64": "0.
|
|
27
|
-
"@choonkeat/agent-chat-win32-x64": "0.
|
|
22
|
+
"@choonkeat/agent-chat-darwin-arm64": "0.7.0",
|
|
23
|
+
"@choonkeat/agent-chat-darwin-x64": "0.7.0",
|
|
24
|
+
"@choonkeat/agent-chat-linux-arm64": "0.7.0",
|
|
25
|
+
"@choonkeat/agent-chat-linux-x64": "0.7.0",
|
|
26
|
+
"@choonkeat/agent-chat-win32-arm64": "0.7.0",
|
|
27
|
+
"@choonkeat/agent-chat-win32-x64": "0.7.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@playwright/test": "^1.58.2"
|