@sbeeredd04/auto-git
Version:
AI-powered Git automation with intelligent commit decisions using Gemini function calling, smart diff optimization, push control, and enhanced interactive terminal session with persistent command history
33 lines • 680 B
JSON
{
"apiKey": "your-gemini-api-key-here",
"commitMode": "periodic",
"noPush": false,
"watchPaths": ["**/*"],
"debounceMs": 30000,
"interactiveOnError": true,
"enableSuggestions": true,
"rateLimiting": {
"maxCallsPerMinute": 15,
"bufferTimeSeconds": 30
},
"hotkeys": {
"pause": "ctrl+shift+p",
"resume": "ctrl+shift+r",
"enterRepl": "ctrl+shift+1",
"pauseAlt": "1",
"resumeAlt": "2",
"enterReplAlt": "3"
},
"watchOptions": {
"ignored": [
"node_modules/**",
"*.log",
"dist/**",
"build/**"
],
"persistent": true,
"ignoreInitial": true,
"followSymlinks": false,
"depth": null
}
}