Skip to content

Commit b2668c2

Browse files
committed
Update command description
1 parent 221924a commit b2668c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli/src/commands/skill.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export function registerSkillCommand(program: Command): void {
1111
.description('Manage Agent Skills');
1212

1313
skillCommand
14-
.command('add <registry-repo> [skill-name]')
15-
.description('Install a skill from a registry (e.g., ai-devkit skill add anthropics/skills [frontend-design])')
14+
.command('add <registry-repo> <skill-name>')
15+
.description('Install a skill from a registry (e.g., ai-devkit skill add anthropics/skills frontend-design)')
1616
.option('-g, --global', 'Install skill into configured global skill paths (~/<path>)')
1717
.option('-e, --env <environment...>', 'Target environment(s) for global install (e.g., --global --env claude)')
1818
.action(async (registryRepo: string, skillName: string | undefined, options: { global?: boolean; env?: string[] }) => {

0 commit comments

Comments
 (0)