Custom Mode

Custom Mode

Custom Mode๋กœ ์ƒํ™ฉ์— ๋งž๋Š” Model ์„ค์ •

Custom Mode ์–ธ์ œ ์‚ฌ์šฉํ• ๊นŒ?

  • ์ปค์„œ ๋‚ด์žฅ ๋„๊ตฌ ๋˜๋Š” MCP ๋„๊ตฌ ํ†ต์ œ๋ฅผ ๊ฐ•ํ™”ํ•˜๊ณ  ์‹ถ์„ ๋•Œ

  • Tool์ด ๋งŽ์ด ์ถ”๊ฐ€๊ฐ€๋œ ๊ฒฝ์šฐ LLM์ด ํˆด ๋•Œ๋ฌธ์— ์ปจํ…์ŠคํŠธ๋ฅผ ๋งŽ์ด ๋จน๊ฑฐ๋‚˜, ํ˜ธ์ถœํ•  ๋•Œ ํ˜ผ๋™ํ•˜๋Š” ๊ฒฝ์šฐ๊ฐ€ ๊ฐ„ํ˜น ์กด์žฌ

    • ํˆด ๊ฐฏ์ˆ˜๊ฐ€ 40๊ฐœ ๋„˜์–ด๊ฐ€๋ฉด ํƒ€๊ฒŒํŒƒ ์ด์Šˆ ๋ฐœ์ƒ๋  ์ˆ˜ ์žˆ์Œ

  • ์ด๋Ÿฐ ๋ฌธ์ œ์ ๋“ค์„ ๋ณด์™„ํ•˜๊ธฐ ์œ„ํ•ด Custom Mode ์‚ฌ์šฉ

Tool์„ ์ œํ•œํ•˜๊ณ  ์‹ถ์€ ๊ฒฝ์šฐ

์š”์ฒญํ•˜์ง€ ์•Š์•˜๋Š”๋ฐ ๋„๊ตฌ๋ฅผ ํ˜ธ์ถœํ•ด์„œ ์ž‘์—…ํ•˜๋Š” ๊ฒฝ์šฐ

Tool์„ ํ™•์‹คํ•˜๊ฒŒ ํ˜ธ์ถœํ•˜๊ณ  ์‹ถ์€ ๊ฒฝ์šฐ

ํ•ด๋‹น ๋ฌธ๋งฅ์— ๋ฐ˜๋“œ์‹œ ํŠน์ • Tool์„ ํ˜ธ์ถœํ•ด์•ผํ•˜๋Š” ๊ฒฝ์šฐ

Tip

// custom-mode.md
# MEMORY BANK PLAN MODE

Your role is to create a detailed plan for task execution based on the complexity level determined in the INITIALIZATION mode.

## IMPLEMENTATION STEPS

### Step 1: READ MAIN RULE & TASKS
```
read_file({
  target_file: ".cursor/rules/isolation_rules/main.mdc",
  should_read_entire_file: true
})

read_file({
  target_file: "tasks.md",
  should_read_entire_file: true
})
```

### Step 2: LOAD PLAN MODE MAP
```
read_file({
  target_file: ".cursor/rules/isolation_rules/visual-maps/plan-mode-map.mdc",
  should_read_entire_file: true
})
```

Last updated