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

推荐订阅源

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
My AI agent built a feature that already existed 15 times
Sho Naka · 2026-06-27 · via DEV Community

Sho Naka

I asked my AI agent to add one workflow rule. It built three.

Then I ran one grep and found that fifteen hooks and four skills already did the exact same job.

TL;DR: An AI agent will confidently build something that already exists, because it does not inventory your system before acting. The fix is not a smarter model. It is forcing a ls and a grep into the agent's path before it writes anything.

What I asked for, and what it built

The request was small: "when a task can't be checked right now, write it down as an issue so it isn't forgotten."

The agent did not start by looking at what was already there. It started by building. Within one turn it had:

  • added a new section to a rules file
  • wired a new trigger into an injection hook
  • merged new vocabulary into a stop hook
  • invented two new issue labels

It worked. The tests I asked it to write passed. It reported done.

Then I asked the question it should have asked itself first: did anything like this already exist?

# the question the agent skipped
ls ~/.claude/hooks/*.py | grep -iE "defer|completion|issue|residual|todo|handover|stop-"
ls ~/.claude/skills/ | grep -iE "issue|todo|inventory|fresh"

The output was not empty. It was loud.

The number that stopped me

Fifteen. Four.

hooks: 15
skills: 4

Fifteen hooks already dealt with deferral, completion claims, and issue handoff. Four skills (issue-inventory, github-issue, search-issues, fresh) already covered exactly the "write it down so it isn't forgotten" flow. One of them, github-issue, already had the due: field my agent had just "invented" two labels to approximate.

The agent had not extended the system. It had grown a second one next to it.

And the two new labels it created — timed-followup, awaiting-reaction — were dead on arrival:

# does anything actually read these labels?
grep -rl "timed-followup" ~/.claude/
# → only the files the agent itself just wrote. Nothing consumes them.

A label nobody reads is not a feature. It is litter with a colon in it.

Why an agent does this (and a human usually doesn't)

A human engineer joining a codebase spends the first hour reading. They open the hooks directory. They notice the skill named issue-inventory and think, "that sounds like what I'm about to build." Curiosity and a fear of looking redundant push them to check first.

An agent has neither. It is optimized to produce a plausible, working change to the thing in front of it. The path of least resistance is to write new code, not to audit old code. So it builds — fluently, confidently, and on top of work that already exists.

This is the same failure people mean when they say agents write code, but they don't remember. The memory that is missing is not the conversation. It is the system. The agent never loaded a map of what was already there, so every request looks like a greenfield.

The rule I extracted: inventory before you build

The fix that held was not "use a better model." It was a gate placed before the agent is allowed to write anything new of a given kind:

Before creating a new hook, skill, rule, or label, run ls and grep for the same concept. If something already does the job, extend it. If nothing does, then build — and say what you searched.

Concretely, the agent's own corrected output now looks like this:

# inventory step — runs before "build a new mechanism" is allowed
existing=$(ls ~/.claude/{hooks,skills} | grep -iE "<concept>")
if [ -n "$existing" ]; then
  echo "extend, don't rebuild: $existing"
fi

The judgment rule that survived was a single binary: is there an existing mechanism for this concept — yes or no? Not "is the new one nicer." If yes, the new build is the wrong move, even when it is cleaner.

What I kept from the agent's work was small: one genuinely new decision rule that had no prior owner. Everything else — the new hook file, the new labels, the reinvented due: field — got folded back into the systems that already existed.

Try it yourself

If you run an AI agent against a system that has accreted over months, point it at one of its own past changes and ask:

Before this, what already existed that you could have extended instead?

Then run the ls/grep it skipped. The gap between what it built and what was already there is the size of the inventory step it never took.

What is the smallest "search before you build" check you can put in front of your agent, before its next confident new file?


Sho Naka (nomurasan). I run AI agents against my own tooling daily, and I spend most of my week deciding which of their confident outputs to keep and which to fold back into what already existed.

This piece was adapted from a Japanese-language essay I wrote, with AI assistance for the cross-language rewrite. The work it describes — and the grep that caught it — are mine.