diff --git a/skillhub-cli/src/commands/install.ts b/skillhub-cli/src/commands/install.ts index a5ec716c..8552f02c 100644 --- a/skillhub-cli/src/commands/install.ts +++ b/skillhub-cli/src/commands/install.ts @@ -210,8 +210,8 @@ function buildInstallHelp(cmd: Command): string { lines.push(""); lines.push(chalk.bold("Source Options:")); - lines.push(` ${chalk.cyan("-a, --add ")} Install from GitHub or local path (alias for --from)`); - lines.push(` ${chalk.cyan("--from ")} Install from GitHub or local path (alias for -a)`); + lines.push(` ${chalk.cyan("-a, --add ")} Install from GitHub or local path`); + lines.push(` ${chalk.cyan("--from ")} Alias for --add`); lines.push(""); lines.push(chalk.bold("Target Options:")); @@ -250,8 +250,8 @@ export function registerInstall(program: Command) { .alias("i") .description("Install skills from registry, git repositories, or local paths") .argument("", "Skill name or namespace/skill-name from registry") - .option("-a, --add ", "Install from GitHub or local path (alias for --from)") - .option("--from ", "Install from GitHub or local path (alias for -a)") + .option("-a, --add ", "Install from GitHub or local path") + .option("--from ", "Alias for --add") .option("--agent ", "Target specific agents") .option("-g, --global", "Install to global scope") .option("-y, --yes", "Skip all prompts")