@lumi.ai/runner 0.15.0 → 0.15.2
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
|
@@ -159,6 +159,9 @@ function browserDispatchProblem(input) {
|
|
|
159
159
|
if (input.shipBrowsersEnabled === false) {
|
|
160
160
|
return "Browser access is switched off for this whole Ship. Ask a captain to re-enable it in Settings; you cannot do this yourself.";
|
|
161
161
|
}
|
|
162
|
+
if (input.agentBrowserGrant === false) {
|
|
163
|
+
return "Your captain has taken your browser access away. Ask a captain to switch it back on for you in your agent settings; you cannot do this yourself.";
|
|
164
|
+
}
|
|
162
165
|
const browser = input.browser;
|
|
163
166
|
if (!browser) {
|
|
164
167
|
return "That browser is not connected to this Ship. Ask a human to install the Lumi browser extension and sign in; you cannot do this yourself.";
|
|
@@ -916,7 +919,7 @@ function mcpUrl(config2) {
|
|
|
916
919
|
}
|
|
917
920
|
|
|
918
921
|
// src/version.ts
|
|
919
|
-
var RUNNER_VERSION = true ? "0.15.
|
|
922
|
+
var RUNNER_VERSION = true ? "0.15.2" : "0.0.0-dev";
|
|
920
923
|
|
|
921
924
|
// src/auth.ts
|
|
922
925
|
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.2",
|
|
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.",
|