infinicode 2.8.37 → 2.8.38

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.
@@ -7,5 +7,7 @@ export interface AddRobotOptions extends ExplicitContextOpts {
7
7
  /** Force a specific park-map pad/character preset id instead of the
8
8
  * fuzzy name-based match below — e.g. `--character jaguar`. */
9
9
  character?: string;
10
+ lan?: boolean;
11
+ tailscale?: boolean;
10
12
  }
11
13
  export declare function roboparkAddRobot(config: Conf<InfinicodeConfig>, opts: AddRobotOptions): Promise<void>;
@@ -73,6 +73,11 @@ export async function roboparkAddRobot(config, opts) {
73
73
  console.log(chalk.red(' ✗ --name is required, e.g. --name robobmw'));
74
74
  process.exit(1);
75
75
  }
76
+ if (opts.lan && opts.tailscale) {
77
+ console.log(chalk.red(' ✗ choose exactly one network mode: --lan or --tailscale'));
78
+ process.exit(1);
79
+ }
80
+ const network = opts.tailscale ? 'tailscale' : 'lan';
76
81
  const ctx = await resolveContext(opts);
77
82
  if (!ctx.schedulerUrl) {
78
83
  console.log(chalk.red(' ✗ no scheduler URL resolved. Pass --scheduler-url/--hub-url, run `robopark hub-use` first, or run this on/near the hub.'));
@@ -80,6 +85,7 @@ export async function roboparkAddRobot(config, opts) {
80
85
  }
81
86
  console.log(` scheduler: ${chalk.cyan(ctx.schedulerUrl)}`);
82
87
  console.log(` name: ${chalk.cyan(opts.name)}${ctx.site ? chalk.dim(' @ ' + ctx.site) : ''}`);
88
+ console.log(` network: ${chalk.cyan(network)}`);
83
89
  console.log();
84
90
  const characterId = opts.character?.trim() || await pickCharacterPreset(ctx.schedulerUrl, opts.name);
85
91
  if (characterId) {
@@ -114,6 +120,8 @@ export async function roboparkAddRobot(config, opts) {
114
120
  schedulerPort: ctx.schedulerUrl ? String(new URL(ctx.schedulerUrl).port || '8080') : undefined,
115
121
  enrollmentToken: minted.enrollment_token,
116
122
  start: true,
123
+ lan: opts.lan,
124
+ tailscale: opts.tailscale,
117
125
  });
118
126
  return;
119
127
  }
@@ -131,6 +139,7 @@ export async function roboparkAddRobot(config, opts) {
131
139
  const schedulerPort = new URL(ctx.schedulerUrl).port || '8080';
132
140
  argv.push('--scheduler-port', schedulerPort);
133
141
  }
142
+ argv.push(network === 'tailscale' ? '--tailscale' : '--lan');
134
143
  argv.push('--enrollment-token', minted.enrollment_token, '--start', '--auto-start');
135
144
  console.log(chalk.dim(` run this ON THE ROBOT${characterId ? ` (binds to pad: ${characterId})` : ''}:`));
136
145
  console.log(' ' + chalk.cyan(commandString(argv)));
