infinicode 2.8.25 → 2.8.26

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.
@@ -220,16 +220,15 @@ program
220
220
  console.log(chalk.green(' ✓ saved hub profile to ~/.robopark/hub-profile.json'));
221
221
  });
222
222
  program
223
- .command('add-robot')
223
+ .command('add-robot <name>')
224
224
  .description('Mint a scheduler enrollment token and print (or run) the robot setup one-liner')
225
- .requiredOption('--name <name>', 'robot name, e.g. robobmw')
226
225
  .option('--site <site>', 'physical location, e.g. "Tel Aviv"')
227
226
  .option('--hub-url <url>', 'hub federation URL (defaults to saved hub profile / auto-discovery)')
228
227
  .option('--token <token>', 'shared mesh token (defaults to saved hub profile / auto-discovery)')
229
228
  .option('--scheduler-url <url>', 'scheduler base URL (defaults to saved hub profile / auto-discovery)')
230
229
  .option('--start', 'start the robot node on this machine now, instead of printing the one-liner')
231
- .action(async (opts) => {
232
- await roboparkAddRobot(config, opts);
230
+ .action(async (name, opts) => {
231
+ await roboparkAddRobot(config, { name, ...opts });
233
232
  });
234
233
  program
235
234
  .command('agent-up')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinicode",
3
- "version": "2.8.25",
3
+ "version": "2.8.26",
4
4
  "description": "OpenKernel — provider-agnostic AI execution kernel. Native coding agent + mission-driven execution runtime.",
5
5
  "type": "module",
6
6
  "main": "./dist/kernel/index.js",
@@ -73,6 +73,7 @@
73
73
  "node": ">=20"
74
74
  },
75
75
  "dependencies": {
76
+ "@anthropic-ai/claude-code": "^2.1.207",
76
77
  "@modelcontextprotocol/sdk": "^1.29.0",
77
78
  "chalk": "^5.3.0",
78
79
  "commander": "^12.1.0",
@@ -1159,7 +1159,15 @@ async def health_checker():
1159
1159
  if resp.status_code == 200:
1160
1160
  new_status = "online"
1161
1161
  else:
1162
- new_status = "offline"
1162
+ # A bare LiveKit server (no sidecar webhook
1163
+ # service in front of it, e.g. `--dev` mode
1164
+ # with no separate health endpoint) has no
1165
+ # /health route and returns 404 here even
1166
+ # though it's genuinely up — LiveKit's own
1167
+ # root path returns "OK" instead. Fall back
1168
+ # to that before declaring it offline.
1169
+ resp2 = await client.get(server["webhook_url"])
1170
+ new_status = "online" if resp2.status_code == 200 else "offline"
1163
1171
  except:
1164
1172
  new_status = "offline"
1165
1173