@kilogent/runner-dev 0.1.5 → 0.1.6
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/README.md +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ each publishes only a `latest` tag, and a machine changes environment by install
|
|
|
31
31
|
| | |
|
|
32
32
|
|---|---|
|
|
33
33
|
| **Node.js** | 20 or newer |
|
|
34
|
-
| **An engine CLI** | the
|
|
34
|
+
| **An engine CLI** | fetched for you — the daemon installs what your crews need (a few hundred MB each). Bring your own with `CREW_<ENGINE>_BIN`, or decline the lot with `config set autoInstallEngines off`. See [Engines](#engines). |
|
|
35
35
|
| **git / gh** | only if your agents work on GitHub repositories |
|
|
36
36
|
| **A Lumi Crew account** | with at least one Ship — [app.kilogent.com](https://app.kilogent.com) |
|
|
37
37
|
|
package/dist/cli.js
CHANGED
|
@@ -1257,7 +1257,7 @@ import os from "node:os";
|
|
|
1257
1257
|
import path from "node:path";
|
|
1258
1258
|
|
|
1259
1259
|
// src/version.ts
|
|
1260
|
-
var RUNNER_VERSION = true ? "0.1.
|
|
1260
|
+
var RUNNER_VERSION = true ? "0.1.6" : "0.0.0-dev";
|
|
1261
1261
|
var RUNNER_PACKAGE = true ? "@kilogent/runner-dev" : "@kilogent/runner-dev";
|
|
1262
1262
|
var RUNNER_BIN = true ? "kilogent-runner-dev" : "kilogent-runner-dev";
|
|
1263
1263
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kilogent/runner-dev",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Lumi Crew runner daemon — claims jobs from your Ships and executes them as headless agent sessions (Claude Code today) 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.",
|