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

# Custom Instructions

> Replit이 Projects와 세션 전반에서 팀의 컨벤션을 따르도록 돕는 워크스페이스 전역 가이드를 설정하세요.

export const CustomInstructionsCover = () => <FrostedCover label="A persistent guidance document informing a Replit workspace">
    <div style={{
  position: "absolute",
  width: "clamp(158px, 30vw, 252px)",
  height: "clamp(152px, 26vw, 208px)",
  transform: "translate(16%, -2%) rotate(5deg)",
  border: "1px solid rgba(255,255,255,.3)",
  borderRadius: 20,
  background: "rgba(255,255,255,.11)"
}} />
    <div style={{
  position: "relative",
  width: "clamp(190px, 38vw, 322px)",
  minWidth: "min(62%, 280px)",
  minHeight: "clamp(158px, 27vw, 220px)",
  padding: "clamp(14px, 2.4vw, 22px)",
  border: "1px solid rgba(255,255,255,.66)",
  borderRadius: 21,
  background: "linear-gradient(145deg, rgba(255,255,255,.42), rgba(255,255,255,.12))",
  boxShadow: "0 22px 42px rgba(63,20,6,.24)",
  backdropFilter: "blur(8px)",
  boxSizing: "border-box"
}}>
      <div style={{
  display: "flex",
  alignItems: "center",
  justifyContent: "space-between"
}}>
        <div style={{
  display: "flex",
  gap: 6
}}>
          {[0, 1, 2].map(dot => <span key={dot} style={{
  width: 7,
  height: 7,
  borderRadius: 999,
  background: dot === 0 ? "rgba(255,255,255,.9)" : "rgba(255,255,255,.36)"
}} />)}
        </div>
        <span style={{
  width: 28,
  height: 16,
  padding: 2,
  border: "1px solid rgba(255,255,255,.55)",
  borderRadius: 999,
  background: "rgba(255,255,255,.16)",
  boxSizing: "border-box"
}}>
          <span style={{
  display: "block",
  width: 10,
  height: 10,
  marginLeft: 11,
  borderRadius: 999,
  background: "rgba(255,255,255,.86)"
}} />
        </span>
      </div>
      <div style={{
  marginTop: "clamp(22px, 4vw, 34px)"
}}>
        <Lines widths={["68%", "92%", "78%", "54%"]} strong={0} />
      </div>
      <div style={{
  position: "absolute",
  left: "clamp(14px, 2.4vw, 22px)",
  right: "clamp(14px, 2.4vw, 22px)",
  bottom: "clamp(13px, 2.2vw, 19px)",
  height: 24,
  border: "1px solid rgba(255,255,255,.45)",
  borderRadius: 8,
  background: "rgba(255,255,255,.1)"
}} />
    </div>
  </FrostedCover>;

<CustomInstructionsCover />

Custom Instructions는 여러분이나 팀이 Workspace를 위해 한 번 작성하는 상시 적용 가이드입니다. Replit은 해당 Workspace의 Projects와 세션 전반에 이를 사용하므로, 매 Conversation마다 컨벤션을 반복할 필요가 없습니다.

승인된 라이브러리, 보안 요구 사항, 데이터 처리 정책처럼 항상 적용되는 소수의 가이드라인에는 Custom Instructions를 사용하세요. 눈앞의 작업을 위한 여지를 남기도록 짧고 구체적으로 작성하세요.

## 적절한 가이드 유형 선택

* 항상 적용되어야 하는 워크스페이스 전역 가이드에는 **Custom Instructions**를 사용하세요.
* 특정 작업에만 관련된 재사용 가능한 접근 방식과 지원 자료에는 [Skills](/ko/chat/agent-skills)를 사용하세요.
* Replit이 과거 작업에서 유지하는 유용한 컨텍스트에는 [Memories](/ko/chat/memories)를 사용하세요.

## Custom Instructions 설정하기

**Workspace Settings → Customization**에서 Custom Instructions를 관리하세요. 자세한 기능 가이드에서 설정, 사용 가능 여부, 권한, 지침을 효과적으로 유지하는 방법을 다룹니다.

<section className="chat-mkt chat-workflow-grid has-visuals">
  <a className="chat-example has-visual" href="/ko/features/agent/agent-customization">
    <div className="chat-use-case-visual palette-ink">
      <div className="chat-use-case-window">
        <i />

        <i />

        <i />

        <b />

        <b />

        <b />
      </div>

      <em>
        <Icon icon="sliders" size={24} />
      </em>
    </div>

    <span>
      <Icon icon="sliders" size={19} />
    </span>

    <div className="chat-card-title">Custom Instructions 참조</div>
    <p>워크스페이스 전역 가이드를 설정하고 언제 적용되는지 알아보세요.</p>
    <div className="chat-card-link">기능 가이드 열기 →</div>
  </a>
</section>
