エージェント・リーの紹介 - Cloudflareスタックへの新インターフェース
Cloudflareはダッシュボードに統合されたAIアシスタント「Agent Lee」を公開し、自然言語による操作でCloudflareリソースの監視・トラブルシューティング・設定変更を一元化する新インターフェースを提供した。
キーポイント
ダッシュボード統合型AIインターフェース
従来のGUIによる複数タブ横断型の操作を自然言語プロンプトに置き換え、単一画面でプラットフォーム全体の管理と実行を可能にした。
自動化されたトラブルシューティングと修正
深夜の503エラーなど複雑な障害の原因特定だけでなく、設定変更やリソースデプロイまで自動実行し、開発者の手動作業を大幅に削減する。
ベータ版の運用実績と継続開発
1日あたり約1万8千人のユーザーが利用し、25万件以上のツールコールを処理。フィードバックフォームを通じて性能向上とエッジケースの解消を進めている。
コンテキスト理解と動的可視化
WorkersやDNS、エラーレートなどのアカウント情報を把握し、質問に応じたインストラクションとインラインチャートを自動生成して視覚的に提示する。
スケーラブルな実務処理と動的可視化
Agent LeeはFAQ対応ではなく、DNSやWorkersなど複数のCloudflareサービスに対して実アカウントで日常的に約25万回のツール呼び出しを実行し、実際のトラフィックデータに基づいたインラインチャートなどを提供します。
Codemodeによるコード生成アプローチ
MCPツール定義を直接モデルに渡すのではなくTypeScript APIに変換し、LLMが得意なコード記述で複数ステップの処理を1スクリプトに連鎖させて実行効率と精度を向上させます。
堅牢なセキュリティと権限管理アーキテクチャ
Durable Objectがプロキシとして動作しAPIキーをサーバー側で注入。読み込みは直接実行するが、書き込み処理はユーザーの明示的な承認を通じた「elicitation gate」でブロックされる構造的な権限モデルを採用しています。
影響分析・編集コメントを表示
影響分析
従来のGUI中心のクラウド管理画面を自然言語エージェントに置き換える動きは、DevOpsおよびSRE領域における作業効率の飛躍的向上を意味する。Cloudflareのようなインフラ大手が実運用データを公開しながらエージェントを改善していく姿勢は、業界標準の「AI-Augmented UI」構築モデルを示唆しており、競合他社も同様のダッシュボード統合型エージェントへの投資を加速させる可能性がある。
編集コメント
技術プロダクトのUI革新は長らく停滞していたが、Cloudflareはこの課題を「エージェント型インターフェース」で解決しようとしている。ベータ段階から実ユーザー数を公開する透明性は高く、インフラ管理のDXにおけるエージェント活用のベンチマークとなるだろう。
Agent Leeはベータ版としてFreeプランをご利用のお客様にご利用いただけます。Cloudflareダッシュボードにログインし、右上隅の「Ask AI」をクリックしてお試しください。

あなたがどのようなものを構築したか、またAgent Leeにどのような機能を追加してほしいか、ぜひお聞かせください。フィードバックはこちらからお寄せください。

