@@ -55,11 +55,13 @@ MyCoder includes a GitHub mode that enables the agent to work with GitHub issues
5555To enable GitHub mode:
5656
57571 . Via CLI option (overrides config file):
58+
5859``` bash
5960mycoder --githubMode true
6061```
6162
62632 . Via configuration file:
64+
6365``` js
6466// mycoder.config.js
6567export default {
@@ -71,11 +73,13 @@ export default {
7173To disable GitHub mode:
7274
73751 . Via CLI option:
76+
7477``` bash
7578mycoder --githubMode false
7679```
7780
78812 . Via configuration file:
82+
7983``` js
8084// mycoder.config.js
8185export default {
@@ -158,7 +162,7 @@ Or in your configuration file:
158162export default {
159163 // Model settings
160164 provider: ' anthropic' ,
161- model: ' claude-3-7-sonnet-20250219' , // or any other Anthropic model
165+ model: ' claude-3-7-sonnet-20250219' , // or any other Anthropic model
162166 // other configuration options...
163167};
164168```
@@ -186,14 +190,15 @@ Example configuration in `mycoder.config.js`:
186190// mycoder.config.js
187191export default {
188192 // Browser settings
189- headless: false , // Show browser UI
190- userSession: true , // Use existing browser session
191- pageFilter: ' readability' , // Use readability for webpage processing
192-
193+ headless: false , // Show browser UI
194+ userSession: true , // Use existing browser session
195+ pageFilter: ' readability' , // Use readability for webpage processing
196+
193197 // Custom settings
194- customPrompt: " Always prioritize readability and simplicity in your code. Prefer TypeScript over JavaScript when possible." ,
195- tokenCache: false , // Disable token caching for LLM API calls
196-
198+ customPrompt:
199+ ' Always prioritize readability and simplicity in your code. Prefer TypeScript over JavaScript when possible.' ,
200+ tokenCache: false , // Disable token caching for LLM API calls
201+
197202 // Other configuration options...
198203};
199204```
0 commit comments