claudekit-cli 4.4.0 → 4.5.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 +3 -1
- package/cli-manifest.json +6 -6
- package/dist/index.js +2403 -1516
- package/dist/ui/assets/{index-D3Q_VrJU.js → index-jFAdUzwZ.js} +1 -1
- package/dist/ui/index.html +1 -1
- 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.
|
|
3
|
-
"generatedAt": "2026-
|
|
2
|
+
"version": "4.5.0",
|
|
3
|
+
"generatedAt": "2026-06-18T06:40:54.759Z",
|
|
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
|
{
|
|
@@ -1342,7 +1342,7 @@
|
|
|
1342
1342
|
"sections": [
|
|
1343
1343
|
{
|
|
1344
1344
|
"title": "Gotchas",
|
|
1345
|
-
"content": " --install and --reconcile are mutually exclusive — pass only one\n --reinstall-empty-dirs and --respect-deletions are mutually exclusive — pass only one\n Default mode is smart-detected: no/stale registry → install, valid registry → reconcile\n --respect-deletions disables the auto-reinstall heuristic for empty directories\n --force overrides skip decisions per item; --reinstall-empty-dirs is a per-directory heuristic\n Codex commands migrate as skills: project scope writes .agents/skills, global scope writes ~/.agents/skills"
|
|
1345
|
+
"content": " --install and --reconcile are mutually exclusive — pass only one\n --reinstall-empty-dirs and --respect-deletions are mutually exclusive — pass only one\n Default mode is smart-detected: no/stale registry → install, valid registry → reconcile\n --respect-deletions disables the auto-reinstall heuristic for empty directories\n --force overrides skip decisions per item; --reinstall-empty-dirs is a per-directory heuristic\n Codex commands migrate as skills: project scope writes .agents/skills, global scope writes ~/.agents/skills\n Antigravity 2.0 agents migrate to .agents/agents.md; skills remain .agents/skills/<name>/SKILL.md\n Kiro agents migrate as custom subagents; rules/config migrate as steering files; skills copy to .kiro/skills; commands/hooks are skipped"
|
|
1346
1346
|
}
|
|
1347
1347
|
]
|
|
1348
1348
|
},
|
|
@@ -1867,7 +1867,7 @@
|
|
|
1867
1867
|
},
|
|
1868
1868
|
{
|
|
1869
1869
|
"flags": "-a, --agent <agent>",
|
|
1870
|
-
"description": "Target agent(s) - can be specified multiple times. Valid: claude-code, cursor, codex, opencode, goose, gemini-cli, antigravity, github-copilot, amp, kilo, roo, windsurf, cline, openhands"
|
|
1870
|
+
"description": "Target agent(s) - can be specified multiple times. Valid: claude-code, cursor, codex, opencode, goose, gemini-cli, antigravity, github-copilot, amp, kilo, kiro, roo, windsurf, cline, openhands"
|
|
1871
1871
|
},
|
|
1872
1872
|
{
|
|
1873
1873
|
"flags": "-g, --global",
|
|
@@ -1925,7 +1925,7 @@
|
|
|
1925
1925
|
"sections": [
|
|
1926
1926
|
{
|
|
1927
1927
|
"title": "Supported Agents",
|
|
1928
|
-
"content": " claude-code Claude Code CLI\n cursor Cursor IDE\n codex Codex CLI\n opencode OpenCode\n goose Goose AI\n gemini-cli Gemini CLI\n antigravity Antigravity Agent\n github-copilot GitHub Copilot\n amp Amp\n kilo Kilo Code\n roo Roo Code\n windsurf Windsurf IDE\n cline Cline\n openhands OpenHands"
|
|
1928
|
+
"content": " claude-code Claude Code CLI\n cursor Cursor IDE\n codex Codex CLI\n opencode OpenCode\n goose Goose AI\n gemini-cli Gemini CLI\n antigravity Antigravity Agent\n github-copilot GitHub Copilot\n amp Amp\n kilo Kilo Code\n kiro Kiro\n roo Roo Code\n windsurf Windsurf IDE\n cline Cline\n openhands OpenHands"
|
|
1929
1929
|
},
|
|
1930
1930
|
{
|
|
1931
1931
|
"title": "Notes",
|