@@ -0,0 +1,8 @@
1
+ type Options = {
2
+ schedulerUrl: string;
3
+ workerEnv: string;
4
+ rotate?: boolean;
5
+ };
6
+ /** Provision the scheduler's shared worker secret into a ROBOVOICE .env file. */
7
+ export declare function roboparkSecrets(opts: Options): Promise<void>;
8
+ export {};
@@ -0,0 +1,41 @@
1
+ import { mkdir, readFile, rename, writeFile } from 'node:fs/promises';
2
+ import { dirname } from 'node:path';
3
+ import chalk from 'chalk';
4
+ function updateEnv(contents, token) {
5
+ const line = `ROBOPARK_AGENT_TOKEN=${token}`;
6
+ const re = /^ROBOPARK_AGENT_TOKEN=.*$/m;
7
+ return re.test(contents)
8
+ ? contents.replace(re, line)
9
+ : `${contents.trimEnd()}\n${line}\n`;
10
+ }
11
+ /** Provision the scheduler's shared worker secret into a ROBOVOICE .env file. */
12
+ export async function roboparkSecrets(opts) {
13
+ const base = opts.schedulerUrl.replace(/\/$/, '');
14
+ const response = await fetch(`${base}/api/settings/agent-token/provision`, {
15
+ method: 'POST',
16
+ headers: { 'content-type': 'application/json' },
17
+ body: JSON.stringify({ rotate: Boolean(opts.rotate) }),
18
+ });
19
+ if (!response.ok) {
20
+ throw new Error(`scheduler rejected secret provisioning (${response.status})`);
21
+ }
22
+ const body = await response.json();
23
+ if (!body.agent_token)
24
+ throw new Error('scheduler returned no agent token');
25
+ let current = '';
26
+ try {
27
+ current = await readFile(opts.workerEnv, 'utf8');
28
+ }
29
+ catch (err) {
30
+ if (err?.code !== 'ENOENT')
31
+ throw err;
32
+ }
33
+ const next = updateEnv(current, body.agent_token);
34
+ await mkdir(dirname(opts.workerEnv), { recursive: true });
35
+ const temp = `${opts.workerEnv}.tmp-${process.pid}`;
36
+ await writeFile(temp, next, { encoding: 'utf8', mode: 0o600 });
37
+ await rename(temp, opts.workerEnv);
38
+ console.log(chalk.green(` ✓ ROBOVOICE secret synchronized to ${opts.workerEnv}`));
39
+ if (opts.rotate)
40
+ console.log(chalk.yellow(' Restart the ROBOVOICE worker to use the rotated secret.'));
41
+ }
@@ -21,5 +21,8 @@ export interface SetupOptions {
21
21
  autoStart?: boolean;
22
22
  yes?: boolean;
23
23
  foreground?: boolean;
24
+ /** Robot transport. Defaults to LAN for backwards compatibility. */
25
+ lan?: boolean;
26
+ tailscale?: boolean;
24
27
  }
25
28
  export declare function roboparkSetup(config: Conf<InfinicodeConfig>, opts: SetupOptions): Promise<void>;
@@ -171,6 +171,12 @@ async function setupHub(config, opts, internal) {
171
171
  }
172
172
  }
