claudekit-cli 4.4.0-dev.1 → 4.4.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 +3 -1
- package/cli-manifest.json +3 -3
- package/dist/index.js +1714 -1192
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ Without a purchased kit and repository access, the CLI will not be able to downl
|
|
|
50
50
|
|
|
51
51
|
The ClaudeKit CLI is published on npm at [npmjs.com/package/claudekit-cli](https://www.npmjs.com/package/claudekit-cli).
|
|
52
52
|
|
|
53
|
-
End-user runtime note: global installs from `npm`, `pnpm`, `yarn`, or `bun` all execute the packaged Node.js CLI. Bun is optional for users and only needed for local ClaudeKit CLI development workflows.
|
|
53
|
+
End-user runtime note: global installs from `npm`, `pnpm`, `yarn`, or `bun` all execute the packaged Node.js CLI. Bun is optional for users and only needed for local ClaudeKit CLI development workflows. Most commands do not require native build tools; `ck content` uses an optional SQLite driver and shows remediation steps if that driver is unavailable.
|
|
54
54
|
|
|
55
55
|
### Using npm (Recommended)
|
|
56
56
|
|
|
@@ -407,6 +407,8 @@ ck content start --verbose
|
|
|
407
407
|
|
|
408
408
|
**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.
|
|
409
409
|
|
|
410
|
+
**Runtime dependency:** `ck content` uses the optional native SQLite driver `better-sqlite3`. If the driver is unavailable, other CLI commands still work and `ck content` prints reinstall/build-tool guidance.
|
|
411
|
+
|
|
410
412
|
**Config:** `.ck.json` under `content` key. See [docs/ck-content.md](./docs/ck-content.md) for full configuration reference.
|
|
411
413
|
|
|
412
414
|
### Other Commands
|
package/cli-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.4.0-dev.
|
|
3
|
-
"generatedAt": "2026-
|
|
2
|
+
"version": "4.4.0-dev.11",
|
|
3
|
+
"generatedAt": "2026-06-11T01:27:49.348Z",
|
|
4
4
|
"commands": {
|
|
5
5
|
"agents": {
|
|
6
6
|
"name": "agents",
|
|
@@ -1214,7 +1214,7 @@
|
|
|
1214
1214
|
},
|
|
1215
1215
|
"migrate": {
|
|
1216
1216
|
"name": "migrate",
|
|
1217
|
-
"description": "Migrate Claude Code agents, commands, skills, config, rules, and hooks to other providers",
|
|
1217
|
+
"description": "Migrate Claude Code agents, commands, skills, config, rules, and hooks to other providers (e.g. Codex). Set updatePipeline.autoMigrateAfterUpdate to keep targets in sync with Claude Code on each `ck update`.",
|
|
1218
1218
|
"usage": "ck migrate [options]",
|
|
1219
1219
|
"examples": [
|
|
1220
1220
|
{
|