agent-yes 1.44.7 → 1.44.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ts/index.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-yes",
3
- "version": "1.44.7",
3
+ "version": "1.44.8",
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",
package/ts/index.ts CHANGED
@@ -55,6 +55,7 @@ export type AgentCliConfig = {
55
55
 
56
56
  // auto responds
57
57
  enter?: RegExp[]; // array of regex to match for sending Enter
58
+ enterExclude?: RegExp[]; // array of regex to exclude from auto-enter (even if enter matches)
58
59
  typingRespond?: { [message: string]: RegExp[] }; // type specified message to a specified pattern
59
60
 
60
61
  // crash/resuming-session behaviour