@phnx-labs/agents-cli 1.18.3 → 1.18.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.
@@ -442,7 +442,18 @@ export interface BrowserProfileConfig {
442
442
  * Only consulted when `electron` is true.
443
443
  */
444
444
  targetFilter?: string;
445
- endpoints: string[];
445
+ /**
446
+ * Endpoint presets. Accepts two shapes for backward compatibility:
447
+ * - Legacy: `string[]` of CDP URLs; first entry is the default.
448
+ * - New: `{ [presetName]: { target, binary?, targetFilter? } }`.
449
+ */
450
+ endpoints: string[] | Record<string, {
451
+ target: string;
452
+ binary?: string;
453
+ targetFilter?: string;
454
+ }>;
455
+ /** Preset name to use when `--endpoint` is not passed to `start`. */
456
+ defaultEndpoint?: string;
446
457
  chrome?: {
447
458
  headless?: boolean;
448
459
  args?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phnx-labs/agents-cli",
3
- "version": "1.18.3",
3
+ "version": "1.18.4",
4
4
  "description": "One CLI for all your AI coding agents - versions, config, cloud dispatch, sessions, and teams",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",