原文を表示
While there have been small improvements along the way, the interface of technical products has not really changed since the dawn of the Internet. It still remains: clicking five pages deep, cross-referencing logs across tabs, and hunting for hidden toggles.
AI gives us the opportunity to rethink all that. Instead of complexity spread over a sprawling graphical user interface: what if you could describe in plain language what you wanted to achieve?
This is the future — and we’re launching it today. We didn’t want to just put an agent in a dashboard. We wanted to create an entirely new way to interact with our entire platform. Any task, any surface, a single prompt.
Introducing Agent Lee.
Agent Lee is an in-dashboard AI assistant that understands your Cloudflare account.
It can help you with troubleshooting, which, today, is a manual grind. If your Worker starts returning 503s at 02:00 UTC, finding the root cause: be it an R2 bucket, a misconfigured route, or a hidden rate limit, you’re opening half a dozen tabs and hoping you recognize the pattern. Most developers don't have a teammate who knows the entire platform standing over their shoulder at 2 a.m. Agent Lee does.
But it won’t just troubleshoot for you at 2 a.m. Agent Lee will also fix the problem for you on the spot.
image
Agent Lee has been running in an active beta during which it has served over 18,000 daily users, executing nearly a quarter of a million tool calls per day. While we are confident in its current capabilities and success in production, this is a system we are continuously developing. As it remains in beta, you may encounter unexpected limitations or edge cases as we refine its performance. We encourage you to use the feedback form below to help us make it better every day.
What Agent Lee can do
Agent Lee is built directly into the dashboard and understands the resources in your account. It knows your Workers, your zones, your DNS configuration, your error rates. The knowledge that today lives across six tabs and two browser windows will now live in one place, and you can talk to it.
With natural language, you can use it to:
Answer questions about your account: "Show me the top 5 error messages on my Worker."
Debug an issue: "I can't access my site with the www prefix."
Apply a change: "Enable Access for my domain."
Deploy a resource: "Create a new R2 bucket for my photos and connect it to my Worker."
Instead of switching between products, you describe what you want to do, and Agent Lee helps you get there with instructions and visualizations. It retrieves context, uses the right tools, and creates dynamic visualizations based on the types of questions you ask. Ask what your error rate looks like over the last 24 hours, and it renders a chart inline, pulling from your actual traffic, not sending you to a separate Analytics page.
Agent Lee isn't answering FAQ questions — it's doing real work, against real accounts, at scale. Today, Agent Lee serves ~18,000 daily users, executing ~250k tool calls per day across DNS, Workers, SSL/TLS, R2, Registrar, Cache, Cloudflare Tunnel, API Shield, and more.
How we built it
Codemode
Rather than presenting MCP tool definitions directly to the model, Agent Lee uses Codemode to convert the tools into a TypeScript API and asks the model to write code that calls it instead.
This works better for a couple of reasons. LLMs have seen a huge amount of real-world TypeScript but very few tool call examples, so they're more accurate when working in code. For multi-step tasks, the model can also chain calls together in a single script and return only the final result, ultimately skipping the round-trips.
The generated code is sent to an upstream Cloudflare MCP server for sandboxed execution, but it goes through a Durable Object that acts as a credentialed proxy. Before any call goes out, the DO classifies the generated code as read or write by inspecting the method and body. Read operations are proxied directly. Write operations are blocked until you explicitly approve them through the elicitation gate. API keys are never present in the generated code — they're held inside the DO and injected server-side when the upstream call is made. The security boundary isn't just a sandbox that gets thrown away; it's a permission architecture that structurally prevents writes from happening without your approval.
The MCP permission system
Agent Lee connects to Cloudflare's own MCP server, which exposes two tools: a search tool for querying API endpoints and an execute tool for writing code that performs API requests. This is the surface through which Agent Lee reads your account and, when you approve, writes to it.
Write operations go through an elicitation system that surfaces the approval step before any code executes. Agent Lee cannot skip this step. The permission model is the enforcement layer, and the confirmation prompt you see is not a UX courtesy. It's the gate.
image
Built on the same stack you can use
Every primitive Agent Lee is built on is available to all our customers: Agents SDK, Workers AI, Durable Objects, and the same MCP infrastructure available to any Cloudflare developer. We didn't build internal tools that aren't available to you — instead we built it with the same Cloudflare lego blocks that you have access to.
Building Agent Lee on our own primitives wasn't just a design principle. It was the fastest way to find out what works and what doesn't. We built this in production, with real users, against real accounts. That means every limitation we hit is a limitation we can fix in the platform. Every pattern that works is one we can make easier for the next team that builds on top of it.
These are not opinions. They're what quarter of a million tool calls across 18,000 users a day are telling us.
image
Generative UI
Interacting with a platform should feel like collaborating with an expert. Conversations should transcend simple text. With Agent Lee, as your dialogue evolves, the platform dynamically generates UI components alongside textual responses to provide a richer, more actionable experience.
For example, if you ask about website traffic trends for the month, you won’t just get a paragraph of numbers. Agent Lee will render an interactive line graph, allowing you to visualize peaks and troughs in activity at a glance.
To give you full creative control, every conversation is accompanied within an adaptive grid. Here you can click and drag across the grid to carve out space for new UI blocks, then simply describe what you want to see and let the agent handle the heavy lifting.
Today, we support a diverse library of visual blocks, including dynamic tables, interactive charts, architecture maps, and more. By blending the flexibility of natural language with the clarity of structured UI, Agent Lee transforms your chat history into a living dashboard.
image
Measuring quality and safety
An agent that can take action on your account needs to be reliable and secure. Elicitations allow agentic systems to actively solicit information, preferences, or approvals from users or other systems mid-execution. When Agent Lee needs to take non-read actions on a user's behalf we use elicitations by requiring an explicit approval action in the user interface. These guardrails allow Agent Lee to truly be a partner alongside you in managing your resource safely.
In addition to safety, we continuously measure quality.
Evals to measure conversation success rate and information accuracy.
Feedback signals from user interactions (thumbs up / thumbs down).
Tool call execution success rate and hallucination scorers.
Per-product breakdown of conversation performance.
These systems help us improve Agent Lee over time while keeping users in control.
Our vision ahead
Agent Lee in the dashboard is only the beginning.
The bigger vision is Agent Lee as the interface to the entire Cloudflare platform — from anywhere. The dashboard today, the CLI next, your phone when you're on the go. The surface you use shouldn't matter. You should be able to describe what you need and have it done, regardless of where you are.
From there, Agent Lee gets proactive. Rather than waiting to be asked, it watches what matters to you, your Workers, your traffic, your error thresholds and reaches out when something warrants attention. An agent that only responds is useful. One that notices things first is something different.
Underlying all of this is context. Agent Lee already knows your account configuration. Over time, it will know more, what you've asked before, what page you're on, what you were debugging last week. That accumulated context is what makes a platform feel less like a tool and more like a collaborator.
We're not there yet. Agent Lee today is the first step, running in production, doing real work at scale. The architecture is built to get to the rest.
Try it out
Agent Lee is available in beta for Free plan users. Log in to your Cloudflare dashboard and click Ask AI in the upper right corner to get started.
image
We'd love to know what you build and what you’d like to see in Agent Lee. Please share your feedback here.
image
関連記事
Amplitude社、Cursorにより本番コードの出荷量を3倍に増加
Amplitude社がAI駆動のコードエディタ「Cursor」を導入し、開発チームが本番環境へのコード出荷量を従来の3倍に増加させた。
Copilotクラウドエージェントで3クリックでマージコンフリクトを修正
GitHubがCopilotクラウドエージェントを搭載した「Fix with Copilot」ボタンを導入し、ユーザーが3クリックでマージコンフリクトを自動修正できるようにした。Copilotはコンフリクトを解決し、ビルドとテストを確認してプッシュする。
シエラの共同創業者ブレット・テイラー氏、ボタンクリックの時代は終わったと宣言
シエラの共同創業者ブレット・テイラー氏は、AIエージェントがソフトウェアインターフェースを不要にすると予測した。