genbox-agent 1.0.123 → 1.0.125
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/dist/genbox-agent.d.ts +18 -0
- package/dist/genbox-agent.d.ts.map +1 -0
- package/dist/genbox-agent.js +1170 -0
- package/dist/genbox-agent.js.map +1 -0
- package/dist/readers/gemini-session-reader.d.ts +7 -0
- package/dist/readers/gemini-session-reader.d.ts.map +1 -1
- package/dist/readers/gemini-session-reader.js +154 -12
- package/dist/readers/gemini-session-reader.js.map +1 -1
- package/dist/server/index.js +2 -2
- package/dist/server/index.js.map +1 -1
- package/dist/server/port-finder.js +3 -3
- package/dist/server/port-finder.js.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Unified Genbox Agent Daemon
|
|
4
|
+
*
|
|
5
|
+
* WebSocket client that runs on each genbox VM and supports multiple AI CLI tools:
|
|
6
|
+
* - Claude Code
|
|
7
|
+
* - Gemini CLI
|
|
8
|
+
* - OpenAI Codex CLI
|
|
9
|
+
*
|
|
10
|
+
* Features:
|
|
11
|
+
* 1. Connects to the backend monitoring service
|
|
12
|
+
* 2. Receives remote commands (send_prompt, send_keystroke, create_session)
|
|
13
|
+
* 3. Manages dtach sessions for all supported AI CLIs
|
|
14
|
+
* 4. Streams terminal output back to the dashboard
|
|
15
|
+
* 5. Auto-detects installed AI CLIs
|
|
16
|
+
*/
|
|
17
|
+
export {};
|
|
18
|
+
//# sourceMappingURL=genbox-agent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"genbox-agent.d.ts","sourceRoot":"","sources":["../src/genbox-agent.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;GAcG"}
|