autodev-agent
v0.1.3
Published
Auto-pilot your git. Auto-commits and pushes your code + analyzes your GitHub profile.
Maintainers
Readme
AutoDev Agent
Auto-pilot your git workflow. Watch files, auto-commit, auto-push — zero effort.
Usage
npx autodev-agentNo install required. Run it anywhere, anytime.
Configuration
Create ~/.autodev/config.json:
{
"repos": [
{
"localPath": "/path/to/your/project",
"remoteUrl": "https://github.com/you/project.git",
"branch": "main",
"enabled": true
}
],
"autoCommit": true,
"autoPush": true,
"commitThreshold": 60
}Options
| Field | Default | Description |
|---|---|---|
| commitThreshold | 60 | Seconds of inactivity before auto-commit |
| maxChangesBeforeCommit | 10 | Max file changes before forcing a commit |
| commitMessagePattern | "auto: updated {files}" | Commit message template |
| autoCommit | true | Enable/disable auto-committing |
| autoPush | true | Enable/disable auto-pushing |
How it works
- Agent watches your configured repo folders
- When you save a file, a 60s timer starts
- No more changes? Timer fires → auto-commit
- Auto-pushes to GitHub
- Cloud dashboard shows your live activity
Links
- Live platform: https://autodev-kappa.vercel.app
- GitHub repo: https://github.com/Shashwat1319/autodev-agent
License
MIT
