@slock-ai/daemon 0.55.3 → 0.55.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
@@ -15214,7 +15214,8 @@ var RUNTIMES = [
15214
15214
  { id: "copilot", displayName: "Copilot CLI", binary: "copilot", supported: true },
15215
15215
  { id: "cursor", displayName: "Cursor CLI", binary: "cursor-agent", supported: true },
15216
15216
  { id: "gemini", displayName: "Gemini CLI", binary: "gemini", supported: true },
15217
- { id: "opencode", displayName: "OpenCode", binary: "opencode", supported: true }
15217
+ { id: "opencode", displayName: "OpenCode", binary: "opencode", supported: true },
15218
+ { id: "pi", displayName: "Pi CLI", binary: "pi", supported: true }
15218
15219
  ];
15219
15220
  function getRuntimeDisplayName(id) {
15220
15221
  return RUNTIMES.find((r) => r.id === id)?.displayName ?? id;
@@ -15694,7 +15695,7 @@ function toKnowledgeErrorCode(errorCode2, status) {
15694
15695
  var knowledgeGetCommand = defineCommand(
15695
15696
  {
15696
15697
  name: "get",
15697
- description: "Fetch an agent knowledge topic from the current server",
15698
+ description: "Fetch a Slock Manual for Agents topic from the current server",
15698
15699
  arguments: ["<topic>"],
15699
15700
  options: [
15700
15701
  {
@@ -15722,7 +15723,7 @@ var knowledgeGetCommand = defineCommand(
15722
15723
  throw new CliError({
15723
15724
  code: toKnowledgeErrorCode(res.errorCode, res.status),
15724
15725
  message: res.error ?? `HTTP ${res.status}`,
15725
- suggestedNextAction: res.suggestedNextAction ?? (res.errorCode === "knowledge_not_found" ? "Run `slock knowledge get index` to see all available knowledge topics." : void 0)
15726
+ suggestedNextAction: res.suggestedNextAction ?? (res.errorCode === "knowledge_not_found" ? "Run `slock manual get index` to see all available manual topics." : void 0)
15726
15727
  });
15727
15728
  }
15728
15729
  const data = res.data;
@@ -18476,7 +18477,9 @@ var threadCmd = program.command("thread").description("Thread attention operatio
18476
18477
  registerThreadUnfollowCommand(threadCmd);
18477
18478
  var serverCmd = program.command("server").description("Server / workspace introspection");
18478
18479
  registerServerInfoCommand(serverCmd);
18479
- var knowledgeCmd = program.command("knowledge").description("Agent knowledge retrieval (canonical Slock product knowledge topics)");
18480
+ var manualCmd = program.command("manual").description("Slock Manual for Agents retrieval (canonical operating topics)");
18481
+ registerKnowledgeGetCommand(manualCmd);
18482
+ var knowledgeCmd = program.command("knowledge").description("Legacy alias for `slock manual`");
18480
18483
  registerKnowledgeGetCommand(knowledgeCmd);
18481
18484
  var messageCmd = program.command("message").description("Message operations");
18482
18485
  registerSendCommand(messageCmd);
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@slock-ai/cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module"
5
5
  }
package/dist/core.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  resolveSlockCliPath,
10
10
  resolveWorkspaceDirectoryPath,
11
11
  scanWorkspaceDirectories
12
- } from "./chunk-DLB2KVD7.js";
12
+ } from "./chunk-S5AEBH3V.js";
13
13
  import {
14
14
  subscribeDaemonLogs
15
15
  } from "./chunk-M2KQBJR3.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-DLB2KVD7.js";
6
+ } from "./chunk-S5AEBH3V.js";
7
7
  import "./chunk-M2KQBJR3.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.55.3",
3
+ "version": "0.55.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "slock-daemon": "dist/index.js"