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

推荐订阅源

U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
The GitHub Blog
The GitHub Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
量子位
aimingoo的专栏
aimingoo的专栏
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
T
Tailwind CSS Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
G
Google Developers Blog
M
MIT News - Artificial intelligence

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
Coding Agent Frustrations
GroverTek · 2026-05-06 · via DEV Community

I've been writing code a long time. The modern method of using coding agents (pi, opencode, etc.) has so much promise and can be made to do a fair bit of work. But these systems break down as the projects get more complex, larger, or even just more mature.

My primary frustrations stem from 3 main points:

  • My own skill/knowledge (or lack of).
  • My local coding environment (Ollama, local LLMs whenever possible, cheap free cloud LLMs, etc.).
  • Agent focus and capabilities.

I want to discuss the last point and my frustrations here.

Session Based

Coding agents tend to be session based. Token limits are the primary reason behind this. It also is a simple method to provide some organization to what can otherwise be a very complex conversation. The end result though is we need to stay very focused on one particular topic or problem domain. Straying from that topic leads to unnecessary token usage, and confuses responses. For example if your focus is how best to structure your data models, talking about color themes for design purposes briefly (or something else off topic) can then influence the rest of the responses even if the main data model structure conversation does not return to graphic design considerations.

One Project

Want to really confuse your coding agent, try working with two projects simultaneously within one session. Back everything up though - it is very likely to become corrupted. The issue here is the agents assume your current working folder is your primary workspace/project (in most cases). Asking the agent to modify files in other folders or projects can easily lead the agent to get confused about which folder or project it should place new content in. So again we are back to being very focused on a single topic - our current folder/project. We need to exit the agent and start a new instance in a different folder or project to shift focus to that project.

Natural Language pretense.

Try talking to a person the same way you interact with the agents. My wife has strongly informed me this is a bad approach. The problem being that our person to person conversations rely on past memories and a shared context the words may not explicitly define. And we shift topics rapidly and constantly. We just can't talk to agents like that at this time. Doing so shows the limits of technology.

Imperfect Understandings

Words and phrases often have different meanings. Or the current folder may not be where the work needs to happen. The LLMs sometimes misunderstand our requests and undertake actions that lead to errors.

Using a Plan Mode helps. This is where you can have the LLM discuss what it wants to do and how to do it before any changes are made. Plan mode helps with ensuring your intents are understood and gives us a chance to see the misunderstandings early before code is written. However this understanding issue still creeps into the execution/build phase periodically. Asking the agent to undo a misunderstood direction takes time and great care in how you word the instructions. This is frustrating in that it detracts from the main focus/goal.

Code quality.

There is a trade off in play here.

  • Does the generated code accomplish the desired results
  • Is the code written in a way that considers security, best practices, in-house coding standards, etc.
  • Was the solution implemented the way you would do it? Is it close enough to not matter?
  • Is the work definition something you have sufficient expertise in to make these judgements? Or do you need learn more before judging this code.

Getting this trade off balance right can be tricky. Going "YOLO" can be risky. Inspecting everything can be slower than just writing the code yourself. The right answer is somewhere in the middle, and changes for every function definition.

Getting past the frustrations

I see a few ways to get past the frustrations:

  • Patience. Stay Calm and Carry On. Accept that frustrations happen and deal with the issues as they come up. This seems to be the designed for solution in the industry thus far.
  • Fix the issues. Contribute to the agents to work on parts that lead to the frustrations. Improve the technology. If you have the time and know how that is.
  • Use a different agent and/or LLM. Some agents are better at some tasks than others. Some agents respond better to specific workflows.
  • Create your own system that solves the issue. This is more effort up front but might pay off in the long run.

Note: I'm aware of the tools like Hermes Agent, OpenClaw, etc. My experience still shows the same frustrations though, even if they are more capable tools.

Based on these options I'm choosing the last option. This builds on my existing research projects and helps improve my overall understandings.

Next time I will talk about how I'm building a system that can address these frustrations:

  • continuous discussion without sessions
  • awareness of previous topics and AI Coding sessions
  • multi-project capability from the start
  • a personal "valet" to work with you

The foundational elements are in place. Next I need to develop the "product" to make it useful. More on this in my next post though.