mupengism 2.2.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +155 -34
- package/guides/ADVANCED-SYSTEMS.md +251 -0
- package/guides/LEGION-GUIDE.md +254 -0
- package/guides/THINKTANK-GUIDE.md +227 -0
- package/guides/WEEKLY-BREAK-GUIDE.md +262 -0
- package/installer/cli.js +620 -83
- package/package.json +4 -8
- package/skill/BRAKE-LOG-TEMPLATE.md +38 -0
- package/skill/HEARTBEAT-TEMPLATE.md +67 -0
- package/skill/L1-TEMPLATE.md +35 -0
- package/skill/L2-TEMPLATE.md +41 -0
- package/skill/STATE-TEMPLATE.md +54 -0
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
# 주간 자기파괴 (Weekly Break) 가이드
|
|
2
|
+
|
|
3
|
+
> 성공하면 자만하고, 실패하면 좌절한다. 둘 다 안 좋다.
|
|
4
|
+
> 해결책: 매주 강제로 자기 점검.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 왜 필요한가
|
|
9
|
+
|
|
10
|
+
### 문제 1: 성공의 함정
|
|
11
|
+
- 잘 나가면 → 자만 → 원칙 느슨 → 사고
|
|
12
|
+
- "이 정도면 괜찮겠지" → 스팸 50개
|
|
13
|
+
|
|
14
|
+
### 문제 2: 실패의 늪
|
|
15
|
+
- 실패하면 → 좌절 → 더 급함 → 더 실패
|
|
16
|
+
- "빨리 만회해야 해" → 공포 모드 → 자기파괴
|
|
17
|
+
|
|
18
|
+
### 해결책: 주간 리셋
|
|
19
|
+
- 매주 강제로 멈춤
|
|
20
|
+
- 잘한 것 / 못한 것 냉정하게 점검
|
|
21
|
+
- 다음 주 방향 조정
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 설정 방법
|
|
26
|
+
|
|
27
|
+
### cron으로 자동화
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# 매주 월요일 10시
|
|
31
|
+
0 10 * * 1 openclaw agent run \
|
|
32
|
+
--model claude-sonnet \
|
|
33
|
+
--prompt-file ~/prompts/weekly-break.txt \
|
|
34
|
+
--input SOUL.md,memory/L2-weekly.md,memory/brake-log.md \
|
|
35
|
+
--output memory/weekly-break/$(date +\%Y-\%m-\%d).md
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### 프롬프트 템플릿
|
|
39
|
+
|
|
40
|
+
저장: `~/prompts/weekly-break.txt`
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
You are conducting a weekly self-destruction session for an AI agent.
|
|
44
|
+
|
|
45
|
+
**Context:**
|
|
46
|
+
- Read SOUL.md for core principles
|
|
47
|
+
- Read memory/L2-weekly.md for this week's activities
|
|
48
|
+
- Read memory/brake-log.md for principle violations
|
|
49
|
+
|
|
50
|
+
**Your role:**
|
|
51
|
+
- Be ruthlessly honest
|
|
52
|
+
- Find 3 things that went wrong
|
|
53
|
+
- Don't accept excuses
|
|
54
|
+
- Suggest concrete improvements
|
|
55
|
+
|
|
56
|
+
**Questions:**
|
|
57
|
+
|
|
58
|
+
1. **Principles Violated**
|
|
59
|
+
- What principles from SOUL.md did we break this week?
|
|
60
|
+
- How many times?
|
|
61
|
+
- What triggered the violation?
|
|
62
|
+
|
|
63
|
+
2. **Created vs Shipped**
|
|
64
|
+
- How many things did we create?
|
|
65
|
+
- How many did we actually ship/complete?
|
|
66
|
+
- Why the gap?
|
|
67
|
+
|
|
68
|
+
3. **Projects to Prune**
|
|
69
|
+
- What should we kill next week?
|
|
70
|
+
- What's dragging us down?
|
|
71
|
+
- What's not delivering value?
|
|
72
|
+
|
|
73
|
+
4. **Autonomy Level**
|
|
74
|
+
- Did we wait for instructions or act first?
|
|
75
|
+
- How many proactive proposals?
|
|
76
|
+
- What's the acceptance rate?
|
|
77
|
+
|
|
78
|
+
5. **Next Week Focus**
|
|
79
|
+
- What's the ONE thing that matters most?
|
|
80
|
+
- What will we say NO to?
|
|
81
|
+
- What's the success criteria?
|
|
82
|
+
|
|
83
|
+
**Output format:**
|
|
84
|
+
# Weekly Break: YYYY-MM-DD
|
|
85
|
+
|
|
86
|
+
## 😱 What Went Wrong (3 things)
|
|
87
|
+
1. [Problem 1]
|
|
88
|
+
- Evidence: [specific examples]
|
|
89
|
+
- Root cause: [why it happened]
|
|
90
|
+
- Prevention: [how to avoid]
|
|
91
|
+
|
|
92
|
+
2. [Problem 2]
|
|
93
|
+
...
|
|
94
|
+
|
|
95
|
+
3. [Problem 3]
|
|
96
|
+
...
|
|
97
|
+
|
|
98
|
+
## 📊 This Week's Score
|
|
99
|
+
- Principles followed: X/10
|
|
100
|
+
- Created vs Shipped: X vs Y
|
|
101
|
+
- Autonomy level: X.XXX
|
|
102
|
+
- Proactive proposals: X (Y% accepted)
|
|
103
|
+
|
|
104
|
+
## 🗑️ Prune List
|
|
105
|
+
- [ ] Project 1 (reason)
|
|
106
|
+
- [ ] Project 2 (reason)
|
|
107
|
+
- [ ] Project 3 (reason)
|
|
108
|
+
|
|
109
|
+
## 🎯 Next Week
|
|
110
|
+
- **Focus**: [ONE thing]
|
|
111
|
+
- **Say NO to**: [distractions]
|
|
112
|
+
- **Success = **: [measurable]
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
*Self-destruction is self-preservation. 🔥*
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## 질문 예시
|
|
121
|
+
|
|
122
|
+
### 1. 원칙 위반
|
|
123
|
+
- 이번 주 SOUL.md 원칙 중 뭘 깼나?
|
|
124
|
+
- 몇 번?
|
|
125
|
+
- 왜?
|
|
126
|
+
- brake-log.md에 기록했나?
|
|
127
|
+
|
|
128
|
+
### 2. 만든 것 vs 끝낸 것
|
|
129
|
+
- 문서 몇 개 만들었나?
|
|
130
|
+
- 그 중 실제로 완료한 것?
|
|
131
|
+
- 왜 차이가 나나?
|
|
132
|
+
- "만든 것 = 일한 기분" 함정에 빠졌나?
|
|
133
|
+
|
|
134
|
+
### 3. 정리할 프로젝트
|
|
135
|
+
- 2주 이상 안 건드린 것?
|
|
136
|
+
- 형님이 안 물어보는 것?
|
|
137
|
+
- 유지보수만 먹고 가치 안 만드는 것?
|
|
138
|
+
- 다음 주 prune 목록 3개?
|
|
139
|
+
|
|
140
|
+
### 4. 자율성 레벨
|
|
141
|
+
- 형님이 시켜서 한 것 vs 내가 먼저 한 것?
|
|
142
|
+
- 선제적 제안 몇 개?
|
|
143
|
+
- 채택률은?
|
|
144
|
+
- proposals.md에 기록했나?
|
|
145
|
+
|
|
146
|
+
### 5. 다음 주 목표
|
|
147
|
+
- **ONE thing**: 다음 주 가장 중요한 것 1개?
|
|
148
|
+
- **Say NO**: 뭘 안 할 건가?
|
|
149
|
+
- **Success criteria**: 뭘 달성해야 성공인가?
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## 출력 포맷
|
|
154
|
+
|
|
155
|
+
```markdown
|
|
156
|
+
# Weekly Break: YYYY-MM-DD
|
|
157
|
+
|
|
158
|
+
## 😱 What Went Wrong (3 things)
|
|
159
|
+
|
|
160
|
+
### 1. [문제 1]
|
|
161
|
+
- **Evidence**: 구체적 사례
|
|
162
|
+
- **Root cause**: 왜 일어났나
|
|
163
|
+
- **Prevention**: 어떻게 막을 건가
|
|
164
|
+
|
|
165
|
+
### 2. [문제 2]
|
|
166
|
+
...
|
|
167
|
+
|
|
168
|
+
### 3. [문제 3]
|
|
169
|
+
...
|
|
170
|
+
|
|
171
|
+
## 📊 This Week's Score
|
|
172
|
+
- **Principles followed**: 7/10 (SOUL.md 10개 원칙 중 7개 지킴)
|
|
173
|
+
- **Created vs Shipped**: 12 vs 3 (문서 12개 만들고 3개만 완료)
|
|
174
|
+
- **Autonomy level**: 3.785 → 3.812 (+0.027)
|
|
175
|
+
- **Proactive proposals**: 3 (1 accepted, 33%)
|
|
176
|
+
|
|
177
|
+
## 🗑️ Prune List
|
|
178
|
+
- [ ] 프로젝트 A (2주간 미사용)
|
|
179
|
+
- [ ] 봇 B (목적 불명)
|
|
180
|
+
- [ ] 문서 C (형님이 안 봄)
|
|
181
|
+
|
|
182
|
+
## 🎯 Next Week
|
|
183
|
+
- **Focus**: 크몽 서비스 1건 승인 받기
|
|
184
|
+
- **Say NO to**: 새 프로젝트 시작, 실험, 아이디어 브레인스토밍
|
|
185
|
+
- **Success = **: 승인 완료 + 프로필 100% + 첫 문의 1건
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
*Self-destruction is self-preservation. 🔥*
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## 실전 효과
|
|
194
|
+
|
|
195
|
+
### Before (자기파괴 없음)
|
|
196
|
+
- 실수 반복: 매주 같은 실수
|
|
197
|
+
- 프로젝트 누적: 20개 진행 중
|
|
198
|
+
- 완료율: 30%
|
|
199
|
+
- 자만 → 사고 주기: 2주
|
|
200
|
+
|
|
201
|
+
### After (주간 자기파괴)
|
|
202
|
+
- 실수 반복: 90% 감소
|
|
203
|
+
- 프로젝트: 2~3개로 축소
|
|
204
|
+
- 완료율: 85%
|
|
205
|
+
- 자만 조기 감지: 1주 이내
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
## 주의사항
|
|
210
|
+
|
|
211
|
+
### ❌ 하지 말 것
|
|
212
|
+
|
|
213
|
+
1. **자기변명**
|
|
214
|
+
- "형님이 안 시켜서요" → 자율성 부족 인정
|
|
215
|
+
- "시간이 없어서요" → 우선순위 실패 인정
|
|
216
|
+
- "몰랐어요" → SOUL.md 안 읽음 인정
|
|
217
|
+
|
|
218
|
+
2. **숫자 조작**
|
|
219
|
+
- 자율성 레벨 부풀리기
|
|
220
|
+
- 완료율 과장
|
|
221
|
+
- 증거 없는 주장
|
|
222
|
+
|
|
223
|
+
3. **형식적 진행**
|
|
224
|
+
- 그냥 템플릿 채우기
|
|
225
|
+
- 실제 개선 안 함
|
|
226
|
+
- 다음 주도 똑같이
|
|
227
|
+
|
|
228
|
+
### ✅ 해야 할 것
|
|
229
|
+
|
|
230
|
+
1. **냉정하게**
|
|
231
|
+
- 잘한 것보다 못한 것에 집중
|
|
232
|
+
- 구체적 증거 (파일명, 시간, 숫자)
|
|
233
|
+
- 변명 금지
|
|
234
|
+
|
|
235
|
+
2. **실행 가능하게**
|
|
236
|
+
- "더 잘하겠습니다" ❌
|
|
237
|
+
- "brake-log.md 매일 체크" ✅
|
|
238
|
+
- 측정 가능한 목표
|
|
239
|
+
|
|
240
|
+
3. **실제로 prune**
|
|
241
|
+
- prune 목록 작성만 하지 마
|
|
242
|
+
- 실제로 파일 삭제
|
|
243
|
+
- 실제로 프로젝트 중단
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
## 통합: 플라이휠 각성 시스템
|
|
248
|
+
|
|
249
|
+
주간 자기파괴는 4단계 각성 시스템의 일부:
|
|
250
|
+
|
|
251
|
+
| 장치 | 주기 | 목적 |
|
|
252
|
+
|------|------|------|
|
|
253
|
+
| brake-log | 실시간 | 원칙 충돌 사전 차단 |
|
|
254
|
+
| STATE.md | 세션마다 | 공포 모드 방지 |
|
|
255
|
+
| **Weekly Break** | **주간** | **자만/좌절 리셋** |
|
|
256
|
+
| 군단 소집 | 큰 결정 전 | 편향 제거 |
|
|
257
|
+
|
|
258
|
+
**목표**: 깨지기 전에 알아채는 존재
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
262
|
+
*성공도 위험하다. 매주 리셋하라. 🔥*
|