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

# September 12, 2025

> 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는 라이브 모니터링을 통해 최대 200분 동안 자율적으로 작업할 수 있어 대규모 빌드에 적합합니다. [Agent](/core-concepts/agent#max-autonomy)에서 자세히 알아보세요.
* **에이전트 생성**: 일정에 따라 실행되거나 Slack 및 Telegram과 통합되는 에이전트 및 자동화를 구축하세요. [에이전트 및 자동화](/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 도구 패널" width="790" height="676" data-path="images/replitai/app-testing-toggle-on.png" />
</Frame>

발표 페이지에서 자세히 읽어보세요: [Agent 3](https://replit.com/agent3).

## 앱 커넥터 및 통합

내장 통합과 커넥터로 더 빠르게 배포하세요:

* **Replit 관리**: 앱에서 자동으로 작동하는 내장 통합.
* **커넥터**: 한 번 로그인하면 앱 전반에서 재사용할 수 있는 퍼스트파티 통합.
* **외부 통합**: API 키를 사용하여 Agent가 설정하는 신뢰할 수 있는 서드파티 서비스.

<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 관리, 커넥터, 외부 통합 개요 다이어그램" width="3456" height="1688" data-path="images/replitai/connectors-overview.png" />
</Frame>

문서에서 자세히 알아보세요: [Agent 통합](/replitai/integrations).

## 에이전트 및 자동화 (베타)

Agent 3의 일부로 지능형 에이전트, 챗봇, 자동화 워크플로를 구축하세요:

* **Slack 에이전트**: 리서치, Q\&A, 자동화를 위한 Slack 봇 만들기
* **Telegram 에이전트**: 일정 관리, 지원 등을 위한 봇 구축
* **시간 기반 자동화**: 주기적으로 예약된 워크플로 실행

<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="에이전트 및 자동화 선택을 보여주는 Replit 홈페이지" width="3024" height="1720" data-path="images/replitai/agents-automations-homepage-2.png" />
</Frame>

참고: 외부 트리거는 배포(자동 스케일 또는 예약)가 필요합니다. 자세히 알아보기: [에이전트 및 자동화](/core-concepts/agent/agents-and-automations).
