claudekit-cli 3.36.0-dev.27 → 3.36.0-dev.29
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 +61 -1
- package/dist/index.js +41649 -35461
- package/package.json +3 -1
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 (16)**: new, init, config, projects, setup, skills, agents, commands, migrate, doctor, versions, update, uninstall, watch, content, easter-egg
|
|
13
13
|
- **Web Dashboard**: Interactive React UI via `ck config ui` for configuration and project management
|
|
14
14
|
- **Hook Diagnostics Dashboard**: Inspect recent Claude hook activity and failures from `ck config` across global and project scopes
|
|
15
15
|
- **Projects Registry**: Centralized registry at `~/.claudekit/projects.json` with file locking
|
|
@@ -33,6 +33,8 @@ Comprehensive documentation in `/docs`:
|
|
|
33
33
|
- **[Code Standards](./docs/code-standards.md)** - Coding conventions, best practices
|
|
34
34
|
- **[Project Roadmap](./docs/project-roadmap.md)** - Release timeline, feature status
|
|
35
35
|
- **[Deployment Guide](./docs/deployment-guide.md)** - Release procedures
|
|
36
|
+
- **[ck watch](./docs/ck-watch.md)** - GitHub issue monitoring daemon
|
|
37
|
+
- **[ck content](./docs/ck-content.md)** - Automated content generation from git activity
|
|
36
38
|
|
|
37
39
|
## Prerequisites
|
|
38
40
|
|
|
@@ -307,6 +309,64 @@ ck uninstall --yes # Non-interactive - skip confirmation (for scripts)
|
|
|
307
309
|
|
|
308
310
|
**Note:** Only removes valid ClaudeKit installations (with metadata.json). Regular `.claude` directories from Claude Desktop are not affected.
|
|
309
311
|
|
|
312
|
+
### Watch GitHub Issues (`ck watch`)
|
|
313
|
+
|
|
314
|
+
Autonomous daemon that monitors GitHub issues, analyzes them with Claude, generates plans, and creates PRs.
|
|
315
|
+
|
|
316
|
+
```bash
|
|
317
|
+
# Start watching (single repo)
|
|
318
|
+
ck watch
|
|
319
|
+
|
|
320
|
+
# Dry-run mode (no posts/PRs)
|
|
321
|
+
ck watch --dry-run
|
|
322
|
+
|
|
323
|
+
# Custom poll interval (ms)
|
|
324
|
+
ck watch --interval 60000
|
|
325
|
+
|
|
326
|
+
# Force restart (clear state)
|
|
327
|
+
ck watch --force
|
|
328
|
+
|
|
329
|
+
# Verbose logging
|
|
330
|
+
ck watch --verbose
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
**Features:** issue lifecycle management (10 statuses), Claude-powered brainstorming/planning, automatic PR creation, rate limiting (persisted across restarts), maintainer reply filtering, processedIssues TTL, optional git worktree isolation per issue, multi-repo support, graceful shutdown.
|
|
334
|
+
|
|
335
|
+
**Config:** `.ck.json` under `watch` key. See [docs/ck-watch.md](./docs/ck-watch.md) for full configuration reference.
|
|
336
|
+
|
|
337
|
+
### Content Generation (`ck content`)
|
|
338
|
+
|
|
339
|
+
Daemon that scans git activity (commits, PRs, tags), generates social media content with Claude, and publishes to X/Twitter and Facebook.
|
|
340
|
+
|
|
341
|
+
```bash
|
|
342
|
+
# Interactive setup wizard
|
|
343
|
+
ck content setup
|
|
344
|
+
|
|
345
|
+
# Start daemon
|
|
346
|
+
ck content start
|
|
347
|
+
|
|
348
|
+
# Check status
|
|
349
|
+
ck content status
|
|
350
|
+
|
|
351
|
+
# View logs
|
|
352
|
+
ck content logs
|
|
353
|
+
|
|
354
|
+
# Queue manual content
|
|
355
|
+
ck content queue
|
|
356
|
+
|
|
357
|
+
# Review workflow
|
|
358
|
+
ck content approve <id>
|
|
359
|
+
ck content reject <id>
|
|
360
|
+
|
|
361
|
+
# Dry-run / verbose
|
|
362
|
+
ck content start --dry-run
|
|
363
|
+
ck content start --verbose
|
|
364
|
+
```
|
|
365
|
+
|
|
366
|
+
**Features:** 11-phase pipeline (scan → filter → classify → context → create → validate → review → photo → publish → engage → analyze), noise filtering, context caching (24h TTL), content validation, photo generation, 3 review modes (auto/manual/hybrid), quiet hours scheduling, engagement tracking, SQLite database, platform-specific adapters.
|
|
367
|
+
|
|
368
|
+
**Config:** `.ck.json` under `content` key. See [docs/ck-content.md](./docs/ck-content.md) for full configuration reference.
|
|
369
|
+
|
|
310
370
|
### Other Commands
|
|
311
371
|
|
|
312
372
|
```bash
|