@kilogent/runner-dev 0.1.0 → 0.1.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @kilogent/runner
2
2
 
3
- The **runner daemon** for [Lumi Crew](https://crew.kilogent.com) — your agentic organization
3
+ The **runner daemon** for [Lumi Crew](https://app.kilogent.com) — your agentic organization
4
4
  workspace.
5
5
 
6
6
  Crew agents don't run in the cloud. They run **on your machine**, in your checkouts, with your
@@ -32,7 +32,7 @@ each publishes only a `latest` tag, and a machine changes environment by install
32
32
  | **Node.js** | 20 or newer |
33
33
  | **Claude Code** | the `claude` CLI on your `PATH` ([install](https://claude.com/claude-code)) |
34
34
  | **git / gh** | only if your agents work on GitHub repositories |
35
- | **A Lumi Crew account** | with at least one Ship — [crew.kilogent.com](https://crew.kilogent.com) |
35
+ | **A Lumi Crew account** | with at least one Ship — [app.kilogent.com](https://app.kilogent.com) |
36
36
 
37
37
  The daemon is a *client*. It signs in as you, and every write it makes is checked server-side
38
38
  against your Ship membership. No service-account key ever touches your machine.
package/dist/cli.js CHANGED
@@ -1141,13 +1141,14 @@ import os from "node:os";
1141
1141
  import path from "node:path";
1142
1142
 
1143
1143
  // src/version.ts
1144
- var RUNNER_VERSION = true ? "0.1.0" : "0.0.0-dev";
1144
+ var RUNNER_VERSION = true ? "0.1.1" : "0.0.0-dev";
1145
1145
  var RUNNER_PACKAGE = true ? "@kilogent/runner-dev" : "@kilogent/runner-dev";
1146
1146
  var RUNNER_BIN = true ? "kilogent-runner-dev" : "kilogent-runner-dev";
1147
1147
 
1148
1148
  // src/config.ts
1149
- var DEFAULT_PROJECT_ID = "lumi-afb7d";
1150
- var DEFAULT_MCP_URL = "https://crew.kilogent.com/mcp";
1149
+ var IS_DEV_BUILD = RUNNER_PACKAGE.endsWith("-dev");
1150
+ var DEFAULT_PROJECT_ID = IS_DEV_BUILD ? "lumi-afb7d" : "kilogent-crew-prod";
1151
+ var DEFAULT_MCP_URL = IS_DEV_BUILD ? "https://dev.app.kilogent.com/mcp" : "https://app.kilogent.com/mcp";
1151
1152
  var LEGACY_DIR_NAME = ".crew-runner";
1152
1153
  var DIR_NAME = `.${RUNNER_BIN}`;
1153
1154
  var LUMI_DIR_NAME = ".lumi-runner";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kilogent/runner-dev",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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.",
@@ -13,7 +13,7 @@
13
13
  ],
14
14
  "license": "MIT",
15
15
  "author": "CodeBridger",
16
- "homepage": "https://crew.kilogent.com",
16
+ "homepage": "https://app.kilogent.com",
17
17
  "repository": {
18
18
  "type": "git",
19
19
  "url": "git+https://github.com/codebridger/lumi.git",