@deimoscloud/coreai 0.1.12 → 0.1.13
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/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -4447,7 +4447,7 @@ ${agent.display_name}`);
|
|
|
4447
4447
|
process.exit(1);
|
|
4448
4448
|
}
|
|
4449
4449
|
});
|
|
4450
|
-
agents.command("add
|
|
4450
|
+
agents.command("add [agents...]").description("Add agents to your project configuration").option("--all", "add all available core agents").option("--no-build", "skip rebuilding agents after adding").action(async (agentNames = [], options) => {
|
|
4451
4451
|
try {
|
|
4452
4452
|
const parsedAgents = agentNames.flatMap((a) => a.split(",").map((s) => s.trim()));
|
|
4453
4453
|
const result = agentsAdd(parsedAgents, {
|
|
@@ -4475,7 +4475,7 @@ agents.command("add <agents...>").description("Add agents to your project config
|
|
|
4475
4475
|
process.exit(1);
|
|
4476
4476
|
}
|
|
4477
4477
|
});
|
|
4478
|
-
agents.command("remove
|
|
4478
|
+
agents.command("remove [agents...]").description("Remove agents from your project configuration").option("--all", "remove all agents from config").option("--no-build", "skip rebuilding agents after removing").action(async (agentNames = [], options) => {
|
|
4479
4479
|
try {
|
|
4480
4480
|
const parsedAgents = agentNames.flatMap((a) => a.split(",").map((s) => s.trim()));
|
|
4481
4481
|
const result = agentsRemove(parsedAgents, {
|