{"id":47679585,"url":"https://github.com/thumbrise/autosolve","last_synced_at":"2026-04-02T13:55:09.422Z","repository":{"id":345857885,"uuid":"1186218385","full_name":"thumbrise/autosolve","owner":"thumbrise","description":"Lightweight daemon that polls GitHub for new issues and dispatches AI agents to solve them automatically","archived":false,"fork":false,"pushed_at":"2026-03-28T17:57:48.000Z","size":421,"stargazers_count":1,"open_issues_count":60,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T18:26:29.156Z","etag":null,"topics":["ai","ai-agent","github","polling"],"latest_commit_sha":null,"homepage":"https://thumbrise.github.io/autosolve/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thumbrise.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-19T11:50:24.000Z","updated_at":"2026-03-28T16:20:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/thumbrise/autosolve","commit_stats":null,"previous_names":["thumbrise/autosolve"],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/thumbrise/autosolve","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thumbrise%2Fautosolve","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thumbrise%2Fautosolve/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thumbrise%2Fautosolve/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thumbrise%2Fautosolve/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thumbrise","download_url":"https://codeload.github.com/thumbrise/autosolve/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thumbrise%2Fautosolve/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31307351,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","ai-agent","github","polling"],"created_at":"2026-04-02T13:55:08.787Z","updated_at":"2026-04-02T13:55:09.417Z","avatar_url":"https://github.com/thumbrise.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# autosolve\n\n[![CI](https://github.com/thumbrise/autosolve/actions/workflows/ci.yml/badge.svg)](https://github.com/thumbrise/autosolve/actions/workflows/ci.yml)\n[![Go Reference](https://pkg.go.dev/badge/github.com/thumbrise/autosolve.svg)](https://pkg.go.dev/github.com/thumbrise/autosolve)\n[![GitHub stars](https://img.shields.io/github/stars/thumbrise/autosolve?style=social)](https://github.com/thumbrise/autosolve/stargazers)\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](/LICENSE)\n\nSelf-hosted Go daemon that polls GitHub repositories and dispatches AI agents to analyze issues automatically. No webhooks, no CI glue — just run and forget.\n\n\u003e **🚧 Active development — beta.** The core pipeline works end-to-end: issues are polled, analyzed by a local LLM, and results are posted as GitHub comments. [See it in action.](https://github.com/thumbrise/autosolve/pull/179) [Contributions welcome.](https://thumbrise.github.io/autosolve/contributing/adding-worker)\n\n## How it works\n\n1. **Polls** your GitHub repositories for new and updated issues\n2. **Sends** each issue to a local Ollama model for AI analysis\n3. **Posts** the result as a comment on the GitHub issue — automatically\n\n\u003e 🔗 **[Real example — AI analysis posted on a live issue](https://github.com/thumbrise/autosolve/pull/179)**\n\n## Quick Start\n\n```bash\ngit clone https://github.com/thumbrise/autosolve.git \u0026\u0026 cd autosolve\ngo mod download\ncp config.yml.example config.yml   # set your token + repos\ngo run . migrate up -y\ngo run . schedule\n```\n\nConfigure in `config.yml`:\n```yaml\ngithub:\n  token: ghp_your_token          # needs issues:write scope\n  repositories:\n    - owner: your-org\n      name: your-repo\n  issues:\n    requiredLabel: \"autosolve\"   # optional — only analyze labeled issues\n\nollama:\n  endpoint: \"http://localhost:11434\"\n  model: \"qwen2.5-coder:7b\"     # any Ollama model\n```\n\nThat's it. Every issue with the `autosolve` label gets an AI analysis comment within seconds.\n\n## Documentation\n\n📖 **[thumbrise.github.io/autosolve](https://thumbrise.github.io/autosolve)** — full docs, guides, architecture, devlog.\n\n| Section | What's there |\n|---------|-------------|\n| [Quick Start](https://thumbrise.github.io/autosolve/guide/getting-started) | Setup in 5 minutes |\n| [Configuration](https://thumbrise.github.io/autosolve/guide/configuration) | All config options |\n| [Architecture](https://thumbrise.github.io/autosolve/internals/overview) | How the system works |\n| [The Idea](https://thumbrise.github.io/autosolve/project/idea) | Why this project exists |\n| [Contributing](https://thumbrise.github.io/autosolve/contributing/adding-worker) | Add a worker in 4 steps |\n| [Devlog](https://thumbrise.github.io/autosolve/devlog/) | How we got here — design decisions diary |\n\n## Current Status\n\nEpic v1 is in progress — see [Epic: v1 architecture redesign](https://github.com/thumbrise/autosolve/issues/59).\n\nWhat works today: end-to-end AI dispatch pipeline — multi-repo polling, issue sync, outbox relay, Ollama analysis, GitHub comment posting, feedback loop prevention, per-error retry with degraded mode, rate limiting, full OTEL observability, SQLite with goose + sqlc.\n\nWhat's next: re-analysis on issue updates, adaptive polling, CLI commands, GitHub App migration.\n\n## License\n\n[Apache License 2.0](LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthumbrise%2Fautosolve","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthumbrise%2Fautosolve","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthumbrise%2Fautosolve/lists"}