claudekit-cli 4.0.0 → 4.1.0

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 CHANGED
@@ -293,7 +293,7 @@ ck doctor --verbose --fix
293
293
 
294
294
  **Health Checks:**
295
295
  - **System**: Node.js, npm, Python, pip, Claude CLI, git, gh CLI
296
- - **ClaudeKit**: Global/project installation, versions, skills
296
+ - **ClaudeKit**: Global/project installation, versions, skills, skill listing budget, duplicate skill inventory
297
297
  - **Auth**: GitHub CLI authentication, repository access
298
298
  - **Project**: package.json, node_modules, lock files
299
299
  - **Modules**: Dynamic skill dependency resolution
@@ -306,6 +306,9 @@ ck doctor --verbose --fix
306
306
  | Corrupted node_modules | Reinstall dependencies |
307
307
  | Missing global install | Run `ck init --global` |
308
308
  | Missing skill deps | Install in skill directory |
309
+ | Missing/low Engineer skill listing budget | Ensure computed `skillListingBudgetFraction` and a valid ClaudeKit-recommended `skillListingMaxDescChars` ceiling in project settings |
310
+
311
+ `ck doctor` never writes `skillOverrides`, hides skills, or deletes duplicate skills automatically. It reports existing `skillOverrides` and inventory issues so all active project/global skills can stay user-invocable while listing pressure is managed through 200k-context-floor project settings and bounded descriptions.
309
312
 
310
313
  **Exit Codes:**
311
314
  - `0`: All checks pass or issues fixed
@@ -321,6 +324,7 @@ Remove ClaudeKit installations from your system:
321
324
  ck uninstall # Interactive mode - prompts for scope and confirmation
322
325
  ck uninstall --local # Uninstall only local installation (current project)
323
326
  ck uninstall --global # Uninstall only global installation (~/.claude/)
327
+ ck uninstall -g --kit marketing # Remove only global Marketing kit
324
328
  ck uninstall -l -y # Local only, skip confirmation
325
329
  ck uninstall -g -y # Global only, skip confirmation
326
330
  ck uninstall --yes # Non-interactive - skip confirmation (for scripts)
@@ -331,7 +335,11 @@ ck uninstall --yes # Non-interactive - skip confirmation (for scripts)
331
335
  - **Local only**: Remove from current project (`.claude/`)
332
336
  - **Global only**: Remove from user directory (`~/.claude/`)
333
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
334
341
  - Use `--local` or `--global` flags to skip the prompt
342
+ - Use `--kit engineer` or `--kit marketing` to skip the kit prompt
335
343
 
336
344
  **What it does:**
337
345
  - Detects local `.claude` directory in current project
package/cli-manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.0.0",
3
- "generatedAt": "2026-05-07T09:45:45.675Z",
2
+ "version": "4.1.0",
3
+ "generatedAt": "2026-05-11T04:25:35.081Z",
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 slash command to Codex"
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": {
@@ -1053,6 +1059,12 @@
1053
1059
  }
1054
1060
  ]
1055
1061
  }
1062
+ ],
1063
+ "sections": [
1064
+ {
1065
+ "title": "Engineer skill budget checks",
1066
+ "content": "`ck doctor` validates Claude Code skill listing settings for Engineer Kit projects, estimates active project/global skill listing pressure against a 200k context floor, reports descriptions over ClaudeKit's 512-char recommended cap, detects duplicate project/global skill names, reports existing `skillOverrides`, and warns when active project/global skills are explicitly not user-invocable. `ck doctor --fix` ensures the computed `skillListingBudgetFraction` and normalizes missing, invalid, or too-high `skillListingMaxDescChars` values to 512."
1067
+ }
1056
1068
  ]
1057
1069
  },
1058
1070
  "init": {
@@ -1326,7 +1338,7 @@
1326
1338
  "sections": [
1327
1339
  {
1328
1340
  "title": "Gotchas",
1329
- "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"
1330
1342
  }
1331
1343
  ]
1332
1344
  },
@@ -1916,6 +1928,10 @@
1916
1928
  "description": "Remove ClaudeKit installations (ownership-aware)",
1917
1929
  "usage": "ck uninstall [options]",
1918
1930
  "examples": [
1931
+ {
1932
+ "command": "ck uninstall --global --kit marketing",
1933
+ "description": "Remove only the global Marketing kit and preserve Engineer"
1934
+ },
1919
1935
  {
1920
1936
  "command": "ck uninstall --local --yes",
1921
1937
  "description": "Remove local installation without confirmation"