claudekit-cli 3.31.0-dev.4 → 3.31.0-dev.5
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 +106 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -22985,6 +22985,108 @@ var init_versions_command_help = __esm(() => {
|
|
|
22985
22985
|
};
|
|
22986
22986
|
});
|
|
22987
22987
|
|
|
22988
|
+
// src/domains/help/commands/skill-command-help.ts
|
|
22989
|
+
var skillCommandHelp;
|
|
22990
|
+
var init_skill_command_help = __esm(() => {
|
|
22991
|
+
skillCommandHelp = {
|
|
22992
|
+
name: "skill",
|
|
22993
|
+
description: "Install, uninstall, and manage ClaudeKit skills across coding agents",
|
|
22994
|
+
usage: "ck skill [options]",
|
|
22995
|
+
examples: [
|
|
22996
|
+
{
|
|
22997
|
+
command: "ck skill --name frontend-design --agent claude-code -g",
|
|
22998
|
+
description: "Install skill to Claude Code globally"
|
|
22999
|
+
},
|
|
23000
|
+
{
|
|
23001
|
+
command: "ck skill --list --installed",
|
|
23002
|
+
description: "Show all installed skills with their locations"
|
|
23003
|
+
}
|
|
23004
|
+
],
|
|
23005
|
+
optionGroups: [
|
|
23006
|
+
{
|
|
23007
|
+
title: "Mode Options",
|
|
23008
|
+
options: [
|
|
23009
|
+
{
|
|
23010
|
+
flags: "-l, --list",
|
|
23011
|
+
description: "List available skills from ClaudeKit source"
|
|
23012
|
+
},
|
|
23013
|
+
{
|
|
23014
|
+
flags: "--installed",
|
|
23015
|
+
description: "When used with --list, show installed skills instead"
|
|
23016
|
+
},
|
|
23017
|
+
{
|
|
23018
|
+
flags: "-u, --uninstall",
|
|
23019
|
+
description: "Uninstall skill(s) from agent(s)"
|
|
23020
|
+
},
|
|
23021
|
+
{
|
|
23022
|
+
flags: "--sync",
|
|
23023
|
+
description: "Sync registry with filesystem (clean orphaned entries)"
|
|
23024
|
+
}
|
|
23025
|
+
]
|
|
23026
|
+
},
|
|
23027
|
+
{
|
|
23028
|
+
title: "Installation Options",
|
|
23029
|
+
options: [
|
|
23030
|
+
{
|
|
23031
|
+
flags: "-n, --name <skill>",
|
|
23032
|
+
description: "Skill name to install or uninstall"
|
|
23033
|
+
},
|
|
23034
|
+
{
|
|
23035
|
+
flags: "-a, --agent <agent>",
|
|
23036
|
+
description: "Target agent(s) - can be specified multiple times. Valid: claude-code, cursor, codex, opencode, goose, gemini-cli, antigravity, github-copilot, amp, kilo, roo, windsurf, cline, openhands"
|
|
23037
|
+
},
|
|
23038
|
+
{
|
|
23039
|
+
flags: "-g, --global",
|
|
23040
|
+
description: "Install to user's home directory (available across projects)"
|
|
23041
|
+
},
|
|
23042
|
+
{
|
|
23043
|
+
flags: "--all",
|
|
23044
|
+
description: "Install to all supported agents"
|
|
23045
|
+
},
|
|
23046
|
+
{
|
|
23047
|
+
flags: "-y, --yes",
|
|
23048
|
+
description: "Non-interactive mode (skip confirmations)"
|
|
23049
|
+
}
|
|
23050
|
+
]
|
|
23051
|
+
},
|
|
23052
|
+
{
|
|
23053
|
+
title: "Uninstall Options",
|
|
23054
|
+
options: [
|
|
23055
|
+
{
|
|
23056
|
+
flags: "-f, --force",
|
|
23057
|
+
description: "Force uninstall even if skill not in registry (requires --agent)"
|
|
23058
|
+
}
|
|
23059
|
+
]
|
|
23060
|
+
}
|
|
23061
|
+
],
|
|
23062
|
+
sections: [
|
|
23063
|
+
{
|
|
23064
|
+
title: "Supported Agents",
|
|
23065
|
+
content: ` claude-code Claude Code CLI
|
|
23066
|
+
cursor Cursor IDE
|
|
23067
|
+
codex Codex CLI
|
|
23068
|
+
opencode OpenCode
|
|
23069
|
+
goose Goose AI
|
|
23070
|
+
gemini-cli Gemini CLI
|
|
23071
|
+
antigravity Antigravity Agent
|
|
23072
|
+
github-copilot GitHub Copilot
|
|
23073
|
+
amp Amp
|
|
23074
|
+
kilo Kilo Code
|
|
23075
|
+
roo Roo Code
|
|
23076
|
+
windsurf Windsurf IDE
|
|
23077
|
+
cline Cline
|
|
23078
|
+
openhands OpenHands`
|
|
23079
|
+
},
|
|
23080
|
+
{
|
|
23081
|
+
title: "Notes",
|
|
23082
|
+
content: ` • Skills are installed from ~/.claude/skills (ClaudeKit Engineer source)
|
|
23083
|
+
• Registry stored at ~/.claudekit/skill-registry.json
|
|
23084
|
+
• Project installs go to ./<agent>/skills, global to ~/<agent>/skills`
|
|
23085
|
+
}
|
|
23086
|
+
]
|
|
23087
|
+
};
|
|
23088
|
+
});
|
|
23089
|
+
|
|
22988
23090
|
// src/domains/help/commands/index.ts
|
|
22989
23091
|
var init_commands2 = __esm(() => {
|
|
22990
23092
|
init_new_command_help();
|
|
@@ -22993,6 +23095,7 @@ var init_commands2 = __esm(() => {
|
|
|
22993
23095
|
init_uninstall_command_help();
|
|
22994
23096
|
init_update_command_help();
|
|
22995
23097
|
init_versions_command_help();
|
|
23098
|
+
init_skill_command_help();
|
|
22996
23099
|
init_common_options();
|
|
22997
23100
|
});
|
|
22998
23101
|
|
|
@@ -23010,7 +23113,8 @@ var init_help_commands = __esm(() => {
|
|
|
23010
23113
|
update: updateCommandHelp,
|
|
23011
23114
|
versions: versionsCommandHelp,
|
|
23012
23115
|
doctor: doctorCommandHelp,
|
|
23013
|
-
uninstall: uninstallCommandHelp
|
|
23116
|
+
uninstall: uninstallCommandHelp,
|
|
23117
|
+
skill: skillCommandHelp
|
|
23014
23118
|
};
|
|
23015
23119
|
});
|
|
23016
23120
|
|
|
@@ -49626,7 +49730,7 @@ var import_fs_extra37 = __toESM(require_lib(), 1);
|
|
|
49626
49730
|
// package.json
|
|
49627
49731
|
var package_default = {
|
|
49628
49732
|
name: "claudekit-cli",
|
|
49629
|
-
version: "3.31.0-dev.
|
|
49733
|
+
version: "3.31.0-dev.5",
|
|
49630
49734
|
description: "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
49631
49735
|
type: "module",
|
|
49632
49736
|
repository: {
|