@lumi.ai/runner 0.5.11 → 0.5.12

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.
Files changed (2) hide show
  1. package/dist/cli.js +6 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -279,6 +279,7 @@ var WORKSPACE_LABELS = {
279
279
  run_report: "Writing its run report",
280
280
  knowledge_get: "Reading the knowledge base",
281
281
  knowledge_write: "Writing to the knowledge base",
282
+ knowledge_folder: "Organising the knowledge base",
282
283
  media_get: "Opening an attachment",
283
284
  media_attach: "Attaching a file",
284
285
  memory_write: "Updating its notes",
@@ -320,6 +321,10 @@ function workspaceDetail(tool, input) {
320
321
  return str(input, "slug") ?? str(input, "find") ?? "the catalog";
321
322
  case "knowledge_write":
322
323
  return str(input, "slug");
324
+ // The PATH, which is a name an operator can read. Never `into` or `rename` alone — a detail
325
+ // that says only "Runbooks" is indistinguishable from the folder it moved away from.
326
+ case "knowledge_folder":
327
+ return str(input, "path");
323
328
  case "media_get":
324
329
  return str(input, "mediaId");
325
330
  case "media_attach":
@@ -734,7 +739,7 @@ function mcpUrl(config2) {
734
739
  }
735
740
 
736
741
  // src/version.ts
737
- var RUNNER_VERSION = true ? "0.5.11" : "0.0.0-dev";
742
+ var RUNNER_VERSION = true ? "0.5.12" : "0.0.0-dev";
738
743
 
739
744
  // src/auth.ts
740
745
  import { signInWithCustomToken } from "firebase/auth";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumi.ai/runner",
3
- "version": "0.5.11",
3
+ "version": "0.5.12",
4
4
  "type": "module",
5
5
  "description": "Lumi Crew runner daemon — claims jobs from your Ships and executes them as headless Claude sessions on your own machine.",
6
6
  "//name": "The ONLY package in this monorepo published to the public registry, so it is the one that does not follow the internal @lumi/crew-* convention: `@lumi` is not a scope we own, `@lumi.ai` is (the npm org). The workspace DIRECTORY stays packages/crew/runner — renaming the package is not renaming the folder.",