@stevederico/dotbot 0.22.0 → 0.23.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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ 0.23
2
+
3
+ Fix no-args launches interactive
4
+
1
5
  0.22
2
6
 
3
7
  Simplify CLI, no args for interactive
package/bin/dotbot.js CHANGED
@@ -493,7 +493,7 @@ async function main() {
493
493
  process.exit(0);
494
494
  }
495
495
 
496
- if (args.help || args.positionals.length === 0) {
496
+ if (args.help) {
497
497
  printHelp();
498
498
  process.exit(0);
499
499
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stevederico/dotbot",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "AI agent CLI and library for Node.js — streaming, multi-provider, tool execution, autonomous tasks",
5
5
  "type": "module",
6
6
  "main": "index.js",