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

推荐订阅源

The GitHub Blog
The GitHub Blog
Martin Fowler
Martin Fowler
Vercel News
Vercel News
U
Unit 42
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
N
Netflix TechBlog - Medium
GbyAI
GbyAI
F
Fortinet All Blogs
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
M
MIT News - Artificial intelligence
D
Docker
IT之家
IT之家
Stack Overflow Blog
Stack Overflow 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
My self-improving agent setup works because it never edit...
Mirza Iqbal · 2026-06-17 · via DEV Community

Everyone wants an agent that rewrites itself.

That dream is seductive. you set it up once, walk away, and come back to a smarter system that improved while you slept. No maintenance, no babysitting, pure compounding.

I run something that improves on its own for weeks at a stretch. And the reason it works is the opposite of that dream. it is never allowed to edit itself.

Let me explain, because the distinction is the whole game.

Everyone wants the wrong thing.

"Self-improving agent" has come to mean autonomy. an agent that changes its own instructions, rewrites its own tools, modifies its own behavior with no human in the loop.

That sounds like progress. It is how you lose control of a system you depend on. An agent that can silently rewrite its own rules can silently break them, and you will not know until something downstream fails in a way you cannot trace back.

More capable self-editing means a larger blast radius the day it edits wrong.

What my setup actually does.

Mine improves through a loop with one hard limit. it can detect, it can propose, it cannot adopt.

Every day it notices things. a tool I depend on shipped a new version. a pattern I corrected twice this week that should become a standing rule. a piece of my own behavior that keeps repeating. It gathers all of that and surfaces it to me.

Then it stops. That change does not happen until I look at it and say yes.

So the system sharpens over time, yet every single improvement passed through a human gate. Nothing enters the setup that I did not see.

Why unsupervised self-editing is a trap.

Picture the alternative I deliberately did not build. an agent that, on its own, decides a rule should change and changes it.

One wrong inference and the rule that protected me yesterday is gone today, silently. The next wrong edit builds on the first. Errors compound in a self-modifying system instead of staying isolated, because each change becomes the foundation the next one reasons from.

By the time you notice, you cannot tell which of fifty unsupervised edits caused the drift. You have traded a system you understand for one that surprises you, and surprise is the last thing you want from the thing you handed your trust to.

Detection is the feature, not autonomy.

Here is what took me a while to see. the valuable part was never the editing. it was the noticing.

Catching that a dependency changed, that a habit had hardened into a pattern, that something I keep fixing should be fixed once and for all. that is the hard part, and that is what I automated. Approving the change is cheap and takes me seconds.

So I automated the watching and kept the deciding. My machine does the part that is tedious and easy to forget. I do the part that needs judgment and carries risk. Each side does what it is actually good at.

My honest opinion.

Here it is. autonomy is the wrong goal for a personal agent system. auditability is the right one.

A setup nobody can audit only looks advanced. it is fragile underneath. My best self-improving system is the one where improvement is real and continuous, and still nothing ever changes without me seeing it first. Those two things fit together. they are the entire design.

Anyone chasing a fully autonomous self-rewriting agent is optimizing for the demo, not for the Tuesday six months out when it quietly edits the wrong thing.

What three weeks of this looks like.

I have not edited the setup by hand in weeks. it is sharper now than when I last touched it.

Not from rewriting itself, but from handing me small, specific, already-reasoned improvements that I approved in seconds. Compounding is real here. control never left my hands.

If you are building anything that improves over time, ask which half you are automating. Automate the noticing. keep the deciding. A system that watches relentlessly and changes only on your yes beats a clever one that surprises you, every single week.

Your turn

Would you let an agent change its own rules without asking you first.

If this was useful

I work through this in public, the wins and the freezes both, mostly on LinkedIn and YouTube. If the real version of building in the open is useful to you, that is where it lives. LinkedIn, YouTube and X under Mirza Iqbal, and the work at next8n.com.