@@ -13,7 +13,9 @@ There are multiples ways to configure ECA:
1313 `~/.config/eca/config.json`
1414 ```javascript
1515 {
16- "chatBehavior": "agent"
16+ "chat" : {
17+ "defaultBehavior": "plan"
18+ }
1719 }
1820 ```
1921
@@ -24,7 +26,9 @@ There are multiples ways to configure ECA:
2426 `.eca/config.json`
2527 ```javascript
2628 {
27- "chatBehavior": "agent"
29+ "chat" : {
30+ "defaultBehavior": "plan"
31+ }
2832 }
2933 ```
3034
@@ -36,7 +40,9 @@ There are multiples ways to configure ECA:
3640
3741 ```javascript
3842 "initializationOptions": {
39- "chatBehavior": "agent"
43+ "chat" : {
44+ "defaultBehavior": "plan"
45+ }
4046 }
4147 ```
4248
@@ -185,7 +191,8 @@ There are 3 possible ways to configure rules following this order of priority:
185191 disabled?: boolean;
186192 }};
187193 chat?: {
188- welcomeMessage: string;
194+ defaultBehavior?: string;
195+ welcomeMessage?: string;
189196 };
190197 agentFileRelativePath: string;
191198 index?: {
@@ -226,6 +233,7 @@ There are 3 possible ways to configure rules following this order of priority:
226233 "mcpTimeoutSeconds" : 60,
227234 "mcpServers" : {},
228235 "chat" : {
236+ "defaultBehavior": "agent"
229237 "welcomeMessage" : "Welcome to ECA!\n\nType '/' for commands\n\n"
230238 },
231239 "agentFileRelativePath": "AGENT.md"
0 commit comments