> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 2025年9月12日

> 2分で読める

export const YouTubeEmbed = ({videoId, title = "YouTube video", startAt}) => {
  if (!videoId) {
    return null;
  }
  let url = "https://www.youtube.com/embed/" + videoId;
  if (startAt) {
    url = url + "?start=" + startAt;
  }
  return <Frame>
      <iframe src={url} title={title} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowFullScreen></iframe>
    </Frame>;
};

## Agent 3 ローンチ

今週、Agent 3をローンチしました。

<YouTubeEmbed videoId="4FxNXFOdt6w" title="Agent 3 Launch Livestream" />

Agent 3は、自律性、信頼性、スピードに大幅なアップグレードをもたらします：

* **アプリテスト**: Agentが実際のブラウザで自己テストを行い、問題を発見し、リフレクションループで修正します。[アプリテスト](/core-concepts/agent/app-testing)をご覧ください。
* **より長い実行時間**: AgentはLive Monitoringを使用して最大200分間自律的に作業でき、大規模なビルドに最適です。詳細は[Agent](/core-concepts/agent#max-autonomy)をご覧ください。
* **Agent生成**: スケジュールで実行したり、SlackやTelegramと統合するエージェントや自動化を構築します。[Agents & Automations](/core-concepts/agent/agents-and-automations)をご覧ください。

<Frame>
  <img src="https://mintcdn.com/replit/fq3p5W3K0mVwvlo1/images/replitai/app-testing-toggle-on.png?fit=max&auto=format&n=fq3p5W3K0mVwvlo1&q=85&s=c5d005615afe2475bb061ebd2b77746b" alt="アプリテストトグルが有効になっているAgent Toolsパネル" width="790" height="676" data-path="images/replitai/app-testing-toggle-on.png" />
</Frame>

アナウンスページでの詳細はこちら：[Agent 3](https://replit.com/agent3)。

## アプリコネクターとインテグレーション

組み込みのインテグレーションとコネクターでより速く出荷できます：

* **Replit managed**: アプリで自動的に機能する組み込みインテグレーション。
* **コネクター**: 一度サインインしてアプリ全体で再利用できるファーストパーティのインテグレーション。
* **外部インテグレーション**: AgentがAPIキーを使用して設定する信頼できるサードパーティサービス。

<Frame>
  <img src="https://mintcdn.com/replit/azgaw651Z-a6J23V/images/replitai/connectors-overview.png?fit=max&auto=format&n=azgaw651Z-a6J23V&q=85&s=44fc5899e21e5b11318ab41887ff86b5" alt="Replit managed、Connectors、外部インテグレーションの概要図" width="3456" height="1688" data-path="images/replitai/connectors-overview.png" />
</Frame>

ドキュメントで詳細を確認：[Agentインテグレーション](/replitai/integrations)。

## Agents & Automations（ベータ）

Agent 3の一環として、インテリジェントなエージェント、チャットボット、自動化ワークフローを構築できます：

* **Slack Agent**: リサーチ、Q\&A、自動化のためのSlackbotを作成
* **Telegram Agent**: スケジューリング、サポートなどのためのボットを構築
* **時間指定の自動化**: スケジュールに従ったワークフローを実行

<Frame>
  <img src="https://mintcdn.com/replit/fq3p5W3K0mVwvlo1/images/replitai/agents-automations-homepage-2.png?fit=max&auto=format&n=fq3p5W3K0mVwvlo1&q=85&s=ec25b745f7f0e9d95e0af74d2dcb6515" alt="Agents & Automationsの選択を表示するReplitホームページ" width="3024" height="1720" data-path="images/replitai/agents-automations-homepage-2.png" />
</Frame>

注意：外部トリガーにはデプロイ（AutoscaleまたはScheduled）が必要です。詳細：[Agents & Automations](/core-concepts/agent/agents-and-automations)。
