agentgui 1.0.747 → 1.0.749
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/CLAUDE.md +17 -0
- package/database.js +3 -1337
- package/lib/db-queries.js +1340 -0
- package/lib/ws-handlers-conv.js +2 -2
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -257,6 +257,23 @@ Server broadcasts:
|
|
|
257
257
|
|
|
258
258
|
**WSOptimizer** (`lib/ws-optimizer.js`): Per-client priority queue. High-priority events flush immediately; normal/low batch by latency tier (16ms excellent → 200ms bad). Rate limit: 100 msg/sec — overflow is re-queued (not dropped). No `lastKey` deduplication (was removed — caused valid event drops).
|
|
259
259
|
|
|
260
|
+
### WS RPC Methods (85 total)
|
|
261
|
+
|
|
262
|
+
**agent:** `agent.auth`, `agent.authstat`, `agent.desc`, `agent.get`, `agent.ls`, `agent.models`, `agent.search`, `agent.subagents`, `agent.update`
|
|
263
|
+
**auth:** `auth.configs`, `auth.save`
|
|
264
|
+
**codex:** `codex.complete`, `codex.relay`, `codex.start`, `codex.status`
|
|
265
|
+
**conv:** `conv.cancel`, `conv.chunks`, `conv.chunks.earlier`, `conv.del`, `conv.del.all`, `conv.export`, `conv.full`, `conv.get`, `conv.inject`, `conv.ls`, `conv.new`, `conv.prune`, `conv.run-script`, `conv.scripts`, `conv.search`, `conv.steer`, `conv.stop-script`, `conv.sync`, `conv.tags`, `conv.upd`
|
|
266
|
+
**gemini:** `gemini.complete`, `gemini.relay`, `gemini.start`, `gemini.status`
|
|
267
|
+
**git:** `git.check`, `git.push`
|
|
268
|
+
**msg:** `msg.get`, `msg.ls`, `msg.ls.earlier`, `msg.send`, `msg.stream`
|
|
269
|
+
**q:** `q.del`, `q.ls`, `q.upd`
|
|
270
|
+
**run:** `run.cancel`, `run.del`, `run.get`, `run.new`, `run.resume`, `run.search`, `run.stream`, `run.stream.get`, `run.wait`
|
|
271
|
+
**sess:** `sess.chunks`, `sess.exec`, `sess.get`, `sess.latest`
|
|
272
|
+
**speech:** `speech.download`, `speech.status`
|
|
273
|
+
**thread:** `thread.copy`, `thread.del`, `thread.get`, `thread.history`, `thread.new`, `thread.run.cancel`, `thread.run.steer`, `thread.run.stream`, `thread.run.stream.get`, `thread.search`, `thread.upd`
|
|
274
|
+
**tools:** `tools.list`
|
|
275
|
+
**util:** `clone`, `discover.claude`, `folders`, `home`, `import.claude`, `voice.cache`, `voice.generate`, `voices`, `ws.stats`
|
|
276
|
+
|
|
260
277
|
## Steering
|
|
261
278
|
|
|
262
279
|
Steering stops the running agent (SIGKILL) and immediately resumes with the new message:
|