@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/{chunk-DLB2KVD7.js → chunk-S5AEBH3V.js} +599 -121
- package/dist/cli/index.js +7 -4
- package/dist/cli/package.json +1 -1
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
|
|
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
|
|
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
|
|
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);
|
package/dist/cli/package.json
CHANGED
package/dist/core.js
CHANGED
package/dist/index.js
CHANGED