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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
量子位
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
U
Unit 42
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
博客园 - Franky
博客园 - 聂微东

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
Why your AI agent ignores the rules you wrote
Arseni · 2026-06-14 · via DEV Community

Arseni

You wrote the rule. The agent read it. It broke the rule anyway.

Here's one from a React Native project. My config said:

Never use pnpm add for native packages.

Clear enough. The agent ran pnpm add on a native package in the next session regardless. The build broke without an error message: pnpm resolved react-native@0.79 instead of the 0.76 the project was pinned to, the JS kept compiling, and the native module failed at runtime with a message that pointed nowhere useful. That cost me an hour.

The agent wasn't being disobedient. The rule was bad. It said what to avoid and nothing else, so the first time a situation didn't match the picture in my head, the agent treated it as a soft preference and grabbed the obvious tool.

This is probably the most common reason agent configs don't do much, and it's fixable.

Rules without reasons are just suggestions

When you write "never use X," the agent has to guess where the rule starts and stops. Does it apply here? This case looks a little different, maybe it's fine. An LLM is built to find plausible readings of things, so it finds the one where your rule doesn't quite reach.

Add the reason and the rule stops being a fence to find gaps in. Now it's something the agent can reason from.

<!-- Before -->
- Never use `pnpm add` for native packages.

<!-- After -->
- Never use `pnpm add` for native packages.
  Why: pnpm's hoisting pulls react-native@0.79 instead of the
  pinned 0.76, and the native build breaks with no error. The JS
  compiles fine and the app crashes at runtime with something that
  looks unrelated. Use `npm install --save-exact` in the package
  workspace instead.

The longer version earns its length. The "why" is where the real edge of the rule lives. An agent that knows the failure mode is silent version drift will also catch the cases you never wrote down: a different package manager that hoists the same way, a transitive dependency bumping the version, a teammate's lockfile doing it for you. You can't list every variation. You can explain the mechanism once and the agent fills in the rest.

So write fewer prohibitions and more mechanisms.

A few other things that matter

Keep one source of truth. If a fact lives in two files, one of them is probably already wrong and you don't know which. Your schema is in the migrations. Your types are in one place. Don't restate them in CLAUDE.md, because the copy goes stale and eventually the agent reads the stale one and builds on it with full confidence. Point it at the real file instead: "types are in src/types/, read them" works better than a pasted snippet that rots in a week.

Use a few specialized agents instead of one that knows everything. A pipeline engineer and a mobile engineer have different checklists and different things that bite them. Put both in one prompt and you get something average at both that keeps forgetting whichever half isn't relevant to the current file. Split by domain and load the right one for the right files. The mobile agent doesn't need your migration rules taking up space while it edits a component.

Make "done" a command, not a feeling. "Looks good" isn't a finish line. The agent calls it done the moment the code looks reasonable, because reasonable-looking is the thing it's actually good at producing. Give it something to check instead:

<!-- Vague -->
- Verify the feature works before finishing.

<!-- Verifiable -->
- Done when: `npm run typecheck` exits 0, `npm test -- auth.test.ts`
  passes, and `curl localhost:3000/health` returns {"status":"ok"}.

Now done is something the agent can confirm rather than something it can convince itself of.

The config you probably have

Most of them look like one of these:

## Our stack
We use React Native, Supabase, TypeScript, Effector.

## Rules
- Always use TypeScript.
- Never use var.
- Prefer functional components.

One is a list of technologies. The other is a list of rules with no reasons attached. Between them they tell the agent what you use and what to steer clear of, and nothing about how to approach a task or why any of it matters. So the agent learns your stack and keeps making the same mistake every session. It "always uses TypeScript" and types everything as any, because nothing told it what TypeScript was for. It does what the rule literally says and still misses what the rule was for.

Fixing it isn't complicated. Fewer rules, each with the reason attached. One place for each fact instead of three copies. The right specialist for the file in front of it. And a finish line you can actually run. It takes more effort the first time you write it. It takes a lot less than fixing the same mistake for the fortieth session in a row.

If you want a starting point

I put all of this into a template. The source files aren't tied to one tool and convert into Claude Code and Antigravity formats, and there's a short checklist for auditing a config you already have before you move it over: github.com/Guck111/agent-config-template. It's MIT, so use whatever's useful and ignore the rest.

The template is the smaller part though. The thing worth doing costs nothing: open your agent config and find a rule with "never" or "always" in it. If it doesn't say why, the agent is already working out when it doesn't apply.