@agentskit/chat-cli 0.1.0 → 0.2.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/dist/bin.cjs CHANGED
@@ -364,7 +364,7 @@ ${help}`);
364
364
  var main = async () => {
365
365
  const parsed = (0, import_node_util.parseArgs)({ allowPositionals: true, strict: true, options: { renderer: { type: "string" }, directory: { type: "string", short: "d" }, yes: { type: "boolean", short: "y" }, help: { type: "boolean", short: "h" }, version: { type: "boolean", short: "v" } } });
366
366
  if (parsed.values.help) return void import_node_process.stdout.write(help);
367
- if (parsed.values.version) return void import_node_process.stdout.write(`${"0.1.0"}
367
+ if (parsed.values.version) return void import_node_process.stdout.write(`${"0.2.0"}
368
368
  `);
369
369
  if (parsed.positionals[0] === "completion") {
370
370
  if (parsed.positionals.length !== 2) throw new Error(`Expected one completion shell.
package/dist/bin.js CHANGED
@@ -36,7 +36,7 @@ ${help}`);
36
36
  var main = async () => {
37
37
  const parsed = parseArgs({ allowPositionals: true, strict: true, options: { renderer: { type: "string" }, directory: { type: "string", short: "d" }, yes: { type: "boolean", short: "y" }, help: { type: "boolean", short: "h" }, version: { type: "boolean", short: "v" } } });
38
38
  if (parsed.values.help) return void stdout.write(help);
39
- if (parsed.values.version) return void stdout.write(`${"0.1.0"}
39
+ if (parsed.values.version) return void stdout.write(`${"0.2.0"}
40
40
  `);
41
41
  if (parsed.positionals[0] === "completion") {
42
42
  if (parsed.positionals.length !== 2) throw new Error(`Expected one completion shell.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentskit/chat-cli",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Safe scaffolding for AgentsKit Chat applications.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -31,7 +31,7 @@
31
31
  ],
32
32
  "dependencies": {
33
33
  "zod": "^4.3.6",
34
- "@agentskit/chat": "0.1.0"
34
+ "@agentskit/chat": "0.2.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "^25.0.0",