opencode-agents 1.0.14 → 1.0.16
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/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/dist/index.js
CHANGED
|
@@ -26339,8 +26339,8 @@ async function updateCommand() {
|
|
|
26339
26339
|
// src/index.ts
|
|
26340
26340
|
var program2 = new Command();
|
|
26341
26341
|
program2.name("agents").description("CLI for managing AI coding agents").version("1.0.0");
|
|
26342
|
-
program2.command("add <source>").description("Install one or more agents from a GitHub repository or local path").option("-g, --global", "Install to global directory"
|
|
26343
|
-
program2.command("list").description("List installed agents").option("-g, --global", "List only global agents").option("-a, --agent <agent>", "Filter by platform").action(listCommand);
|
|
26342
|
+
program2.command("add <source>").description("Install one or more agents from a GitHub repository or local path").option("-g, --global", "Install to global directory").option("-a, --agent <agents...>", "Target agent platform(s)").option("--agent-name <name>", "Name for the installed agent").option("-y, --yes", "Skip confirmation", false).option("--copy", "Copy instead of symlink", false).action(addCommand);
|
|
26343
|
+
program2.command("list").alias("ls").description("List installed agents").option("-g, --global", "List only global agents").option("-a, --agent <agent>", "Filter by platform").action(listCommand);
|
|
26344
26344
|
program2.command("remove <name>").description("Remove an installed agent").option("-g, --global", "Remove from global directory").option("-a, --agent <agent>", "Remove from specific platform").action(removeCommand);
|
|
26345
26345
|
program2.command("init [name]").description("Create a new agent definition template").action(initCommand);
|
|
26346
26346
|
program2.command("find [query]").description("Search for available agents").action(findCommand);
|