claudekit-cli 4.4.0-dev.2 → 4.4.0-dev.3

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/cli-manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.4.0-dev.2",
3
- "generatedAt": "2026-05-30T14:38:02.947Z",
2
+ "version": "4.4.0-dev.3",
3
+ "generatedAt": "2026-06-03T00:25:30.454Z",
4
4
  "commands": {
5
5
  "agents": {
6
6
  "name": "agents",
package/dist/index.js CHANGED
@@ -63852,7 +63852,7 @@ var package_default;
63852
63852
  var init_package = __esm(() => {
63853
63853
  package_default = {
63854
63854
  name: "claudekit-cli",
63855
- version: "4.4.0-dev.2",
63855
+ version: "4.4.0-dev.3",
63856
63856
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
63857
63857
  type: "module",
63858
63858
  repository: {
@@ -68483,17 +68483,18 @@ function registerSystemRoutes(app) {
68483
68483
  });
68484
68484
  app.get("/api/system/info", async (_req, res) => {
68485
68485
  try {
68486
- const [packageJson, installLocation, gitVersion, ghVersion] = await Promise.all([
68486
+ const [packageJson, installLocation, gitVersion, ghVersion, bunVersion] = await Promise.all([
68487
68487
  getPackageJson(),
68488
68488
  runCommand("which", ["ck"], "not found"),
68489
68489
  runCommand("git", ["--version"], "unknown"),
68490
68490
  runCommand("gh", ["--version"], "unknown").then((out) => out.split(`
68491
- `)[0] ?? "unknown")
68491
+ `)[0] ?? "unknown"),
68492
+ runCommand("bun", ["--version"], "").then((out) => out || null)
68492
68493
  ]);
68493
68494
  const response = {
68494
68495
  configPath: PathResolver.getGlobalKitDir(),
68495
68496
  nodeVersion: process.version,
68496
- bunVersion: typeof Bun !== "undefined" ? Bun.version : null,
68497
+ bunVersion,
68497
68498
  os: `${process.platform} ${process.arch}`,
68498
68499
  cliVersion: packageJson?.version ?? "unknown",
68499
68500
  packageManager: detectPackageManager(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "4.4.0-dev.2",
3
+ "version": "4.4.0-dev.3",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {