claudekit-cli 4.0.0-dev.1 → 4.0.0-dev.10
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/README.md +5 -0
- package/cli-manifest.json +14 -4
- package/dist/index.js +1685 -781
- package/dist/ui/assets/{index-BR6gCrf6.js → index-BrzUvlYt.js} +8 -8
- package/dist/ui/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -324,6 +324,7 @@ Remove ClaudeKit installations from your system:
|
|
|
324
324
|
ck uninstall # Interactive mode - prompts for scope and confirmation
|
|
325
325
|
ck uninstall --local # Uninstall only local installation (current project)
|
|
326
326
|
ck uninstall --global # Uninstall only global installation (~/.claude/)
|
|
327
|
+
ck uninstall -g --kit marketing # Remove only global Marketing kit
|
|
327
328
|
ck uninstall -l -y # Local only, skip confirmation
|
|
328
329
|
ck uninstall -g -y # Global only, skip confirmation
|
|
329
330
|
ck uninstall --yes # Non-interactive - skip confirmation (for scripts)
|
|
@@ -334,7 +335,11 @@ ck uninstall --yes # Non-interactive - skip confirmation (for scripts)
|
|
|
334
335
|
- **Local only**: Remove from current project (`.claude/`)
|
|
335
336
|
- **Global only**: Remove from user directory (`~/.claude/`)
|
|
336
337
|
- **Both**: Remove all ClaudeKit installations
|
|
338
|
+
- When multiple kits are installed in the selected scope, interactive uninstall prompts for:
|
|
339
|
+
- **Marketing kit only** or **Engineer kit only**: Remove one kit and preserve the other
|
|
340
|
+
- **All ClaudeKit kits**: Remove the full selected installation scope
|
|
337
341
|
- Use `--local` or `--global` flags to skip the prompt
|
|
342
|
+
- Use `--kit engineer` or `--kit marketing` to skip the kit prompt
|
|
338
343
|
|
|
339
344
|
**What it does:**
|
|
340
345
|
- Detects local `.claude` directory in current project
|
package/cli-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0.0-dev.
|
|
3
|
-
"generatedAt": "2026-05-
|
|
2
|
+
"version": "4.0.0-dev.10",
|
|
3
|
+
"generatedAt": "2026-05-11T02:47:50.969Z",
|
|
4
4
|
"commands": {
|
|
5
5
|
"agents": {
|
|
6
6
|
"name": "agents",
|
|
@@ -676,7 +676,7 @@
|
|
|
676
676
|
"examples": [
|
|
677
677
|
{
|
|
678
678
|
"command": "ck commands --name plan --agent codex",
|
|
679
|
-
"description": "Install one
|
|
679
|
+
"description": "Install one command to Codex as a project skill"
|
|
680
680
|
},
|
|
681
681
|
{
|
|
682
682
|
"command": "ck commands --list",
|
|
@@ -739,6 +739,12 @@
|
|
|
739
739
|
}
|
|
740
740
|
]
|
|
741
741
|
}
|
|
742
|
+
],
|
|
743
|
+
"sections": [
|
|
744
|
+
{
|
|
745
|
+
"title": "Codex Scope Note",
|
|
746
|
+
"content": "Codex imports external commands as skills. Project installs write `.agents/skills/source-command-*/SKILL.md`; `--global` writes `~/.agents/skills/source-command-*/SKILL.md`."
|
|
747
|
+
}
|
|
742
748
|
]
|
|
743
749
|
},
|
|
744
750
|
"config": {
|
|
@@ -1332,7 +1338,7 @@
|
|
|
1332
1338
|
"sections": [
|
|
1333
1339
|
{
|
|
1334
1340
|
"title": "Gotchas",
|
|
1335
|
-
"content": " --install and --reconcile are mutually exclusive — pass only one\n --reinstall-empty-dirs and --respect-deletions are mutually exclusive — pass only one\n Default mode is smart-detected: no/stale registry → install, valid registry → reconcile\n --respect-deletions disables the auto-reinstall heuristic for empty directories\n --force overrides skip decisions per item; --reinstall-empty-dirs is a per-directory heuristic"
|
|
1341
|
+
"content": " --install and --reconcile are mutually exclusive — pass only one\n --reinstall-empty-dirs and --respect-deletions are mutually exclusive — pass only one\n Default mode is smart-detected: no/stale registry → install, valid registry → reconcile\n --respect-deletions disables the auto-reinstall heuristic for empty directories\n --force overrides skip decisions per item; --reinstall-empty-dirs is a per-directory heuristic\n Codex commands migrate as skills: project scope writes .agents/skills, global scope writes ~/.agents/skills"
|
|
1336
1342
|
}
|
|
1337
1343
|
]
|
|
1338
1344
|
},
|
|
@@ -1922,6 +1928,10 @@
|
|
|
1922
1928
|
"description": "Remove ClaudeKit installations (ownership-aware)",
|
|
1923
1929
|
"usage": "ck uninstall [options]",
|
|
1924
1930
|
"examples": [
|
|
1931
|
+
{
|
|
1932
|
+
"command": "ck uninstall --global --kit marketing",
|
|
1933
|
+
"description": "Remove only the global Marketing kit and preserve Engineer"
|
|
1934
|
+
},
|
|
1925
1935
|
{
|
|
1926
1936
|
"command": "ck uninstall --local --yes",
|
|
1927
1937
|
"description": "Remove local installation without confirmation"
|