@kilogent/runner-dev 0.1.2 → 0.1.4

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 (3) hide show
  1. package/README.md +37 -11
  2. package/dist/cli.js +1348 -195
  3. package/package.json +2 -2
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@kilogent/runner-dev",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
- "description": "Lumi Crew runner daemon — claims jobs from your Ships and executes them as headless Claude sessions on your own machine.",
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.",
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.",