@phnx-labs/agents-cli 1.18.2 → 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.
@@ -346,6 +346,12 @@ export interface DiscoveredPlugin {
346
346
  agentDefs: string[];
347
347
  /** Executable files in the plugin's bin/ directory. */
348
348
  bin: string[];
349
+ /** MCP server names parsed from .mcp.json. */
350
+ mcpServers: string[];
351
+ /** LSP server keys parsed from .lsp.json. */
352
+ lspServers: string[];
353
+ /** Monitor names parsed from monitors/monitors.json. */
354
+ monitors: string[];
349
355
  /** Whether the plugin root contains a .mcp.json file. */
350
356
  hasMcp: boolean;
351
357
  /** Whether the plugin root contains a settings.json with non-permission keys to merge. */
@@ -436,7 +442,18 @@ export interface BrowserProfileConfig {
436
442
  * Only consulted when `electron` is true.
437
443
  */
438
444
  targetFilter?: string;
439
- 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;
440
457
  chrome?: {
441
458
  headless?: boolean;
442
459
  args?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phnx-labs/agents-cli",
3
- "version": "1.18.2",
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",