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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
V
Visual Studio 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
Everyone's Excited About Claude Tag. Nobody's Built the T...
Daniel Nwaneri · 2026-06-24 · via DEV Community

Andrej Karpathy, OpenAI co-founder and former Tesla AI director, called Claude Tag the third major redesign of LLM UI/UX. First the LLM was a website. Then it was an app you downloaded. Now it's a persistent, asynchronous teammate that lives inside your Slack channels with org-wide context. He's right about the architecture. He's silent on what happens to the room.

Simon Smith, who'd already wired ChatGPT Workspace Agents into his team's Slack, said ambient visibility helps adoption: people watch each other use Claude in a shared channel and learn organically, no training program required. That's true for the person who turned Claude on. It's a different experience for the person who didn't get a vote.

I wrote about this eighteen hours after the announcement. Tag Claude into a five-person team and the moment it joins, every message anyone types is something an AI reads. You stop looking like someone using a tool. You start looking like the person who brought a surveillance device into the meeting. The frame you've built from there is unwinnable: good output gets read as "she's outsourcing her thinking." Mediocre output gets read as "see, this is what we were worried about." There's no third outcome that proves the skeptics wrong.

Gail Weiner replied to that thread with something simple. Bring the skeptics into the conversation. Ask how comfortable they are. Start small, let them pick the first use case, and let the small win be something they can point to and say out loud: this added value.

That's not diplomacy. It's a trust mechanism with a hard edge. The moment a skeptic says "okay, this added value" out loud, they're no longer the person blocking the rollout. They're on record as the person who approved it. Gail named it better than I did: the human trust layer. Everything Karpathy is excited about runs on top of that layer, and nobody launching Claude Tag this week is talking about who builds it.

Days before this launch I wrote production-safe-agent-loop, a small Python library for keeping single-agent loops from running away. A four-agent LangChain loop ran eleven days and cost $47,000. Claude Code recursion has burned $16,000 to $50,000 in five hours. The fix wasn't a smarter agent. It was five primitives: a spec writer that forces three answers before the loop runs, a circuit breaker with hard ceilings, an append-only ledger, the loop that respects both, and a review surface that assembles a fixed five-element frame once the run finishes: the original promise, the acceptance criteria, the diff, the evidence, and the unresolved assumptions.

The last piece is the one that matters here: attestation. A human reviews the frame, and attestation is not approval. It's a record that they reviewed exactly what's in front of them and they're taking responsibility for what happens next. The frame gets hashed. Two reviewers attesting the same session get the same hash. That's a receipt, not a vibe.

Claude Tag has none of this. It's ambient, persistent, and it decides on its own initiative what's relevant across every channel it's in. The five-element frame I built for single-agent loops maps directly onto "what did Claude decide in this channel, and did a human actually sign off on it." Just at team scale, across a dozen channels, not one developer's terminal session.

What ships without it

VentureBeat is asking about data retention and vendor lock-in. Twitter is asking what it can do. The actual unresolved question is structural: when an ambient agent acts on its own initiative across a dozen channels, who gets the five-element frame, who has to attest to it, and what happens when nobody does.

Claude Tag isn't wrong to exist. It shipped the easy half. The architecture works. The trust layer is still unbuilt, and it's not a UX problem. It's an audit problem with a name and a shape, and I already wrote the code for what it looks like when someone takes it seriously.

More on agent governance at dannwaneri.com/ai-agents.


AI helped me research and edit this piece. The arguments, the examples, and the opinions are mine. So is whatever's wrong with them.