@slock-ai/daemon 0.53.1-alpha.2 → 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/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
@@ -9,7 +9,7 @@ import {
9
9
  resolveSlockCliPath,
10
10
  resolveWorkspaceDirectoryPath,
11
11
  scanWorkspaceDirectories
12
- } from "./chunk-RFGC74KF.js";
12
+ } from "./chunk-WJZJFOKB.js";
13
13
  import {
14
14
  subscribeDaemonLogs
15
15
  } from "./chunk-KNMCE6WB.js";
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  DAEMON_CLI_USAGE,
4
4
  DaemonCore,
5
5
  parseDaemonCliArgs
6
- } from "./chunk-RFGC74KF.js";
6
+ } from "./chunk-WJZJFOKB.js";
7
7
  import "./chunk-KNMCE6WB.js";
8
8
 
9
9
  // src/index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slock-ai/daemon",
3
- "version": "0.53.1-alpha.2",
3
+ "version": "0.53.1-alpha.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "slock-daemon": "dist/index.js"