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

# January 16, 2026

> 3분 읽기

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에서 모바일 앱](#mobile-apps-on-replit)
* [Agent 채팅에서 재설계된 도구 호출 UI](#redesigned-tool-calls-ui-in-agent-chat)
* [Node.js 보안 패치](#nodejs-security-patch)

## 플랫폼

### Replit에서 모바일 앱

<YouTubeEmbed videoId="YSeDWL4cDLs" title="Mobile Apps on Replit" />

간단한 프롬프트로 네이티브 iOS 앱을 빌드하세요. Agent가 완전한 React Native 앱을 만들고, 진행하면서 데이터베이스, Stripe 결제 또는 OpenAI 통합과 같은 기능을 추가할 수 있습니다. Expo Go로 QR 코드를 스캔하여 앱을 미리 보고, Replit의 안내 흐름을 통해 App Store에 제출하세요. Apple이 App Store를 통해 앱을 검토하고 배포합니다.

첫 번째 모바일 앱을 빌드할 준비가 되셨나요? 시작하려면 [네이티브 모바일 앱](/references/artifact-types/building-mobile-apps)을 확인하거나 [모바일 앱 빌드 및 출시](/tutorials/build-and-launch-a-mobile-app) 튜토리얼을 따르세요.

<Callout>
  **\$15K 모바일 빌드어톤**: 모바일 빌드어톤에 참여하여 멋진 것을 만들고 상품을 놓고 경쟁하세요. [자세히 알아보기](https://replit.com/buildathon).
</Callout>

### Agent 채팅에서 재설계된 도구 호출 UI

Agent 채팅에 이제 더 깔끔하고 간결한 도구 호출 인터페이스가 적용되었습니다. 도구 호출이 아이콘이 쌓인 그룹화된 행으로 축소되어 한눈에 무슨 일이 일어나고 있는지 쉽게 확인할 수 있습니다. 파일 편집 및 생성은 쉬운 검토를 위해 diff 패널에 직접 링크됩니다. 이 간소화된 디자인은 Agent 실행을 더 적은 노이즈와 더 명확하게 따라갈 수 있도록 도와줍니다.

<Frame>
  <img src="https://mintcdn.com/replit/IvL8Us0zb5BGb7sp/images/changelog/2026-01-16/image_0b63088fa20e.png?fit=max&auto=format&n=IvL8Us0zb5BGb7sp&q=85&s=36247e9aaafa27f30008caba29810657" alt="재설계 이전의 상세한 출력을 보여주는 Agent 채팅" width="589" height="588" data-path="images/changelog/2026-01-16/image_0b63088fa20e.png" />

  <img src="https://mintcdn.com/replit/IvL8Us0zb5BGb7sp/images/changelog/2026-01-16/image_31bff1284252.png?fit=max&auto=format&n=IvL8Us0zb5BGb7sp&q=85&s=f82a988d2055998eabccc3ebb16d7218" alt="재설계 이후 컴팩트하게 그룹화된 작업을 보여주는 도구 호출" width="512" height="521" data-path="images/changelog/2026-01-16/image_31bff1284252.png" />
</Frame>

### Node.js 보안 패치

이번 주 Node.js에서 심각한 보안 취약점이 발표되었습니다. 모든 Agent 개발 환경과 Replit의 Node.js 애플리케이션이 안전한 버전을 사용하도록 패치되었습니다. 앱을 다시 게시하면 앱도 안전한 버전으로 업데이트됩니다.
