AppleのXcodeがClaude Agent SDKをサポート
本文の状態
日本語全文を表示中
詳細モードで約3分の本文を読めます。
Appleが開発ツールXcodeでAnthropicのClaude Agent SDKをサポート開始した。これにより開発者はXcode内でClaude AIエージェントを統合・構築できるようになる。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
AppleのXcodeがClaude Agent SDKをサポート
AppleのXcodeは、開発者がiPhone、iPad、Mac、Apple Watch、Apple Vision Pro、Apple TVを含むAppleプラットフォーム向けのアプリを構築、テスト、配布するための統合開発環境です。
9月に、開発者がXcode 26でClaude Sonnet 4を利用できるようになると発表しました。Claudeはコード記述、デバッグ、ドキュメント生成に使用できましたが、個別の対話型リクエストへの対応に限られていました。
現在、Xcode 26.3はClaude Agent SDKとのネイティブ統合を導入しています。これはClaude Codeを駆動するのと同じ基盤技術です。開発者は、IDEを離れることなく、Xcode内で直接Claude Codeの全機能を利用できるようになります。これにはサブエージェント、バックグラウンドタスク、プラグインが含まれます。
XcodeにおけるClaude Agent
Xcodeでの長時間実行される自律的な作業にClaudeを活用
Claude Agent SDKにより、ClaudeはXcode内で、より高度で長時間実行されるコーディングタスクに自律的に取り組めるようになりました。具体的には、この統合は以下をサポートします:
プレビューによる視覚的検証。新統合により、ClaudeはXcodeのプレビューをキャプチャし、構築中のインターフェースの実際の見た目を確認、問題を特定し、そこから反復改善できます。これは、視覚的な出力が最も重要となるSwiftUIビューを構築する際に特に有用です。Claudeは自身の実装を自己完結的に検証できるため、最初の試行で開発者の設計意図にはるかに近い、高品質なインターフェースを構築できます。
プロジェクト横断的な推論。Appleプラットフォーム向けの開発では、SwiftUI、UIKit、Swift Dataなど、多様なフレームワークや技術を扱います。Claudeはプロジェクトのファイル構造全体を探索し、各部分の関連性を理解した上で、コード記述を始める前に変更が必要な箇所を特定できます。タスクを与えられると、単に現在開いているファイルだけでなく、アプリ全体とそのアーキテクチャを理解して作業を進めます。
自律的なタスク実行。Claudeには、具体的な手順の羅列ではなく、目標そのものを与えることができます。Claudeは自らタスクを分解し、修正すべきファイルを決定、変更を加え、問題があれば反復します。Apple APIの動作や特定フレームワークの使用方法を理解する必要がある場合、ClaudeはAppleの公式ドキュメントを直接検索できます。また、必要に応じてプロジェクトを更新し、タスクが完了するかユーザーの入力が必要になるまで作業を継続します。これは、単独または小規模チームで作業する開発者にとって、大きな時間節約となります。
Model Context Protocolによるインターフェース。IDE内で直接Claude Agentにアクセスできることに加え、Xcode 26.3はその機能をModel Context Protocol(MCP)を通じても利用可能にします。Claude Codeを使用する開発者は、MCPを介してXcodeと連携し、CLI(コマンドラインインターフェース)を離れることなく視覚的プレビューをキャプチャできます。
Xcode 26.3は本日より、Apple Developer Programの全メンバー向けにリリース候補版として利用可能で、まもなくAppleのApp Storeでもリリース予定です。詳細はAppleの発表をご覧ください。
関連コンテンツ
陸軍長官ピート・ヘグセスのコメントに関する声明
陸軍長官へのAnthropicの対応と顧客への助言。
陸軍省との協議に関するダリオ・アモデイからの声明
AIの国家安全保障上の利用に関する当社CEOの声明。
Anthropic、Claudeのコンピュータ利用能力を強化するためVerceptを買収
原文を表示
Apple’s Xcode now supports the Claude Agent SDK
Apple's Xcode is where developers build, test, and distribute apps for Apple platforms, including iPhone, iPad, Mac, Apple Watch, Apple Vision Pro, and Apple TV.
In September, we announced that developers would have access to Claude Sonnet 4 in Xcode 26. Claude could be used to write code, debug, and generate documentation—but it was limited to helping with individual, turn-by-turn requests.
Now, Xcode 26.3 introduces a native integration with the Claude Agent SDK, the same underlying harness that powers Claude Code. Developers get the full power of Claude Code directly in Xcode—including subagents, background tasks, and plugins—all without leaving the IDE.
Claude Agent in Xcode
Using Claude for long-running, autonomous work in Xcode
With the Claude Agent SDK, Claude can now work autonomously on much more sophisticated, long-running coding tasks inside Xcode. Specifically, this integration supports:
Visual verification with Previews. With the new integration, Claude can capture Xcode Previews to see what the interface it’s building looks like in practice, identify any issues with what it sees, and iterate from there. This is particularly useful when building SwiftUI views, where the visual output is the thing that matters most. Claude can close the loop on its own implementation, allowing it to build higher-quality interfaces that are much closer to developers’ design intent on the first try.
Reasoning across projects. Building for Apple platforms means working with a wide range of frameworks and technologies, like SwiftUI, UIKit, Swift Data, and many more. Claude can explore a project's full file structure, understand how these pieces connect, and identify where changes need to be made before it starts writing code. When given a task, it works with an understanding of the whole app and its architecture – not just whichever file is currently open.
Autonomous task execution. Claude can be given a goal, rather than a set of specific instructions. It’ll then break the task down itself, decide which files to modify, make the changes, and iterate if something doesn't work. When Claude needs to understand how an Apple API works, or how a specific framework is meant to be used, it can search Apple's documentation directly. And it can update the project as needed and continue until the task is complete or it needs a user’s input—a meaningful time saver for developers who are often working alone or on small teams.
Interface through the Model Context Protocol. In addition to accessing Claude Agent directly within the IDE, Xcode 26.3 also makes its capabilities available through the Model Context Protocol. Developers using Claude Code can integrate with Xcode over MCP and capture visual Previews without leaving the CLI.
Xcode 26.3 is available as a release candidate for all members of the Apple Developer Program starting today, with a release coming soon on Apple’s App Store. See Apple’s announcement here for more.
Related content
Statement on the comments from Secretary of War Pete Hegseth
Anthropic's response to the Secretary of War and advice to customers.
Statement from Dario Amodei on our discussions with the Department of War
A statement from our CEO on national security uses of AI.
Anthropic acquires Vercept to advance Claude's computer use capabilities
同じ出来事を5媒体で確認
同じ出来事を扱う別媒体の記事です。見出しと公開時刻を比較できます。
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み