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

推荐订阅源

美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Y
Y Combinator Blog
博客园_首页
有赞技术团队
有赞技术团队
博客园 - Franky
腾讯CDC
G
Google Developers Blog
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
D
Docker
The GitHub Blog
The GitHub Blog
MyScale Blog
MyScale Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
U
Unit 42
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学

Hacker News: Ask HN

The New Window Delete ChatGPT Atlas Spyware Tell HN: Qwen Free Tier Is Discontinued Ask HN: SeedLegals Partnerships in London, worth it? Ask HN: How to highlight talent from untraditional backgrounds? Ask HN: We dont need a programming language now? Durable Object alarm loop: $34k in 8 days, zero users, no platform warning What if Time at the subatomic level has multiple arrows? How to add MidnightBSD Key to UEFI Secure Boot DBX? (Revoked and Forbidden Keys) Ask HN: What's your experience working at xAI as an AI tutor? Any engineers here with experience of clinical data standards? Ask HN: Who is using OpenClaw? Agent Skills for Software Test Automation Ask HN: Who needs contributors? Claude Code is thinking too much Ask HN: What Is the Big-O Order of a Jigsaw Puzzle? Ask HN: Stepping into a new role as a Senior, mentoring dos and dont's? Founder from Zurich heading to SF and Austin for the first time Hacker News No Manual Screenshots: I Built a Scalable Screenshot API Using Cloud Playwright Ask HN: Thought experiment: AGI giving us answers we don't like? Ask HN: I quit my job over weaponized robots to start my own venture 1% Vacancy, 81% Preleased: Where Midmarket Compute Deploys in 2026 Ask HN: Preferred pricing model for sound effects libraries? Copy of the email I sent to my undergraduate professors on Nov 30, 2025 Model API Performance | Hacker News Ask HN: Are open-weight LLMs the new offline encyclopedias? Valgrind 3.27 RC1 is out Claude Code OAuth down for >12 hours Ask HN: What's Better?–Tauri or Electron?
Ask HN: Agents Craving Context
AnthonyR · 2026-04-17 · via Hacker News: Ask HN

Hey, I was an early adopter of the Cursor IDE and pretty much installed it day 1 of it's public release. Like many I've been using LLMs to help accelerate the writing of code in my own company and side projects and have been quite optimistic and satisfied with the quality and experience of using the Cursor IDE chat -> composer -> agents to enhance the developer experience.

However, recently it seems like there has been a shift in how agents work (I am mainly referring to using Cursor agents here but the seems to also apply for Claude Code). When I introduce a problem to the agent a while ago it used to just start writing code. I remember having to be explicit about selecting the files or even lines I wanted it to edit or generate code in, and be quite precise in supplying the LLM with the relevant context. These days I will write a similar prompt to what I would do before: "Refactor X.ts into separate files /utils/[module].ts using the /shared/utils directory as an example". (just a toy example)

Now, instead of just reading the examples I feed it and the context I provide, the agent will read the files and notice the imports, it reads into which imports may be important and then goes into the node_modules and reads the library code and then realizes there are docs linked and then it asks to fetch the docs linked there then in the docs there is a reference to another library so it needs to fetch that library which links to a Github page which it needs to read before realiing.. wait what was the task again? Oh yeah refactoring this. But wait now I need to read all the files that rely on this to make sure that I can refactor those correcly once I make these changes... and so on.

This was not the case even just 1 year ago. Before I was able to do a clear job defining the task and the LLM would do the task with the provided information. Sometimes I would provide the wrong information and it would do the task wrong and I could undo, fix the information and have to do the task again, or I could manually go in a fix the issues. Now, the agents are consuming huge amounts of context and taking incredibly large amounts of time to produce "correct" code where in my experience the 1-shot accuracy seems to only have marginally improved due to the fact that when they finally get to the step of generating code there is so much extraneous context in their prompting that can cause artifacts or issues in the actual generated solution, not to mention the fact that a simple request will take maybe a full minute to change some code in 1 file...

Anyways apologies for the rant but I was wondering if anyone else is experiencing similar changes to the AI coding space and if they have come up with solutions for it? (Caveman mode maybe ? :))