claudekit-cli 1.14.3 → 1.15.1

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
@@ -96,11 +96,40 @@ ck new --opencode --gemini
96
96
  ck new --opencode
97
97
  ck new --gemini
98
98
 
99
+ # With skills dependencies installation
100
+ ck new --install-skills # Install Python packages, system tools
101
+ ck new --opencode --gemini --install-skills # Install all optional packages
102
+
99
103
  # With /ck: prefix for slash commands
100
104
  ck new --prefix # All commands will be prefixed with /ck:
101
105
  ck new --prefix --kit engineer
102
106
  ```
103
107
 
108
+ **Skills Dependencies Installation (`--install-skills` flag):**
109
+
110
+ The `--install-skills` flag automatically installs dependencies required for ClaudeKit skills, including:
111
+ - Python packages (google-genai, pypdf, python-docx, Pillow, etc.)
112
+ - System tools (FFmpeg, ImageMagick)
113
+ - Node.js global packages (rmbg-cli, pnpm, wrangler, repomix)
114
+
115
+ **Interactive mode:**
116
+ ```bash
117
+ ck new # Will prompt: "Install skills dependencies?"
118
+ ```
119
+
120
+ **Non-interactive mode:**
121
+ ```bash
122
+ ck new --install-skills # Auto-install skills dependencies
123
+ ck init --install-skills # Auto-install during update
124
+ ck init --global --install-skills # Install for global setup
125
+ ```
126
+
127
+ **Platform support:**
128
+ - **Linux/macOS**: Runs `.claude/skills/install.sh`
129
+ - **Windows**: Runs `.claude/skills/install.ps1`
130
+
131
+ **Note**: Installation is optional and non-blocking. If it fails, you can install manually later using the installation script in `.claude/skills/`.
132
+
104
133
  **Command Prefix (`--prefix` flag):**
105
134
 
106
135
  The `--prefix` flag reorganizes slash commands to use a `/ck:` namespace, moving all commands from `.claude/commands/*` to `.claude/commands/ck/*`.
@@ -237,6 +266,7 @@ ck diagnose --verbose # Detailed diagnostics
237
266
  - pip (required, any version)
238
267
  - Node.js (required, v16.0.0+)
239
268
  - npm (required, any version)
269
+ - Skills dependencies installation status (global and project)
240
270
  - Global and project ClaudeKit setup
241
271
  - Component counts (agents, commands, workflows, skills)
242
272
 
Binary file
package/bin/ck-darwin-x64 CHANGED
Binary file
package/bin/ck-linux-x64 CHANGED
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "1.14.3",
3
+ "version": "1.15.1",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {