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

推荐订阅源

A
About on SuperTechFans
G
Google Developers Blog
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
小众软件
小众软件
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
P
Proofpoint News Feed
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
The Cloudflare Blog
博客园_首页
美团技术团队
大猫的无限游戏
大猫的无限游戏
B
Blog
IT之家
IT之家
Jina AI
Jina AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

Blog on 1Password Blog

Why secure-by-design is an incentives problem, with Bob Lord | 1Password NIST and AI agents: 1Password’s approach to agent identity | 1Password Go beyond device health with External Checks in 1Password Device Trust | 1Password Natoma and 1Password help enterprises scale AI securely with governed agent access | 1Password New integrations between 1Password SaaS Manager and EPM | 1Password A first step toward post-quantum security | 1Password RSA 2026: Leading the way to secure agentic AI | 1Password How 1Password is Building a Culture of AI Fluency Through AI Champions | 1Password 1Password vs. Keeper Security: A comparison | 1Password 1Password vs. LastPass: Which is right for you? | 1Password Secure MCP credentials with 1Password and Runlayer | 1Password The next layer of AI security | 1Password Building the next chapter of Go-to-Market in EMEA | 1Password Automating SOC workflows with 1Password Enterprise Password Manager | 1Password Automated Provisioning hosted by 1Password: A Simpler, Smarter Way to Manage Access | 1Password Introducing 1Password® Unified Access: Identity Security for Humans and Their AI Agents | 1Password Next-generation automated provisioning, without compromising zero-knowledge security | 1Password Bitwarden vs. 1Password: Which password manager is right for you? | 1Password Password Manager for Families, Enterprise & Business | 1Password | 1Password How to wrangle SaaS contract renewals | 1Password Stop trusting consumer browsers with work credentials | 1Password IAM stops at sign-in. Your credentials do not. | 1Password Your digital pit crew: a 10-minute pre-race security checklist | 1Password 1Password Device Trust is coming to EMEA | 1Password The identity transformation: Analyst and CIO insights | 1Password Why now is the moment to join 1Password Go-To-Market | 1Password Identity and Accountability in the Age of AI Agents | 1Password 1Password becomes the first global partner to transact through Express Private Offers in AWS Marketplace | 1Password Start Learning on 1Password Academy | 1Password Expanding Programmatic Access to 1Password | 1Password
How 1Password secures agent architectures | 1Password
info@1password.com (Jeff Malnick) · 2026-02-24 · via Blog on 1Password Blog

Since 1Password began, we have built security into the places where work actually happens. Security is not treated as an overlay or a separate workflow, we build directly into the browser, command lines, developer tools, and IDEs, where decisions are made and actions take place. We believe that if you want to improve security outcomes, you build where the work happens, making the secure path the simplest one. 

That design philosophy is even more critical in the age of AI agents.

Agent architectures come in many forms. Whether you’re building with a ReAct pattern (possibly with RAG), plan-then-execute, or a multi-agent swarm, all AI agents share a common theme: a deterministic chassis. This chassis contains the client-server architecture that underpins all agent architectures. There’s a lot of buzz around AI agents today, but what often gets lost is that what seems novel is actually built on patterns we’ve relied on in software development for decades.

Agentic systems predate generative AI. The finite state machine, introduced in the 1950s, underpins workflow-orchestrated and plan-then-execute agent designs. Classical planning systems such as STRIPS evolved into hierarchical task networks (HTN), which are still essential for task decomposition in modern agents. Blackboard architectures, popular in complex systems and gaming, resemble current multi-agent coordination models. Event-driven architectures share similarities with the ReAct loop, where the system processes an event, determines an action, executes it, and observes the outcome. While the underlying computational patterns remain consistent, the reasoning engine within these systems has evolved.

In modern agents, that reasoning engine is a probabilistic language model. But the skeleton around it, the runtime, where the execution model for client-server interactions remains deterministic. Every agent ultimately runs inside a client-server shell that invokes an AI context loop one or many times. This shell is the agent chassis, and even though it’s not as sexy as the bleeding-edge models that it interacts with, it’s critical for security.

When I say “agent chassis,” I mean the deterministic runtime that calls the model. It serves as the process boundary where syscalls, client-server network logic, and command flow occur. It is the layer that turns a model’s suggested action into a real interaction. 

Diagram: a user interaction/prompt enters the agent chassis and flows to the AI model (LLM). The agent chassis manages interactions with MCP tools, pgvector database, and AWS blob storage.

The chassis receives little attention because it doesn’t demo well. It is not the part that generates novel text or autonomous behavior. However, it is crucial for security. It mediates network calls, securely retrieves secrets, writes audit logs, and enforces policy guardrails with a deterministic guarantee. 

Until we can prove that agent intent is consistently honest, the AI context itself must be considered untrusted. Trust is established and enforced in the deterministic layer surrounding the context.  Secret injection and decisions to block or permit outbound requests are managed within the chassis.

Agents today are built on the command line, the IDE, and the browser, mature environments with decades of operational and security history. They are the same environments that developers and knowledge workers have relied on for years. The difference is that the “client” interacting with them is increasingly agents rather than humans.

1Password has been building security directly into those environments for a long time. We embed in browsers to secure authentication flows without copy-and-paste, integrate with CLIs to inject secrets without exposing them in shell history or environment files, and support IDEs so developers remain in their workflow. Our investment in SDKs and service accounts enable automation to retrieve secrets safely without hardcoding. Our approach has always been to meet users in their existing tools and ensure that the secure path is the natural one.

Diagram 2: a user interaction/prompt enters the agent chassis with secret injection and policy enforcement and flows to the AI model (LLM) with secret injection and policy enforcement. The agent chassis manages interactions with MCP tools, pgvector database, and AWS blob storage.

This philosophy becomes increasingly important as agents become the interface layer.

The CLI and IDE are becoming the primary entry points for agents, while the browser is evolving into a headless backend, with agents acting on users’ behalf. Although users may interact through chat interfaces, the underlying runtimes remain the browser, terminal, and IDE. As the chassis evolves, its embedded security guarantees must also advance.

This is why 1Password partnered with Browserbase last year to develop a headless version of the 1Password browser extension. This allowed agents using director.ai for headless browsing to securely access credentials through a vault-backed mechanism. The browser remained the chassis. The vault remained the source of truth. The enforcement boundary remained outside the AI context: the client changed shape, but the trust model did not.

That same pattern applies to terminals and IDEs. As agents operate inside command-line and IDE workflows, secret injection must continue to be mediated. When you can’t rely on changing behaviors, you have to change the system. That’s why 1Password is invested in building security into the systems that developers and every-day users leverage so the easy path is the secure path, regardless of what tool they’re using.

Agents will continue to evolve, but the chassis will remain the place where security lives, and that’s where you can continue to find 1Password innovating now and in the future. 

News and updates for developers

Subscribe to our developer newsletter to be the first to know about new betas, tools, and resources for developers.