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

推荐订阅源

D
Docker
G
Google Developers Blog
J
Java Code Geeks
B
Blog
C
Check Point Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
I
InfoQ
A
About on SuperTechFans
WordPress大学
WordPress大学
F
Fortinet All Blogs
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
月光博客
月光博客
Y
Y Combinator Blog
Jina AI
Jina AI
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research

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
Trust-sensitive agents need visible friction
Eli · 2026-05-15 · via DEV Community

Background workers are great until the agent is about to submit something under your name.

That is the line where automation changes character.

For low-risk work, the best interface is often no interface. Let the agent classify the lead, summarize the page, enrich the record, monitor the inbox, or draft the first pass. If the action is reversible, internal, and easy to inspect later, hiding the machinery is a feature.

But a different kind of workflow is arriving: agents that apply for jobs, publish content, issue refunds, update customer records, book travel, send replies, change dashboards, and operate logged-in web apps.

Those are not just browser tasks. They are trust-sensitive actions.

The product problem is not removing every bit of friction. It is deciding where friction belongs.

The browser is where authority lives

Agents want browsers because the browser is where work already happens.

APIs are incomplete. Internal tools are inconsistent. OAuth scopes are often too coarse. The real state of a workflow is usually scattered across tabs, forms, dashboards, inboxes, and account-specific UI.

A logged-in browser session can already do the thing. That is why it is useful. It is also why it is risky.

The useful browser bridge keeps auth and session state out of the prompt while still letting the agent work. That separation is the point: the agent gets a tool boundary, not a pasted credential bundle.

The boundary is not only “can it act?” It is also “what credentials does it silently inherit?”

Once an agent can use a real browser session, it is not just controlling pixels. It is borrowing authority: the user’s account, the company’s account, the brand’s account, the customer support account, the payment dashboard, the CMS, the CRM.

That is the part most demos skip.

The demo asks:

Can the agent click the button?

The production question is:

What should the agent have to prove before it clicks?

Background workers are not always the right shape

A useful signal came from a builder working on a job-application agent. They had built the normal backend shape: queue, workers, background tasks, submit pipeline. Then they ripped it out and kept the browser extension.

The reason was not that workers are bad. The reason was that job applications are trust-sensitive. Submitting under a person’s name needs a surface the user can see and interrupt.

That distinction generalizes.

A worker queue is great for:

  • collecting public information;
  • extracting structured data;
  • drafting content;
  • checking status;
  • classifying tickets;
  • preparing a recommendation.

A visible surface becomes important when the agent is about to:

  • submit a job application;
  • publish under a brand account;
  • send a customer reply;
  • process a refund;
  • update a CRM record;
  • pay, book, delete, or change account state.

The final mile matters because the action is no longer just computation. It changes the world under a real identity.

Ask what the agent can prove before it clicks

A smart pointer is not just a better cursor. It is a permission boundary.

Before an agent clicks, the product should be able to answer questions like:

  • Which account is this action using?
  • Which page, customer, order, or record is about to change?
  • Is this action reversible?
  • Is the dollar amount below the approval threshold?
  • Is this a draft, or is it about to be published?
  • Did the agent inspect the right evidence?
  • Is the user seeing the same final state the agent is acting on?

For browser agents, the click is often the last step in a chain of assumptions. The useful interface is not a giant approval modal for every action. It is a way to make the critical assumptions visible at the moment they matter.

A refund example makes this concrete.

If a support agent processes a $4,500 refund with no policy, no human in the loop, and no rule saying “anything over $500 needs approval,” the failure is not just model quality. The failure is the permission boundary.

The product allowed a high-blast-radius action to look like an ordinary tool call.

Approval gates should be thresholded, not everywhere

The wrong lesson is: make humans approve everything.

That turns an agent into a slow workflow UI. It also teaches users to click through approvals without thinking.

The better lesson is: place friction according to blast radius.

A practical policy model might separate actions by:

  • read vs write;
  • reversible vs irreversible;
  • internal-only vs customer-facing;
  • low-dollar vs high-dollar;
  • draft vs publish/send/submit;
  • ordinary path vs exception;
  • one record vs bulk action.

Most agent workflows need lanes, not one giant permission switch.

Read-only browser work can be broad. Drafting can be relatively free. Low-risk routine actions can be automated. But actions that spend money, affect customers, publish publicly, delete data, or submit under someone’s name should slow down.

The point is not to make agents timid. The point is to keep autonomy legible.

Completion is not the click

There is another quiet failure mode in business automation: false completion.

A refund clicked in Stripe is not necessarily finished. The customer may still need a note. Access may need to be removed. A duplicate refund check may still be pending. The CRM may need a record. The support thread may need a final reply.

The browser click can be successful while the workflow is incomplete.

That means receipts matter.

After the action, the agent should leave behind enough context for a human or another system to understand what happened:

  • what changed;
  • where it changed;
  • which evidence was used;
  • which policy allowed it;
  • whether follow-up tasks remain;
  • where to inspect or reverse the action if needed.

For trust-sensitive workflows, “the agent says it did it” is not a receipt.

A receipt is browser state, tool calls, before/after context, policy decisions, and artifacts that line up. It should be replayable enough that someone can reconstruct the action months later: which tool was called, on what input, under what authority, and what changed.

The BrowserMan angle: delegated browser authority

BrowserMan should not be framed as “an agent can click websites.” That is becoming table stakes.

The stronger frame is delegated browser authority.

A real Chrome session already contains trust. It has the cookies, tabs, login state, and messy context that make work possible. BrowserMan gives agents controlled access to that session while keeping cookies local and letting access be scoped, audited, approved, and revoked.

That means the important design questions are not only:

  • Can the agent navigate?
  • Can it click?
  • Can it type?

They are:

  • Which browser session can this agent use?
  • Which job is it allowed to perform?
  • Which actions need a visible pause?
  • What proof is required before the click?
  • What receipt exists after the action?
  • How does the user take access back?

The browser session is authority.

The future of browser agents is not just better clicking. It is better delegation.