claudedesk 1.0.8 → 1.0.10
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 +13 -2
- package/dist/cli.js +1 -1
- package/dist/client/assets/index-BU7vFCwc.js +780 -0
- package/dist/client/assets/index-F_VmwoOu.css +1 -0
- package/dist/client/index.html +2 -2
- package/dist/core/terminal-session.d.ts +2 -0
- package/dist/core/terminal-session.d.ts.map +1 -1
- package/dist/core/terminal-session.js +33 -3
- package/dist/core/terminal-session.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/client/assets/index-CKCS7eGw.js +0 -780
- package/dist/client/assets/index-TIvIB3-o.css +0 -1
package/README.md
CHANGED
|
@@ -52,6 +52,17 @@ It is not an IDE. It is not a replacement for Claude Code. It is a session manag
|
|
|
52
52
|
- **Quota Tracking** - Monitor your Claude API usage and costs
|
|
53
53
|
- **GitHub/GitLab OAuth** - Push and create PRs using OAuth tokens
|
|
54
54
|
- **Plan Mode** - Review and approve Claude's plan before execution
|
|
55
|
+
- **Message Queue** - Queue up to 10 messages while Claude is working, with queue manager to preview, reorder, and remove pending prompts
|
|
56
|
+
- **Stop/Cancel** - Stop Claude mid-generation with Escape key or Stop button; partial responses are preserved with cancellation marker
|
|
57
|
+
- **Queue Resume Controls** - After stopping, choose to resume queue processing or clear all pending messages
|
|
58
|
+
|
|
59
|
+
## Keyboard Shortcuts
|
|
60
|
+
|
|
61
|
+
| Shortcut | Action |
|
|
62
|
+
|----------|--------|
|
|
63
|
+
| **Escape** | Stop Claude's current generation (preserves partial response) |
|
|
64
|
+
| **Enter** | Send message (in composer) |
|
|
65
|
+
| **Shift+Enter** | New line in composer |
|
|
55
66
|
|
|
56
67
|
## Installation
|
|
57
68
|
|
|
@@ -274,9 +285,9 @@ Returns server health status and version information. Used for Docker healthchec
|
|
|
274
285
|
"success": true,
|
|
275
286
|
"data": {
|
|
276
287
|
"status": "ok",
|
|
277
|
-
"version": "
|
|
288
|
+
"version": "1.0.10",
|
|
278
289
|
"uptime": 12345,
|
|
279
|
-
"timestamp": "
|
|
290
|
+
"timestamp": "2026-01-28T12:00:00.000Z"
|
|
280
291
|
}
|
|
281
292
|
}
|
|
282
293
|
```
|
package/dist/cli.js
CHANGED
|
@@ -89,7 +89,7 @@ ENVIRONMENT VARIABLES:
|
|
|
89
89
|
CLAUDEDESK_DATA_DIR Data directory path
|
|
90
90
|
ALLOW_REMOTE Set to 'true' to allow remote access
|
|
91
91
|
|
|
92
|
-
For more information, visit: https://github.com/
|
|
92
|
+
For more information, visit: https://github.com/carloluisito/claudedesk
|
|
93
93
|
`);
|
|
94
94
|
}
|
|
95
95
|
function printVersion() {
|