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

推荐订阅源

Martin Fowler
Martin Fowler
Jina AI
Jina AI
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
I
InfoQ
L
LangChain Blog
The Cloudflare Blog
IT之家
IT之家
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
博客园 - 聂微东
美团技术团队
博客园_首页

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
How to Build AI Agents That Don't Delete Your Database
Abdul Rehman · 2026-06-16 · via DEV Community

Suppose an AI agent starts making bulk edits across thousands of records. Not deleting data, but rewriting descriptions with hallucinated details. The system catches it because an automated validation gate rejects the output. No real client is harmed, but the scenario shows why safety needs to be structural.

If you're building an AI-powered SaaS where an agent can write, update, or delete data, you need a safety framework before you need features. Here's what I've learned from shipping production systems that let LLMs touch real databases.

The Three Layers of Agent Safety

Most teams start with one guardrail and call it done. A prompt that says "don't delete anything." A confirmation dialog. A rate limit.

That's not enough. I structure agent safety in three layers that each catch a different failure mode.

Layer 1: Action boundaries. The agent can only call functions you explicitly define. No raw SQL access. No direct database writes. Every action goes through a typed function with its own validation.

Layer 2: Pre-execution validation. Before any write happens, the system checks the action against business rules. Is this user authorized? Does the data pass schema validation? Is the operation idempotent?

Layer 3: Post-execution monitoring. After the action completes, you log what happened, compare it to what was expected, and alert on anomalies.

Here's what this looks like in practice.

Idempotent Actions Are Non-Negotiable

The most dangerous property of LLM-generated actions is that they're not naturally idempotent. An agent might call "update job listing" twice because it didn't get a clear confirmation the first time. If that action increments a counter or appends to a field, you've got corrupted data.

A production pipeline processing thousands of records daily needs an idempotency layer. Every write action requires an idempotency key, usually a hash of the action type plus the target record ID plus a timestamp window.

interface AgentAction {
  type: 'update_listing' | 'create_draft' | 'flag_content';
  targetId: string;
  payload: Record<string, unknown>;
  idempotencyKey: string; // hash(type + targetId + timestampWindow)
}

async function executeAgentAction(action: AgentAction) {
  const existing = await db.idempotencyLog.findUnique({
    where: { key: action.idempotencyKey }
  });

  if (existing) {
    return { status: 'already_executed', result: existing.result };
  }

  const result = await performAction(action);

  await db.idempotencyLog.create({
    data: {
      key: action.idempotencyKey,
      action: action.type,
      result
    }
  });

  return { status: 'executed', result };
}

The key insight: the agent doesn't decide the idempotency key. The system generates it from the action context. This prevents the agent from accidentally reusing keys or generating collisions.

Human-in-the-Loop That Actually Works

A confirmation dialog that says "Are you sure?" is theater, not safety. The agent already committed to the action. The human is just rubber-stamping.

Real human-in-the-loop means the agent proposes, the system validates, and the human approves or rejects with full context. Consider a tool that generates tailored resumes in bulk. Every generated resume goes through a validation step before it's available for download.

The pattern works like this:

  1. The agent generates the action and stores it as a "proposal" with a status of pending.
  2. The system runs automated checks: schema validation, business rule enforcement, anomaly detection.
  3. The human reviews a diff view showing exactly what changed.
  4. Only after explicit approval does the proposal become active.

For high-risk actions like deleting records or updating financial data, I add a second approval requirement. Two different humans must confirm. It sounds heavy, but it only matters for the dangerous operations. Routine actions like updating a job description can use a single approval or even auto-approve if the automated checks pass.

The Rollback Strategy Nobody Talks About

Most teams design for success. They assume the agent will do the right thing and plan for that. But the real question is: what happens when the agent does the wrong thing and you don't catch it for six hours?

You need a rollback strategy that works at the data level, not just the application level.

For every write action an agent performs, store a before-image of the affected records. This is a snapshot of the data before the change, stored in a separate audit table. If something goes wrong, you can reconstruct the exact state before the agent touched it.

async function executeWithRollback(action: AgentAction) {
  const beforeImage = await captureBeforeImage(action.targetId);

  try {
    const result = await performAction(action);

    await db.auditLog.create({
      data: {
        action: action.type,
        targetId: action.targetId,
        beforeImage,
        afterImage: result,
        agentSessionId: action.sessionId,
        timestamp: new Date()
      }
    });

    return result;
  } catch (error) {
    await restoreFromBeforeImage(action.targetId, beforeImage);
    throw error;
  }
}

This pattern saved a project when an agent misclassified records against the wrong geographic zones. The agent was supposed to map buyer preferences to grid tiles, but a prompt bug caused wrong resolution assignment. Because before-images existed, the rollback took seconds instead of manual reconstruction across a large dataset.

Monitoring for Agent Drift

Agents don't fail the same way twice. A prompt that works perfectly for weeks can start producing bad output because the underlying model changed, or because the data distribution shifted, or because a user found an edge case.

Run automated monitoring on every agent action. Track:

  • Action frequency per session. If an agent starts making many more writes than usual, something is wrong.
  • Validation failure rate. A spike in rejected proposals means the agent is producing bad output.
  • Human override rate. If humans are consistently rejecting or modifying agent proposals, the agent's prompt needs adjustment.

These metrics feed into a dashboard that alerts when any threshold is crossed. Don't wait for a user to report a bug. Let the system tell you when the agent is drifting.

The Hardest Lesson

The hardest lesson is that you can't prompt your way out of safety problems. No matter how carefully you write the system prompt, the agent will find edge cases you didn't anticipate. The safety framework has to be structural, not instructional.

A prompt that says "never delete records" is a suggestion. A function that doesn't expose a delete operation is a guarantee.

Build your safety at the architecture level. Make it impossible for the agent to do damage, not just unlikely. The prompt is for quality. The code is for safety.

If your team is building AI agents that touch production data and you're wondering whether your safety framework is enough, that's the kind of thing I help with. Happy to compare notes on what's worked and what hasn't.


Written by Abdul Rehman, full-stack AI engineer building production SaaS, MVPs, and AI automation. More at PrimeStrides.