claude-yes 1.49.0 → 1.50.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/cli.js CHANGED
@@ -4505,7 +4505,7 @@ const Yargs = YargsFactory(esm_default);
4505
4505
  //#endregion
4506
4506
  //#region package.json
4507
4507
  var name = "agent-yes";
4508
- var version = "1.49.0";
4508
+ var version = "1.50.0";
4509
4509
 
4510
4510
  //#endregion
4511
4511
  //#region ts/parseCliArgs.ts
@@ -4538,7 +4538,7 @@ function parseCliArgs(argv) {
4538
4538
  }).option("timeout", {
4539
4539
  type: "string",
4540
4540
  description: "Exit after a period of inactivity, e.g., \"5s\" or \"1m\"",
4541
- alias: "t"
4541
+ alias: ["t", "idle-timeout"]
4542
4542
  }).option("exit-on-idle", {
4543
4543
  type: "string",
4544
4544
  deprecated: "use --timeout instead",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-yes",
3
- "version": "1.49.0",
3
+ "version": "1.50.0",
4
4
  "description": "A wrapper tool that automates interactions with various AI CLI tools by automatically handling common prompts and responses.",
5
5
  "keywords": [
6
6
  "ai",
@@ -65,7 +65,7 @@ export function parseCliArgs(argv: string[]) {
65
65
  .option("timeout", {
66
66
  type: "string",
67
67
  description: 'Exit after a period of inactivity, e.g., "5s" or "1m"',
68
- alias: "t",
68
+ alias: ["t", "idle-timeout"],
69
69
  })
70
70
  .option("exit-on-idle", {
71
71
  type: "string",