@toolr/seedr 0.1.13 → 0.1.14
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.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -716,14 +716,14 @@ function printInstallSummary(results) {
|
|
|
716
716
|
process.exit(1);
|
|
717
717
|
}
|
|
718
718
|
}
|
|
719
|
-
var addCommand = new Command("add").description("Install a skill, agent, hook, or other configuration").argument("[name]", "Name of the item to install").option("-
|
|
719
|
+
var addCommand = new Command("add").description("Install a skill, agent, hook, or other configuration").argument("[name]", "Name of the item to install").option("-t, --type <type>", "Content type: skill, agent, hook, mcp, plugin, settings").option(
|
|
720
720
|
"-a, --agents <tools>",
|
|
721
721
|
"Comma-separated AI tools or 'all' (claude,copilot,gemini,codex,opencode)"
|
|
722
|
-
).option("--scope <scope>", "Installation scope: project, user, or local").option("-m, --method <method>", "Installation method: symlink or copy").option("-y, --yes", "Skip confirmation prompts").option("-f, --force", "Overwrite existing files").option("-n, --dry-run", "Show what would be installed without making changes").action(async (name, options) => {
|
|
722
|
+
).option("-s, --scope <scope>", "Installation scope: project, user, or local").option("-m, --method <method>", "Installation method: symlink or copy").option("-y, --yes", "Skip confirmation prompts").option("-f, --force", "Overwrite existing files").option("-n, --dry-run", "Show what would be installed without making changes").action(async (name, options) => {
|
|
723
723
|
try {
|
|
724
724
|
printLogo();
|
|
725
725
|
intro2("Seedr");
|
|
726
|
-
const itemName = name
|
|
726
|
+
const itemName = name;
|
|
727
727
|
const contentType = options.type;
|
|
728
728
|
const item = await resolveItem(itemName, contentType);
|
|
729
729
|
if (!item) process.exit(1);
|