SShortSingh.
Back to feed

Developer Used Claude AI to Cut 8,400 Weekly Errors Down to 11 Real Bugs

0
·1 views

A software developer built a 200-line Python pipeline that feeds structured error data and repository context into Claude Code to automatically triage production issues. Their error tracker was generating around 8,400 events per week across roughly 340 distinct issue groups, far exceeding what any engineer could manually review. The top errors by volume were largely noise — bot traffic, browser warnings, and user-aborted network requests — while genuine bugs were buried deep in the list. The AI agent evaluated each error cluster and returned a verdict, flagging 11 real bugs that had gone unnoticed for months, including a null dereference tied to a 2024 database schema change. The approach aimed not to fix bugs automatically, but to replicate the routine four-minute human triage pass at scale, so engineers only spend time on issues that truly matter.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Cloud AI Coding Agent Founders Read Every Message From All Six Early Users

A small team building a cloud AI coding agent manually reviewed every message sent by their first six users over 21 days, uncovering critical product flaws. A key bug caused the agent to silently report "nothing happened" after spending over two minutes and 254,000 tokens reading a codebase — because the progress tracker only counted file writes and shell commands, ignoring reads and searches. A separate issue sent users a blank white screen instead of a live preview due to a missing base path in scaffolded Vite apps — a fix that had been sitting in a branch but never pushed to production. On a more positive note, one user returned unprompted nearly 13 hours later to continue building after the agent generated a substantial application skeleton, with no email nudge or onboarding prompt. The team concluded that their biggest obstacle was not agent reliability alone, but their own inability to distinguish meaningful automated work from unproductive thrashing in their logs.

0
ProgrammingDEV Community ·

How a Verification-First AI Harness Outperforms Bigger Models in Bug Repair

A software engineering team has published a method for integrating a language model into automated maintenance pipelines while strictly limiting its decision-making authority. The approach, derived from a production deployment managing roughly 1,400 extraction targets and 1.6 million monitored items, centers on a machine-checkable oracle that verifies every AI-proposed fix before it is applied. The team found that constraining prompts and narrowing evidence roughly doubled precision, while doubling model size yielded no measurable improvement. The method is designed for problems where artifacts are small and structured, failures are high in volume, and incorrect repairs would produce silent wrong output rather than obvious errors. The authors present the framework as domain-independent, noting it has been validated beyond web extraction in configuration migration and flaky-test repair scenarios.

0
ProgrammingDEV Community ·

Developer Tool Compares A2A Agent Cards Across AWS, GCP, and Azure Clouds

A developer tutorial published on August 25, 2026, demonstrates how to fetch and compare Agent Card metadata from A2A-protocol agents running on three major cloud platforms: AWS Bedrock AgentCore, Google Cloud Run, and Azure Container Apps. An Agent Card is a JSON document hosted at a standard path that describes an agent's name, skills, and endpoint details, and is the first thing a client reads before connecting. The project only performs discovery — it never invokes the agents, sends prompts, or incurs any token costs. A key finding is that only AWS Bedrock AgentCore separates card-discovery permissions from invocation permissions via a distinct IAM action, while Cloud Run and Azure Container Apps bundle both behind a single access role. The accompanying open-source repository includes injectable test transports to simulate edge cases such as authentication denials and legacy card paths without requiring live cloud environments.

0
ProgrammingDEV Community ·

Ripple Recommends Withdrawing XChainBridge Amendment XLS-38 After Low Adoption

Ripple has recommended that the XRP Ledger community withdraw the XChainBridge amendment (XLS-38) and the related fixXChainRewardRounding amendment, citing insufficient developer interest over a 12–15 month evaluation window. XLS-38 was originally designed to enable native cross-chain bridges on the XRPL, allowing assets to move between mainnet and custom sidechains via a decentralized network of witness servers. Ripple concluded that the witness server model posed difficult trade-offs between security, decentralization, and governance, particularly as bridge value scales. The company chose Axelar — a purpose-built bridging network with 75+ validators and experience across 55+ blockchains — to serve the XRPL EVM Sidechain instead, a decision announced in June 2024. With the EVM Sidechain bridge needs met by Axelar and no significant private sidechain projects emerging that required XLS-38, Ripple determined the amendment no longer warrants activation.

Developer Used Claude AI to Cut 8,400 Weekly Errors Down to 11 Real Bugs · ShortSingh