agent-ws 1.0.2 → 1.0.3
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/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -798,7 +798,7 @@ function checkClaudeCli(claudePath = "claude") {
|
|
|
798
798
|
}
|
|
799
799
|
|
|
800
800
|
// src/cli.ts
|
|
801
|
-
var VERSION = true ? "1.0.
|
|
801
|
+
var VERSION = true ? "1.0.3" : "0.0.0-dev";
|
|
802
802
|
var program = new Command();
|
|
803
803
|
program.name("agent-ws").description("WebSocket bridge for CLI AI agents (Claude, Codex)").version(VERSION).option("-p, --port <port>", "WebSocket server port", "9999").option("-H, --host <host>", "WebSocket server host", "localhost").option("-c, --claude-path <path>", "Path to Claude CLI", "claude").option("--codex-path <path>", "Path to Codex CLI", "codex").option("-t, --timeout <seconds>", "Process timeout in seconds", "300").option("--log-level <level>", "Log level (debug, info, warn, error)", "info").option("--origins <origins>", "Comma-separated allowed origins").action(async (opts) => {
|
|
804
804
|
console.log(`
|