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

推荐订阅源

博客园 - Franky
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Google DeepMind News
Google DeepMind News
腾讯CDC
G
Google Developers Blog
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
美团技术团队
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志

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
Anthropic's New Security Tooling is a Wake-Up Call for Ag...
albe_sf · 2026-05-27 · via DEV Community

Anthropic just shipped a security guidance plugin and a self-hosted sandbox for Claude. This isn't just another incremental feature drop; it's a clear signal that the next phase of AI development is about hardening the agent stack. The takeaway is that security is moving from a manual review afterthought to a critical, automated first pass, and you should be building your systems accordingly.

what just shipped

Two new security-focused features for Claude were announced: a security guidance plugin and a self-hosted sandbox. The plugin acts as a proactive vulnerability scanner for developers as they write code. Anthropic reported using it internally and seeing a 30-40% decrease in security-related comments on pull requests, suggesting it serves as an effective lightweight first pass before a full human code review.

The second component is a self-hosted sandbox, currently in public beta. This allows Claude Managed Agents to operate within a user-controlled environment, including connecting to a user's private servers. This moves agent execution from a multi-tenant cloud environment to your own infrastructure, a significant change for handling sensitive tasks.

why this matters for your agent stack

For the past year, building agents has been an exercise in prompt engineering and orchestration logic. Security has often been reduced to a line in a system prompt like "You are a helpful assistant and you will not perform harmful actions." This approach is brittle and insufficient for production systems.

Anthropic's move signals a necessary shift from prompt-based security to infrastructure-based security. A local, user-controlled sandbox is a fundamental primitive for running agent-generated code safely. It provides a contained environment where an agent can execute tasks, interact with files, and run code without having access to the host system or network by default. This is table stakes for any serious enterprise use case.

The security plugin reframes AI-generated code. Instead of treating it as a magical, opaque output, it treats it like any other code written by a junior developer: something to be linted, scanned, and analyzed for common pitfalls before it ever gets to a human reviewer. It makes security proactive, not reactive.

integrating security analysis into the workflow

Adopting this model means building security checks directly into your agent's code generation and execution loop. The goal is to catch issues before they are ever executed. While the exact implementation of Anthropic's plugin isn't public, you can imagine how it fits into a CI/CD pipeline or a local development environment.

Here is a hypothetical configuration for a pre-commit hook that uses an AI security scanner on staged Python files. This is the kind of automated, low-friction check that the new tooling enables.

# .pre-commit-config.yaml
repos:
-   repo: local
    hooks:
    -   id: claude-security-scan
        name: Claude Security Scanner
        entry: bash -c 'claude-sec-scanner --level=high --fail-on-critical --scope=diff <your_files>'
        language: system
        types: [python]
        stages: [commit]

Enter fullscreen mode Exit fullscreen mode

This approach automates the first pass of a security review. It doesn't replace a human expert, but it filters out the low-hanging fruit, freeing up senior engineers to focus on more complex architectural issues. The result is a faster, more secure development cycle.

the sandbox is the real story

The most significant part of this announcement is the user-controlled sandbox. For any organization working with proprietary code, customer data, or private infrastructure, allowing an external AI model to execute arbitrary code has been a non-starter. A self-hosted sandbox connected to private servers inverts the trust model. Instead of trusting the model provider's environment, you define the environment and its boundaries.

This unlocks the ability to build agents that can securely perform actions on internal systems. An agent could, for example, be given sandboxed access to a staging database to run diagnostics, or permission to interact with an internal code repository to refactor code, all without that data ever leaving your control.

the so-what

The frontier of AI is no longer just about building larger models with higher benchmark scores. It is increasingly about building the professional-grade tooling required to ship products that use those models, safely and reliably. Anthropic is providing a clear template for how to think about agent security.

As a builder, your focus should be shifting. The interesting work is less about novel agent architectures and more about the boring, critical infrastructure needed to run them in production. How do you containerize agent execution? How do you define fine-grained permissions for tool use? How do you automate security analysis for generated code? These are the problems that need to be solved to move agents from demos to deployed products, and this recent release shows one major lab is thinking the same way.

Sources