@lumi.ai/runner 0.7.0 → 0.8.0

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 +12 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -116,6 +116,11 @@ function effectiveAgentTools(agent) {
116
116
  };
117
117
  }
118
118
 
119
+ // ../shared/dist/browser.js
120
+ var DEFAULT_BROWSER_CONSENT_MS = 60 * 60 * 1e3;
121
+ var LONG_BROWSER_CONSENT_MS = 24 * 60 * 60 * 1e3;
122
+ var MAX_BROWSER_SCREENSHOT_BYTES = 2 * 1024 * 1024;
123
+
119
124
  // ../shared/dist/chat.js
120
125
  var MAX_CHAT_MESSAGE_CHARS = 8e3;
121
126
  var MAX_CHAT_MESSAGES_IN_PROMPT = 40;
@@ -169,6 +174,12 @@ var COLLECTIONS = {
169
174
  jobs: "jobs",
170
175
  /** `ships/{shipId}/runners/{runnerId}` — ship-scoped live daemon mirror (Daemons page). */
171
176
  runners: "runners",
177
+ /**
178
+ * `ships/{shipId}/browsers/{browserId}` — Chrome profiles people lent this Ship (PRD §15.44;
179
+ * see browser.ts). The doc id is a per-profile UUID the extension mints, NOT a uid: one person
180
+ * may lend two profiles, and the same profile may serve several Ships.
181
+ */
182
+ browsers: "browsers",
172
183
  /** `ships/{shipId}/notifications/{id}` — per-member in-app notifications. */
173
184
  notifications: "notifications",
174
185
  /** `ships/{shipId}/usage_daily/{yyyy-mm-dd}` — token-tracking aggregates. */
@@ -801,7 +812,7 @@ function mcpUrl(config2) {
801
812
  }
802
813
 
803
814
  // src/version.ts
804
- var RUNNER_VERSION = true ? "0.7.0" : "0.0.0-dev";
815
+ var RUNNER_VERSION = true ? "0.8.0" : "0.0.0-dev";
805
816
 
806
817
  // src/auth.ts
807
818
  import { signInWithCustomToken } from "firebase/auth";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumi.ai/runner",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
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.",