C.W.K.
Stream
Lesson 02 of 05 · published

Re-Prompt 나선

~22 min · loop, rot, anti-pattern

Level 0Window Watcher
0 XP0/50 lessons0/13 achievements
0/100 XP to next level100 XP to go0% complete

반복 동의, 반복 위반

모형이 수정 후 같은 rule 계속 위반하면, re-prompt spiral. 고전 모양 — 사람 수정, 모형 동의, 모형 다시 위반, 사람 더 강하게 수정, 모형 더 열정적 동의, 모형 또 위반. 매 cycle이 token만 추가, behavior 변화 X.

왜 일어나나

옛 context 아직 window에, 아직 attention 영향. Reminder 추가는 원래 misdirection 제거 X noise만 amplify. Session이 attention 싸움 졌고, 더 prompting은 잘못된 도구.

Spiral 깨기

Reminder 추가 그만. Live truth durable note에 capture. Fresh session 시작. Note + 현재 source 다시 로드. Clean prefix에서 계속. Fresh session이 보통 한 turn 안에 정확히 행동 — 문제가 capability가 아니라 context 오염이었다는 증거.

Session 오염되면, 더 prompting이 cure 아니라 problem 가능.

Code

Spiral detector·python
def in_reprompt_spiral(history, rule_text):
    violations = sum(1 for turn in history[-10:] if rule_text in turn.violation_log)
    corrections = sum(1 for turn in history[-10:] if rule_text in turn.correction_log)
    return violations >= 3 and corrections >= 3

if in_reprompt_spiral(session.history, "do not push"):
    plan_recovery_to_fresh_session()
Recovery plan·yaml
recovery_plan:
  capture:
    - live rules with source
    - current state
    - failed attempts worth remembering (if any)
  reset:
    - fresh session OR explicit compaction with audit
  reload:
    - durable note
    - current source files
    - latest test/git state
  continue:
    - exactly one next safe action

External links

Exercise

본 (실제든 가상이든) re-prompt spiral 묘사. 대체할 recovery plan 써 — capture, reset, reload, continue.
Hint
반복 동의 + 반복 위반 찾아.

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.