@kilogent/runner 0.1.7 → 0.1.9

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/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@kilogent/runner",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "type": "module",
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.",
5
+ "description": "Kilogent's internal server runner — leases the agent jobs Kilogent's scheduler places on this server and runs each as a sandboxed headless agent session. Not for customer installation.",
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.",
7
7
  "main": "./dist/cli.js",
8
8
  "//files": "Explicit file list, NOT the `dist` directory: build.mjs also emits dist/cli.js.map, which embeds the full original TypeScript of every bundled module (the runner's own source AND all of @lumi/crew-shared) via sourcesContent. That is 379 kB of private source on a public registry. The map stays on disk for local debugging; it just never ships.",
9
9
  "files": [
10
10
  "dist/cli.js",
11
+ "dist/kg-session-launcher.mjs",
12
+ "dist/provision-root.mjs",
13
+ "npm-shrinkwrap.json",
11
14
  "README.md",
12
15
  "LICENSE"
13
16
  ],
@@ -23,11 +26,8 @@
23
26
  "url": "https://github.com/codebridger/lumi/issues"
24
27
  },
25
28
  "keywords": [
26
- "lumi",
27
- "lumi-crew",
28
- "claude",
29
+ "kilogent",
29
30
  "agent",
30
- "daemon",
31
31
  "runner",
32
32
  "cli"
33
33
  ],
@@ -37,6 +37,12 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
+ "//kilogent": "What a server needs from its host to run this release, read from the REGISTRY by an older server before it updates. `sessionImage` is stamped by release-runner.yml (the digest this release pulls); `launcherProtocol` is the session launcher contract this bundle speaks; `runscMin` is the oldest gVisor the sandbox-image lane passed. build.mjs bakes all three in, and refuses a release build without the image.",
41
+ "kilogent": {
42
+ "launcherProtocol": 2,
43
+ "runscMin": "release-20260202.0",
44
+ "sessionImage": "europe-west1-docker.pkg.dev/kilogent-crew-prod/sessions/session@sha256:247ecb20c7ee497a75cb02dc8397b6db2375a04923b727ab3e673ff0eccf0559"
45
+ },
40
46
  "scripts": {
41
47
  "build": "tsc -p tsconfig.json --noEmit && node build.mjs",
42
48
  "build:watch": "tsc -p tsconfig.json --noEmit --watch",