{"slug": "bugwhisperer-how-i-finally-finished-my-abandoned-github-issue-analyzer-8-months", "title": "BugWhisperer: How I Finally Finished My Abandoned GitHub Issue Analyzer (8 Months Later) with GitHub Copilot", "summary": "Developer Simran Shaikh revived an abandoned GitHub issue analyzer project, BugWhisperer, after eight months by leveraging GitHub Copilot to complete the code. The tool now uses Groq's Llama 3.1 AI to triage open issues from any GitHub repo, generating a visual Kanban board, sprint plans, and downloadable analysis reports. Copilot helped Shaikh fix broken API calls and implement reliable JSON output from the AI model, turning a stalled prototype into a functional command center.", "body_md": "**GitHub Repo:** [https://github.com/SimranShaikh20/BugWhisperer](https://github.com/SimranShaikh20/BugWhisperer)\n\n**Live Demo:** [https://bugwhisperer.msusimran20.workers.dev](https://bugwhisperer.msusimran20.workers.dev)\n\nEight months ago I had a problem.\n\nOur dev team had 60+ open GitHub issues across 3 repos. Nobody knew what to fix first. Every sprint planning meeting turned into a 45-minute debate about priority. I thought: what if a script could just read all the issues and tell us what is most critical?\n\nSo I started building. Here is the entire codebase from that day:\n\n``` python\nimport requests\nimport os\n\n# TODO: fix this later\nGITHUB_TOKEN = \"put_your_token_here\"\n\ndef get_issues(repo):\n    # this doesnt work properly\n    url = f\"https://api.github.com/repos/{repo}/issues\"\n    r = requests.get(url)\n    print(r)  # just printing for now\n    # TODO: parse response properly\n\ndef analyze_issue(issue):\n    # wanted to use openai here but ran out of time\n    pass\n\ndef main():\n    repo = \"facebook/react\"  # hardcoded lol\n    get_issues(repo)\n    # analyze_issue() # commented out, broken\n    print(\"done?\")\n\nmain()\n```\n\nYes. That is it. A `print(r)`\n\nthat prints the raw response object. A function called `analyze_issue`\n\nthat literally does nothing. A hardcoded repo URL.\n\nMy commit message on September 15, 2025:\n\n\"initial attempt - giving up for now, too complicated\"\n\nAnd that was it. The repo sat there for 8 months untouched.\n\nWhen I saw the GitHub Finish-Up-A-Thon challenge, this project was the first thing that came to mind. The idea was always solid. The problem was real. I just never had the right tools or the time to push through the hard parts.\n\nThis time I had **GitHub Copilot**.\n\nBugWhisperer is now a full AI-powered GitHub Issue Command Center.\n\n**Paste any GitHub repo URL → Get instant AI triage of every open issue in seconds.**\n\nHere is everything it does now:\n\nEvery open issue gets analyzed by Groq's Llama 3.1 AI and returns:\n\nInstead of a boring list, issues are sorted into a 4-column visual board:\n\nOne click generates a complete 2-week sprint plan with time estimates, recommended team size, and a week-by-week breakdown.\n\nDownload the entire analysis as a `.md`\n\nfile — paste it into your GitHub Wiki, Notion, or Linear instantly.\n\nPost the AI analysis directly as a formatted comment on any GitHub issue — no copy-pasting, no leaving the app.\n\nThis is the honest story of where Copilot actually helped me — not a vague \"it was amazing\" but the specific moments where it unblocked me.\n\nI opened the old `main.py`\n\nin VS Code with Copilot and typed:\n\n\"What is this code trying to do and what is broken?\"\n\nCopilot told me immediately:\n\n`print(r)`\n\njust prints the response object, not the data`analyze_issue`\n\nwas completely emptyIt then suggested the complete fixed GitHub API call with proper authentication, pagination, and error handling. What I could not figure out in a week 8 months ago, Copilot explained and fixed in 2 minutes.\n\nThe hardest technical problem was getting structured JSON output from an AI model reliably. Every time I tried, the model would add markdown fences around the JSON, add explanation text, or sometimes just break the format entirely.\n\nI described the problem to Copilot and it wrote this system prompt pattern that solved it completely:\n\n```\nYou are a senior software engineer analyzing GitHub issues.\nRespond ONLY in valid JSON format.\nNo other text. No markdown. No explanation. Just JSON.\n\n{\n  \"root_cause\": \"...\",\n  \"suggested_fix\": \"...\",\n  \"complexity\": \"Low or Medium or High\",\n  \"priority\": \"Low or Medium or High or Critical\"\n}\n```\n\nThe key Copilot taught me: \"No other text. No markdown. No explanation.\" is far more reliable than just saying \"respond in JSON format.\" That single insight saved me probably 3 hours of prompt debugging.\n\nI had never built a Kanban board before. I asked Copilot:\n\n\"Write a React component that takes an array of issues each with a priority field and displays them in 4 columns: Critical, High, Medium, Low\"\n\nIt wrote the entire working component in one response. I just connected my data to it.\n\nI described what I wanted — take all analyzed issues and generate a 2-week sprint plan. Copilot wrote the complete AI prompt, the API call, the JSON parsing, and even suggested adding a `team_size_recommended`\n\nfield that I had not thought of. That one suggestion made the feature significantly more useful.\n\n```\nUser Input (GitHub URL)\n        ↓\nCloudflare Worker\n        ↓\nGitHub REST API → Fetch open issues (authenticated)\n        ↓\nGroq API (Llama 3.1 8b instant) → Analyze each issue\n        ↓\nReturns: root_cause, suggested_fix, complexity, priority\n        ↓\nReact Frontend → Kanban Board\n        ↓\nOptional: Sprint Planner (second Groq call)\nOptional: Export Markdown report\nOptional: Post to GitHub as comment\n```\n\n| Layer | Technology |\n|---|---|\n| Frontend | React + TanStack + Tailwind CSS |\n| Backend | Cloudflare Workers (serverless) |\n| AI | Groq API — llama-3.1-8b-instant |\n| GitHub | GitHub REST API v3 |\n| Hosting | Cloudflare Workers (free tier) |\n\nSpeed and cost. Groq's inference is genuinely fast — analyzing 10 issues takes about 8 seconds total. The free tier gives 14,400 requests per day which is more than enough. OpenAI costs money. Groq is free. For a developer tool that should be accessible to everyone, free wins.\n\nLovable generates TanStack projects configured for Cloudflare Workers by default. The global edge deployment means the app loads fast anywhere in the world. And the free tier covers 100,000 requests per day which is more than enough.\n\n| September 2025 | June 2026 | |\n|---|---|---|\n| Code | 47 lines of broken Python | Full React + Cloudflare app |\n| UI | Terminal only | Beautiful dark web interface |\n| AI |\n`pass` — literally empty |\nGroq Llama 3.1 analysis |\n| GitHub | Hardcoded `facebook/react`\n|\nAny public repo URL |\n| Analysis | None | Root cause, fix, complexity, priority |\n| Planning | None | AI 2-week sprint planner |\n| Export | None | One-click markdown report |\n| Deployment | Never ran successfully | Live at workers.dev |\n| Cost | $0 (did nothing) | $0 (all free APIs) |\n\n**1. GitHub Copilot is best for bridging knowledge gaps**\n\nI did not know how to build a Kanban board. I did not know the best prompt pattern to force structured JSON from an LLM. I did not know how Cloudflare Workers reads environment variables differently from Node.js. Copilot filled every one of these gaps instantly — not by writing the whole app for me, but by answering the exact question I was stuck on.\n\n**2. Old ideas are often good ideas**\n\nMy September 2025 script had the right idea. The problem was real. The solution direction was correct. It just needed time, better tools, and a reason to push through the hard parts. Do not delete your old projects — they often contain your best thinking from a time when you were closest to the problem.\n\n**3. Constraints force better design**\n\nUsing only free APIs forced me to be efficient. Limiting to 300 tokens per analysis and using the fastest available model made the app feel instant. If I had unlimited budget I might have built something slower and more expensive.\n\n**4. The finish line matters more than the plan**\n\nBugWhisperer v2 looks nothing like what I imagined when I wrote that Python script in September 2025. It is a web app, not a CLI script. It uses Groq, not OpenAI. It runs on Cloudflare, not my laptop. Every single implementation detail changed. But the core idea — help developers understand their GitHub issues faster — stayed exactly the same. Ship the idea, not the plan.\n\n👉 **Live Demo:** [https://bugwhisperer.msusimran20.workers.dev](https://bugwhisperer.msusimran20.workers.dev)\n\nTest it with any of these repos:\n\n`https://github.com/fastapi/fastapi`\n\n`https://github.com/requests/requests`\n\n`https://github.com/psf/black`\n\n**GitHub Repo:** [https://github.com/SimranShaikh20/BugWhisperer](https://github.com/SimranShaikh20/BugWhisperer)\n\nIf this project helped you think differently about your own abandoned side projects, drop a reaction — it genuinely helps this submission and motivates me to keep building.\n\nAnd if you have an unfinished project sitting somewhere, this challenge is your sign to finally ship it. The idea you abandoned is probably better than you remember. 🚀\n\n*Built for the GitHub Finish-Up-A-Thon Challenge*", "url": "https://wpnews.pro/news/bugwhisperer-how-i-finally-finished-my-abandoned-github-issue-analyzer-8-months", "canonical_source": "https://dev.to/simranshaikh20_50/bugwhisperer-how-i-finally-finished-my-abandoned-github-issue-analyzer-8-months-later-with-4ll8", "published_at": "2026-05-29 04:37:57+00:00", "updated_at": "2026-05-29 05:13:00.051519+00:00", "lang": "en", "topics": ["ai-tools", "artificial-intelligence", "ai-products"], "entities": ["GitHub", "BugWhisperer", "SimranShaikh20", "GitHub Copilot", "Facebook", "React"], "alternates": {"html": "https://wpnews.pro/news/bugwhisperer-how-i-finally-finished-my-abandoned-github-issue-analyzer-8-months", "markdown": "https://wpnews.pro/news/bugwhisperer-how-i-finally-finished-my-abandoned-github-issue-analyzer-8-months.md", "text": "https://wpnews.pro/news/bugwhisperer-how-i-finally-finished-my-abandoned-github-issue-analyzer-8-months.txt", "jsonld": "https://wpnews.pro/news/bugwhisperer-how-i-finally-finished-my-abandoned-github-issue-analyzer-8-months.jsonld"}}