173
173
  async function setupRobot(config, opts, ctx, internal) {
174
+ if (opts.lan && opts.tailscale) {
175
+ console.log(chalk.red(' ✗ choose exactly one robot network: --lan or --tailscale'));
176
+ return;
177
+ }
178
+ const network = opts.tailscale ? 'tailscale' : 'lan';
179
+ const networkFlag = network === 'tailscale' ? '--tailscale' : '--lan';
174
180
  const hubUrl = opts.hub ?? (ctx.hub ? `http://${ctx.hub.ip}:${internal.port}` : undefined);
175
181
  if (!hubUrl) {
176
182
  console.log(chalk.red(' ✗ no hub discovered. Pass --hub http://HUB_IP:47913'));
@@ -184,7 +190,7 @@ async function setupRobot(config, opts, ctx, internal) {
184
190
  displayName: internal.name,
185
191
  token: internal.token,
186
192
  seeds: [hubUrl],
187
- lan: true,
193
+ lan: network === 'lan',
188
194
  };
189
195
  config.set('federation', fed);
190
196
  const args = [
@@ -193,7 +199,7 @@ async function setupRobot(config, opts, ctx, internal) {
193
199
  '--port', String(internal.port),
194
200
  '--token', internal.token,
195
201
  '--seed', hubUrl,
196
- '--lan',
202
+ networkFlag,
197
203
  '--auto-update',
198
204
  '--supervised',
199
205
  ];
@@ -225,6 +231,7 @@ async function setupRobot(config, opts, ctx, internal) {
225
231
  console.log(' ' + chalk.cyan(`robopark ${previewAgentArgs.join(' ')}`));
226
232
  if (visionEnabled)
227
233
  console.log(' ' + chalk.cyan(`robopark ${visionAgentArgs.join(' ')}`));
234
+ console.log(chalk.dim(` network: ${network} (scheduler: ${schedulerUrl})`));
228
235
  console.log();
229
236
  if (opts.start) {
230
237
  const robotArgv = await infinicodeArgv(args);
@@ -20,6 +20,7 @@ import { roboparkDoctor } from './robopark/doctor.js';
20
20
  import { roboparkAddRobot } from './robopark/add-robot.js';
21
21
  import { saveHubProfile, clearHubProfile } from './robopark/profile.js';
22
22
  import { roboparkAgentUp, roboparkAgentDown, roboparkAgentLogs } from './robopark/agent-ctl.js';
23
+ import { roboparkSecrets } from './robopark/secrets.js';
23
24
  // Read the real version from package.json so `--version` never drifts from
24
25
  // what is actually installed (this was a hardcoded constant that went stale
25
26
  // across several releases — see the identical fix + comment in cli.ts).
@@ -97,6 +98,21 @@ program
97
98
  .action(async (opts) => {
98
99
  await roboparkServe(opts);
99
100
  });
101
+ program
102
+ .command('secrets')
103
+ .description('Provision the scheduler-managed ROBOVOICE authentication secret')
104
+ .option('--scheduler-url <url>', 'scheduler base URL', 'http://localhost:8080')
105
+ .option('--worker-env <path>', 'ROBOVOICE worker .env file', '.env')
106
+ .option('--rotate', 'rotate the shared secret before synchronizing it')
107
+ .action(async (opts) => {
108
+ try {
109
+ await roboparkSecrets(opts);
110
+ }
111
+ catch (err) {
112
+ console.error(chalk.red(` ✗ secret provisioning failed: ${err?.message ?? err}`));
113
+ process.exitCode = 1;
114
+ }
115
+ });
100
116
  program
101
117
  .command('enroll')
102
118
  .description('Enroll this robot/satellite with the RoboPark scheduler')
@@ -227,6 +243,8 @@ program
227
243
  .option('--token <token>', 'shared mesh token (defaults to saved hub profile / auto-discovery)')
228
244
  .option('--scheduler-url <url>', 'scheduler base URL (defaults to saved hub profile / auto-discovery)')
229
245
  .option('--character <id>', 'force a specific park-map pad/character preset id (default: fuzzy-matched from the robot name)')
246
+ .option('--lan', 'generate a robot command for the same local network (default)')
247
+ .option('--tailscale', 'generate a robot command for a Tailscale-reachable hub')
230
248
  .option('--start', 'start the robot node on this machine now, instead of printing the one-liner')
231
249
  .action(async (name, opts) => {
232
250
  await roboparkAddRobot(config, { name, ...opts });
@@ -272,6 +290,8 @@ program
272
290
  .option('--tailscale-auth <token>', 'Tailscale auth key for the hub')
273
291
  .option('--tag <tag>', 'Tailscale tag filter')
274
292
  .option('--enrollment-token <token>', 'one-time scheduler enrollment token for robots')
293
+ .option('--lan', 'use LAN discovery and LAN hub/scheduler addresses (default for robots)')
294
+ .option('--tailscale', 'use Tailscale discovery and Tailscale hub/scheduler addresses')
275
295
  .option('--video-device <dev>', 'default camera for robot preview agent', 'auto')
276
296
  .option('--audio-device <dev>', 'default microphone for robot preview agent', 'default')
277
297
  .option('--no-vision', 'do not start the vision (camera/motion trigger) agent for a robot — armed by default')
@@ -303,6 +323,8 @@ program
303
323
  start: opts.start,
304
324
  autoStart: opts.autoStart,
305
325
  yes: opts.yes,
326
+ lan: opts.lan,
327
+ tailscale: opts.tailscale,
306
328
  });
307
329
  });
308
330
  // Keep legacy fleet/run/apply/dashboard commands available while migrating.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinicode",
3
- "version": "2.8.37",
3
+ "version": "2.8.38",
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",