claudekit-cli 3.35.0-dev.1 → 3.35.0-dev.11
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 +20 -1
- package/dist/index.js +49481 -44457
- package/dist/ui/assets/index-BQE1sjky.css +1 -0
- package/dist/ui/assets/index-e7I1Awj1.js +218 -0
- package/dist/ui/index.html +30 -30
- package/package.json +2 -2
- package/dist/ui/assets/index-BLQ07s7T.css +0 -1
- package/dist/ui/assets/index-p7wwcw5S.js +0 -218
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Command-line tool and web dashboard for managing ClaudeKit projects.
|
|
|
9
9
|
ClaudeKit Config UI (`ck`) provides both CLI and web dashboard for managing ClaudeKit projects. Built with Bun, TypeScript, and React, enables fast, secure project setup and comprehensive configuration management.
|
|
10
10
|
|
|
11
11
|
**Key Features:**
|
|
12
|
-
- **CLI Commands (
|
|
12
|
+
- **CLI Commands (14)**: new, init, config, projects, setup, skills, agents, commands, migrate, doctor, versions, update, uninstall, easter-egg
|
|
13
13
|
- **Web Dashboard**: Interactive React UI via `ck config ui` for configuration and project management
|
|
14
14
|
- **Projects Registry**: Centralized registry at `~/.claudekit/projects.json` with file locking
|
|
15
15
|
- **Skill Installation**: Install ClaudeKit skills to other coding agents (Cursor, Codex, etc.)
|
|
@@ -78,6 +78,23 @@ ck --version
|
|
|
78
78
|
|
|
79
79
|
## Usage
|
|
80
80
|
|
|
81
|
+
### Discoverability Quick Start
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
# Top-level command discovery
|
|
85
|
+
ck --help
|
|
86
|
+
|
|
87
|
+
# Open config dashboard immediately
|
|
88
|
+
ck config
|
|
89
|
+
|
|
90
|
+
# Command-level help (recommended)
|
|
91
|
+
ck config --help
|
|
92
|
+
ck skills --help
|
|
93
|
+
ck agents --help
|
|
94
|
+
ck commands --help
|
|
95
|
+
ck migrate --help
|
|
96
|
+
```
|
|
97
|
+
|
|
81
98
|
### Create New Project
|
|
82
99
|
|
|
83
100
|
```bash
|
|
@@ -301,6 +318,8 @@ ck -h
|
|
|
301
318
|
# Command-specific help
|
|
302
319
|
ck new --help
|
|
303
320
|
ck init --help
|
|
321
|
+
ck config --help
|
|
322
|
+
ck skills --help
|
|
304
323
|
ck versions --help
|
|
305
324
|
```
|
|
306
325
|
|