@slock-ai/daemon 0.53.1-alpha.3 → 0.53.1-alpha.4
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/chat-bridge.js +5 -11
- package/dist/{chunk-QVULOADZ.js → chunk-WJZJFOKB.js} +682 -256
- package/dist/cli/index.js +2 -1
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -14161,6 +14161,7 @@ var SERVER_CAPABILITY_MATRIX = {
|
|
|
14161
14161
|
var RUNTIMES = [
|
|
14162
14162
|
{ id: "claude", displayName: "Claude Code", binary: "claude", supported: true },
|
|
14163
14163
|
{ id: "codex", displayName: "Codex CLI", binary: "codex", supported: true },
|
|
14164
|
+
{ id: "antigravity", displayName: "Antigravity CLI", binary: "agy", supported: true },
|
|
14164
14165
|
{ id: "kimi", displayName: "Kimi CLI", binary: "kimi", supported: true },
|
|
14165
14166
|
{ id: "copilot", displayName: "Copilot CLI", binary: "copilot", supported: true },
|
|
14166
14167
|
{ id: "cursor", displayName: "Cursor CLI", binary: "cursor-agent", supported: true },
|
|
@@ -14462,7 +14463,7 @@ async function resolveActionInput(input = process.stdin) {
|
|
|
14462
14463
|
if (input.isTTY) {
|
|
14463
14464
|
throw new PrepareActionInputError("MISSING_ACTION", missingActionMessage());
|
|
14464
14465
|
}
|
|
14465
|
-
const raw = await readStream(input);
|
|
14466
|
+
const raw = (await readStream(input)).replace(/^\uFEFF/, "");
|
|
14466
14467
|
if (raw.trim().length === 0) {
|
|
14467
14468
|
throw new PrepareActionInputError("MISSING_ACTION", missingActionMessage());
|
|
14468
14469
|
}
|
package/dist/core.js
CHANGED
package/dist/index.js
CHANGED