claudekit-cli 3.35.0-dev.8 → 3.35.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
@@ -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 (14)**: new, init, config, projects, setup, skills, agents, commands, port, doctor, versions, update, uninstall, easter-egg
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
@@ -92,7 +93,7 @@ ck config --help
92
93
  ck skills --help
93
94
  ck agents --help
94
95
  ck commands --help
95
- ck port --help
96
+ ck migrate --help
96
97
  ```
97
98
 
98
99
  ### Create New Project
@@ -547,6 +548,8 @@ See [Development Guide](./docs/codebase-summary.md) for:
547
548
  bun install
548
549
  bun run dev new --kit engineer
549
550
  bun test
551
+ # Optional: run expensive CLI integration tests explicitly
552
+ bun run test:integration
550
553
  ```
551
554
 
552
555
  ## FAQ