> ## 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.

# 2026年3月13日

> 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>;
};

## 新機能

* [Replit Agent 4のご紹介](#introducing-replit-agent-4)

## Agent

### Replit Agent 4のご紹介

<YouTubeEmbed videoId="bAUVQfz_SIY" title="Replit Agent 4のご紹介" />

Agent 4が登場しました。創造性のために構築されたAgentは、あなたのAIクリエイティブパートナーです。アイデアをアプリ、デザイン、スライドなどに変換します。コーディング不要です。

Agent 4でできること：

* **なんでも構築できます**：ウェブアプリ、モバイルアプリ、データダッシュボード、AIを活用したツールなどを作成
* **構築前にデザイン**：コードに着手する前に[デザインキャンバス](/learn/projects-and-artifacts/canvas)でモックアップを探索
* **プロジェクトを計画**：コードが書かれる前に[Planモード](/core-concepts/agent/plan-mode)でビルドをマッピング
* **タスクを並行実行**：Agentが複数のタスクを同時に処理して作業スピードを向上
* **チームメンバーとコラボレーション**：他の人をプロジェクトに招待して同時にビルド
* **ツールを接続**：チャットから直接BigQuery、Linear、Slack、Notionなどからデータを取得

<Card title="Agent 4でビルドを始める" icon="arrow-up-right" href="https://replit.com">
  アイデアを説明すれば、Agentが実現します。セットアップ不要。
</Card>
