claudekit-cli 3.35.0-dev.3 → 3.35.0-dev.30
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 +23 -1
- package/dist/index.js +30599 -25434
- package/dist/ui/assets/index-Dpm-K_Vt.js +219 -0
- package/dist/ui/assets/index-dHDPNWjf.css +1 -0
- package/dist/ui/index.html +2 -2
- package/package.json +6 -4
- package/dist/ui/assets/index-0W2XnD3O.css +0 -1
- package/dist/ui/assets/index-CbjAkOgx.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.)
|
|
@@ -28,6 +28,7 @@ Comprehensive documentation in `/docs`:
|
|
|
28
28
|
- **[Codebase Summary](./docs/codebase-summary.md)** - Overview, structure, key components
|
|
29
29
|
- **[Project Overview & PDR](./docs/project-overview-pdr.md)** - Requirements, features, roadmap
|
|
30
30
|
- **[System Architecture](./docs/system-architecture.md)** - Architecture diagrams, data flow
|
|
31
|
+
- **[Reconciliation Architecture](./docs/reconciliation-architecture.md)** - `ck migrate` RECONCILE → EXECUTE → REPORT design
|
|
31
32
|
- **[Code Standards](./docs/code-standards.md)** - Coding conventions, best practices
|
|
32
33
|
- **[Project Roadmap](./docs/project-roadmap.md)** - Release timeline, feature status
|
|
33
34
|
- **[Deployment Guide](./docs/deployment-guide.md)** - Release procedures
|
|
@@ -78,6 +79,23 @@ ck --version
|
|
|
78
79
|
|
|
79
80
|
## Usage
|
|
80
81
|
|
|
82
|
+
### Discoverability Quick Start
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
# Top-level command discovery
|
|
86
|
+
ck --help
|
|
87
|
+
|
|
88
|
+
# Open config dashboard immediately
|
|
89
|
+
ck config
|
|
90
|
+
|
|
91
|
+
# Command-level help (recommended)
|
|
92
|
+
ck config --help
|
|
93
|
+
ck skills --help
|
|
94
|
+
ck agents --help
|
|
95
|
+
ck commands --help
|
|
96
|
+
ck migrate --help
|
|
97
|
+
```
|
|
98
|
+
|
|
81
99
|
### Create New Project
|
|
82
100
|
|
|
83
101
|
```bash
|
|
@@ -301,6 +319,8 @@ ck -h
|
|
|
301
319
|
# Command-specific help
|
|
302
320
|
ck new --help
|
|
303
321
|
ck init --help
|
|
322
|
+
ck config --help
|
|
323
|
+
ck skills --help
|
|
304
324
|
ck versions --help
|
|
305
325
|
```
|
|
306
326
|
|
|
@@ -528,6 +548,8 @@ See [Development Guide](./docs/codebase-summary.md) for:
|
|
|
528
548
|
bun install
|
|
529
549
|
bun run dev new --kit engineer
|
|
530
550
|
bun test
|
|
551
|
+
# Optional: run expensive CLI integration tests explicitly
|
|
552
|
+
bun run test:integration
|
|
531
553
|
```
|
|
532
554
|
|
|
533
555
|
## FAQ
|