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

# March 13, 2026

> 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="Introducing 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>
