@kitnai/cli 0.1.34 → 0.1.35
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/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3516,7 +3516,7 @@ function formatStepLabel(step) {
|
|
|
3516
3516
|
case "remove":
|
|
3517
3517
|
return `Remove ${pc15.red(step.component)}`;
|
|
3518
3518
|
case "create":
|
|
3519
|
-
return `Create ${pc15.green(
|
|
3519
|
+
return `Create ${pc15.green(step.name)} ${pc15.dim(`(${step.type})`)}`;
|
|
3520
3520
|
case "link":
|
|
3521
3521
|
return `Link ${pc15.cyan(step.toolName)} \u2192 ${pc15.cyan(step.agentName)}`;
|
|
3522
3522
|
case "unlink":
|
|
@@ -3719,7 +3719,7 @@ var init_chat = __esm({
|
|
|
3719
3719
|
// src/index.ts
|
|
3720
3720
|
init_update_check();
|
|
3721
3721
|
import { Command } from "commander";
|
|
3722
|
-
var VERSION = true ? "0.1.
|
|
3722
|
+
var VERSION = true ? "0.1.35" : "0.0.0-dev";
|
|
3723
3723
|
var printUpdateNotice = startUpdateCheck(VERSION);
|
|
3724
3724
|
var program = new Command().name("kitn").description("Install AI agent components from the kitn registry").version(VERSION);
|
|
3725
3725
|
program.command("init").description("Initialize kitn in your project").option("-r, --runtime <runtime>", "runtime to use (bun, node, deno)").option("-f, --framework <framework>", "HTTP framework (hono, hono-openapi, elysia)").option("-b, --base <path>", "base directory for components (default: src/ai)").option("-y, --yes", "accept all defaults without prompting").action(async (opts) => {
|