@lumi.ai/runner 0.15.20 → 0.15.22
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.js +4 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -158,6 +158,9 @@ var ASSISTANT_TOOL_AUTHORITY = Object.freeze({
|
|
|
158
158
|
task_get: "member",
|
|
159
159
|
knowledge_get: "member",
|
|
160
160
|
chat_get: "member",
|
|
161
|
+
// `firestore.rules` says `allow get, list: if isShipReader` for a playbook — a member can
|
|
162
|
+
// already open every one of these in the app, so asking for them changes nothing about who may.
|
|
163
|
+
workflow_read: "member",
|
|
161
164
|
// Writes a member can already make by clicking.
|
|
162
165
|
task_create: "member",
|
|
163
166
|
task_comment: "member",
|
|
@@ -1065,7 +1068,7 @@ function mcpUrl(config2) {
|
|
|
1065
1068
|
}
|
|
1066
1069
|
|
|
1067
1070
|
// src/version.ts
|
|
1068
|
-
var RUNNER_VERSION = true ? "0.15.
|
|
1071
|
+
var RUNNER_VERSION = true ? "0.15.22" : "0.0.0-dev";
|
|
1069
1072
|
|
|
1070
1073
|
// src/auth.ts
|
|
1071
1074
|
import { signInWithCustomToken } from "firebase/auth";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumi.ai/runner",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.22",
|
|
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.",
|