@phnx-labs/agents-cli 1.18.2 → 1.18.3
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/CHANGELOG.md +10 -0
- package/dist/commands/plugins.js +58 -14
- package/dist/commands/view.js +16 -7
- package/dist/lib/plugin-marketplace.d.ts +93 -0
- package/dist/lib/plugin-marketplace.js +239 -0
- package/dist/lib/plugins.d.ts +25 -13
- package/dist/lib/plugins.js +350 -566
- package/dist/lib/types.d.ts +6 -0
- package/package.json +1 -1
package/dist/lib/types.d.ts
CHANGED
|
@@ -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. */
|
package/package.json
CHANGED