惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 BLOG
云风的 BLOG

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Most Useful AI Workflow I’ve Built Isn’t About Writin...
Reme Le Hane · 2026-05-06 · via DEV Community

The Problem Wasn’t Triage

Most AI workflows in software engineering still keep the human directly in the middle of triage.

The AI might help write code.
It might explain a stack trace.
It might summarise a pull request.

But the operational loop itself still depends on someone noticing the issue, prioritising it, investigating it, and deciding whether it matters.

I recently shipped a new feature in one of my side projects. The feature itself worked well and was tested properly, but a reasonably significant crash slipped through because it never crossed the notification thresholds in Firebase Crashlytics.

Had I not gone looking manually, I probably would never have known.

That was the moment the idea started forming.

Building the Workflow

Hermes already had access to Crashlytics through MCP tooling, so I started experimenting with whether the entire discovery and investigation process could be automated.

The workflow now looks roughly like this:

  • Hermes checks Crashlytics every 4 hours
  • New issues are documented and prioritised automatically
  • One issue at a time is delegated into an agent workflow
  • The agent gathers additional context through MCP
  • It attempts reproduction
  • Writes or updates tests
  • Builds the relevant platform bundle
  • Works toward a fix
  • Opens a PR if successful
  • Updates the issue document throughout the process

Once the PR is merged, Hermes closes the Crashlytics issue automatically. CodeRabbit reviews the PR before I even touch it.

At this point the workflow is probably around 90% automated, with human involvement mostly happening during review and validation.

The Important Part Wasn’t the Model

The interesting part is that the biggest breakthroughs had very little to do with raw model intelligence.

The models matter, but operational fit matters far more.

A model that performs well in blog writing might be terrible in a real codebase. A cheap model that looks good in benchmarks might waste enormous amounts of time if it produces low-quality investigations or weak fixes.

The point is not to spend less money on AI.
The point is to solve problems faster and more reliably.

Different stages need different capabilities.

Triage is relatively lightweight. Crashlytics already provides severity ratings, impacted user counts, stack traces, and environmental information. Smaller models can usually prioritise effectively.

Investigation is different.

That is where reasoning quality matters more. The system needs to understand platform limitations, validate assumptions, read documentation, and justify why something cannot be solved if that turns out to be the outcome.

Failure Still Has to Produce Value

One of the production issues that surfaced was caused by a user attempting to upload a 200MB file on Android.

The feature itself was not broken.
The testing was not bad.

The limitation simply had not been considered.

iOS handled the scenario differently, while Android hit native file selector limitations.

The agent eventually linked the issue back to official platform-level documentation explaining that this was an OS-level constraint rather than an application-level bug.

That was surprisingly important to me.

Even when the system could not fully resolve the issue, it still reduced ambiguity.

Instead of:
“Something crashes sometimes.”

The outcome became:

  • here is the root cause
  • here is the platform limitation
  • here are the relevant docs
  • here are the explored approaches
  • here is why they failed

That is still valuable engineering work.

Ambiguity Breaks Agent Systems Fast

One of the biggest lessons from building this was how quickly ambiguity compounds across agents.

Early versions of the workflow failed repeatedly because the orchestration itself was unclear.

At one point Hermes stayed stuck in monitoring mode for several iterations because the instructions were sequenced poorly. The issue was not really model intelligence. The issue was that the workflow itself had contradictory or badly ordered expectations.

The fix was not adding a smarter model.

The fix was:

  • clearer contracts
  • simplified instructions
  • stronger constraints
  • better sequencing
  • explicit breakout conditions
  • reduced ambiguity between systems

In other words:
the same kinds of improvements that make human engineering teams work better.

The Real Value

The most useful AI workflows probably are not the flashy ones.

They are the ones that quietly reduce operational overhead, improve visibility, enforce accountability, and help small teams operate beyond their size.

Large companies can throw QA teams, support teams, and operational engineers at problems.

Solo developers and small teams usually cannot.

For them, unnoticed production issues hurt more.
Context switching hurts more.
Operational overhead hurts more.

This type of workflow creates something surprisingly valuable:
a lightweight operational engineering layer that continuously investigates issues instead of waiting for someone to eventually notice them.

The human is still there.
The accountability is still there.
The review process is still there.

But the ignored middle starts disappearing.

And honestly, that feels far more useful than most AI demos I’ve seen online.

Next time: Why AI Workflows Fail Without Clear Ownership and Resolution States