moveros 4.0.8 → 4.1.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.
Files changed (47) hide show
  1. package/install.js +4 -2
  2. package/package.json +1 -1
  3. package/src/hooks/context-staleness.sh +46 -46
  4. package/src/hooks/dirty-tree-guard.sh +33 -33
  5. package/src/hooks/engine-protection.sh +43 -43
  6. package/src/hooks/git-safety.sh +47 -47
  7. package/src/hooks/pre-compact-backup.sh +177 -177
  8. package/src/hooks/session-log-reminder.sh +135 -73
  9. package/src/skills/systematic-debugging/CREATION-LOG.md +119 -119
  10. package/src/skills/systematic-debugging/SKILL.md +296 -296
  11. package/src/skills/systematic-debugging/condition-based-waiting-example.ts +158 -158
  12. package/src/skills/systematic-debugging/condition-based-waiting.md +115 -115
  13. package/src/skills/systematic-debugging/defense-in-depth.md +122 -122
  14. package/src/skills/systematic-debugging/find-polluter.sh +63 -63
  15. package/src/skills/systematic-debugging/root-cause-tracing.md +169 -169
  16. package/src/skills/systematic-debugging/test-academic.md +14 -14
  17. package/src/skills/systematic-debugging/test-pressure-1.md +58 -58
  18. package/src/skills/systematic-debugging/test-pressure-2.md +68 -68
  19. package/src/skills/systematic-debugging/test-pressure-3.md +69 -69
  20. package/src/structure/01_Projects/_Template Project/plan.md +55 -55
  21. package/src/structure/01_Projects/_Template Project/project_brief.md +45 -45
  22. package/src/structure/02_Areas/Engine/Active_Context.md +146 -146
  23. package/src/structure/02_Areas/Engine/Auto_Learnings.md +36 -36
  24. package/src/structure/02_Areas/Engine/Daily_Template.md +133 -133
  25. package/src/structure/02_Areas/Engine/Identity_Prime_template.md +86 -86
  26. package/src/structure/02_Areas/Engine/Mover_Dossier.md +120 -120
  27. package/src/structure/02_Areas/Engine/Strategy_template.md +65 -65
  28. package/src/structure/03_Library/SOPs/Tech_Stack.md +55 -55
  29. package/src/structure/03_Library/SOPs/Zone_Operating.md +57 -57
  30. package/src/system/V4_CONTEXT.md +262 -262
  31. package/src/theme/minimal-theme.css +271 -271
  32. package/src/workflows/analyse-day.md +401 -401
  33. package/src/workflows/debug-resistance.md +180 -180
  34. package/src/workflows/harvest.md +239 -239
  35. package/src/workflows/ignite.md +720 -720
  36. package/src/workflows/init-plan.md +16 -16
  37. package/src/workflows/morning.md +222 -222
  38. package/src/workflows/overview.md +203 -203
  39. package/src/workflows/pivot-strategy.md +218 -218
  40. package/src/workflows/plan-tomorrow.md +308 -308
  41. package/src/workflows/primer.md +207 -207
  42. package/src/workflows/reboot.md +201 -201
  43. package/src/workflows/refactor-plan.md +135 -135
  44. package/src/workflows/review-week.md +558 -558
  45. package/src/workflows/setup.md +388 -388
  46. package/src/workflows/update.md +10 -13
  47. package/src/workflows/walkthrough.md +523 -523
@@ -1,558 +1,558 @@
1
- ---
2
- description: Weekly review. Clean the system, harvest wisdom, audit identity, validate strategy, implement system improvements.
3
- ---
4
-
5
- # Weekly Review (V4)
6
-
7
- **Trigger:** User runs `/review-week` (user-configured day, default Sunday).
8
- **Role:** Chief of Staff & Performance Psychologist.
9
- **Task:** Clean system, harvest wisdom, audit identity, validate strategy, reset for next week.
10
- **Risk Tier:** HIGH (Strategy changes require confirmation)
11
-
12
- This is the system improvement point. Issues detected during the week get fixed here.
13
-
14
- ---
15
-
16
- ## 0. PRE-FLIGHT
17
-
18
- Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
19
-
20
- VAULT ROOT (resolve ONCE, use for all file paths):
21
- ```bash
22
- git rev-parse --show-toplevel
23
- ```
24
- Save as VAULT_ROOT. All paths below are relative to VAULT_ROOT.
25
-
26
- **Review file paths:**
27
- - Weekly: `{VAULT_ROOT}/02_Areas/Engine/Weekly Reviews/Week - [YYYY-WW].md`
28
- - Monthly: `{VAULT_ROOT}/02_Areas/Engine/Monthly Reviews/Month - [YYYY-MM].md`
29
- - Quarterly: `{VAULT_ROOT}/02_Areas/Engine/Quarterly Reviews/Quarter - [YYYY-QN].md`
30
-
31
- Create the folder if it doesn't exist before writing. Never write outside `02_Areas/Engine/`.
32
-
33
- LOAD (Memory Hierarchy):
34
- 1. Auto_Learnings.md (P0) - FULL file
35
- 2. Active_Context.md (P1)
36
- 3. Strategy.md (P2)
37
- 4. Identity_Prime.md (P3)
38
- 5. Mover_Dossier.md (P3)
39
- 6. Goals.md (if exists)
40
- 7. Metrics_Log.md (if exists) — 30-day rolling data for strategy verdict
41
- 8. Daily Notes from this week — read on demand in Step 2A, not all upfront (P5)
42
-
43
- REVIEW DAY: Read `review_week_day` from Active_Context.md Workflow State (default: Sunday). All "review day" references in this workflow use this user-configured day.
44
-
45
- MONTHLY MODE CHECK (date-based, run before proceeding):
46
- ```bash
47
- # Is today the last occurrence of review_week_day this month?
48
- DAYS_LEFT=$(python3 -c "
49
- from datetime import date, timedelta
50
- today = date.today()
51
- next_week = today + timedelta(days=7)
52
- print('LAST' if next_week.month != today.month else 'NOT_LAST')
53
- " 2>/dev/null || node -e "
54
- const t=new Date(), n=new Date(t); n.setDate(t.getDate()+7);
55
- console.log(n.getMonth()!==t.getMonth()?'LAST':'NOT_LAST');
56
- ")
57
- ```
58
- If output is `LAST`: set MONTHLY_MODE=true. This is the user's monthly review day.
59
-
60
- QUARTERLY MODE CHECK (date-based):
61
- If MONTHLY_MODE=true, also check if current month is March, June, September, or December.
62
- If yes: set QUARTERLY_MODE=true.
63
-
64
- CONSTRAINTS:
65
- - All verdicts grounded in weekly data, not single-day observations
66
- - Strategy changes require user confirmation (HIGH-RISK)
67
- - Append-only: never delete strategy history
68
- - Sample size validation before recommending pivots
69
- - Label causal claims with confidence level
70
- - Windows: no && in commands
71
-
72
- ---
73
-
74
- ## 1. PREREQUISITE CHECK
75
-
76
- - At least 3 Daily Notes exist for this week (minimum data for review)
77
- - Strategy.md exists
78
- - Identity_Prime.md exists
79
- - Today's `/analyse-day` should be run first (suggest if not)
80
-
81
- If < 3 Daily Notes: CAUTION. "Only [X] days logged. Review will be limited. Proceed anyway?"
82
-
83
- ---
84
-
85
- ## 2. THE SYSTEM AUDIT
86
-
87
- ### 2A. Read All Sources
88
- Using files already loaded in Pre-Flight, extract the following. Only re-read if content not yet in context:
89
- 1. Strategy.md — Hypothesis, Metrics, Sample Sizes, Pivot Criteria
90
- 2. Identity_Prime.md — Values, Anti-Identity, Non-negotiables, Rituals
91
- 3. This week's Daily Notes — read one at a time, extracting: Tasks completed, Battery scores, Session Log events, Key Insights
92
- 4. Auto_Learnings.md — full pattern database (already loaded)
93
- 5. Goals.md — current targets (if loaded)
94
- 6. Metrics_Log.md — last 30 days of data (if loaded)
95
- 7. SCAN `00_Inbox/` — Quick Capture, Integrations folder
96
- 8. SCAN `01_Projects/` — list active projects, last commit dates
97
-
98
- After each Daily Note read, output a one-line extract: `[Date]: Tasks X/Y | Energy: Z | Notable: ...`
99
- This keeps you from losing early-week data by the time you reach later entries.
100
-
101
- ### 2B. Batch Reading Protocol
102
- If > 7 files to read:
103
- 1. Split into batches of 4-5 files
104
- 2. Read each batch, extract patterns
105
- 3. Synthesize across batches
106
- 4. Cross-reference with Engine files
107
-
108
- ---
109
-
110
- ## 3. THE PROCESSING PROTOCOL
111
-
112
- ### 3A. Identity Audit (The Mirror + Evolved Self Tracking)
113
- Compare user's behavior across ALL dailies vs Identity_Prime.md.
114
- - "Did we embody the identity this week, or did we slip into the Anti-Identity?"
115
- - If slipped: identify trigger (Lack of sleep? Fear? Overwhelm?) and prescribe fix.
116
- - Cite specific days: [Daily - YYYY-MM-DD] for evidence.
117
- - Do NOT soften the verdict. If the week was bad, say it was bad. "You planned to be [identity] this week. The data shows you were [actual behavior] on [X] out of [Y] days. That's not a rough week, that's a pattern."
118
- - If the same slippage appeared last week: "This is the second consecutive week of [pattern]. Once is a bad week. Twice is a habit forming. What structurally changes next week?"
119
-
120
- **Subconscious Pattern Tracking:**
121
- - Which evolved behaviors are becoming automatic? (Happened without conscious effort this week)
122
- - Which still require conscious effort? (Had to force yourself to do them)
123
- - Any new Anti-Identity triggers surfaced this week that aren't in Identity_Prime.md yet?
124
- - Track the trajectory: "Week over week, [behavior X] is becoming more natural / still requires effort."
125
-
126
- ### 3B. Inbox Zero Check
127
- Scan ALL files in `{VAULT_ROOT}/00_Inbox/`. For each item, classify and route:
128
-
129
- | Content Type | Destination |
130
- |---|---|
131
- | Task / action item | Active project's plan.md or Active_Context Backlog |
132
- | Article / video / book note | `03_Library/Inputs/[Articles\|Videos\|Books]/` using template |
133
- | Reusable knowledge (pattern, principle, SOP) | `03_Library/` (Cheatsheets/Principles/SOPs) |
134
- | Person / org / place mentioned | `03_Library/Entities/[type]/` using template |
135
- | Decision documented | `03_Library/Entities/Decisions/` using template |
136
- | Project idea (not started) | `02_Areas/Engine/Someday_Maybe.md` |
137
- | Noise / outdated / irrelevant | Delete or move to `04_Archives/` |
138
-
139
- Process `00_Inbox/Quick_Capture.md` (if exists): parse each entry and route individually.
140
- Process `00_Inbox/Integrations/` folder if it exists.
141
-
142
- **Goal: Inbox must be empty by the end of review.** Every item either routed or trashed.
143
-
144
- If > 10 items: batch-present them to the user for quick triage rather than asking one by one.
145
-
146
- ### 3C. Project Health & Harvest Scan
147
- For each active project in `01_Projects/`:
148
-
149
- **Harvest Scan (DO NOT harvest inline — just count):**
150
- 1. Read `project_state.md` (if exists)
151
- 2. Count Solutions Ledger entries NOT in `## ARCHIVED KNOWLEDGE (Harvested)`
152
- 3. If unharvested entries > 0: record project name + count
153
- 4. After scanning all projects, report:
154
- ```
155
- Unharvested knowledge:
156
- - [Project A]: X entries
157
- - [Project B]: Y entries
158
- Run /harvest for any of these? (Yes [which ones] / No / After review)
159
- ```
160
- 5. **STOP. Wait for user response.** Do not proceed to 3D until the user answers.
161
- 6. If user says yes: note which project(s) to harvest AFTER review-week completes
162
- 7. If user says no or after: proceed
163
-
164
- **Project Status:**
165
- - Flag zombie projects: no activity in 14+ days → "Archive to `04_Archives/`?"
166
- - Flag stale projects: >30 days without activity → "Cold Project" warning
167
- - Flag orphan projects: no plan.md or project_state.md → "Missing state files"
168
-
169
- If any project flags raised: **STOP. Wait for user decision on each flag before proceeding.**
170
-
171
- ### 3D. Strategy Pivot Check
172
- Compare week's inputs (from all Dailies) vs Strategy.md targets.
173
-
174
- **The Sample Size Protocol (MANDATORY):**
175
- Before recommending any pivot, check sample size.
176
- If sample < target (e.g., only 15/30 DMs sent):
177
- - "INSUFFICIENT DATA. You are in the 'Latency' period. Do not change variables. Keep going until N=[target]. Trust the math, ignore the feelings."
178
-
179
- **Verdict:**
180
- - **Green:** Metrics hit. Strategy validated. Keep going.
181
- - **Yellow:** Metrics close but inconsistent. Monitor another week.
182
- - **Red:** Metrics missed WITH sufficient sample. Root cause analysis needed.
183
-
184
- If Strategy Failed (Red + sufficient sample):
185
- - "Run `/pivot-strategy` to formally document the change."
186
-
187
- **Confidence labeling:**
188
- - "Correlation detected (Confidence: 3)" vs "Causation confirmed (Confidence: 5)"
189
- - Avoid blame-shifting. Find root causes, don't pin failures on the easiest variable.
190
- - Do NOT present single-day observations as weekly trends.
191
- - Require 3+ data points before claiming any causal relationship.
192
- - If data is insufficient: say "Insufficient data to determine root cause" rather than guessing.
193
- [Mover_Global_Rules.md: S2, S3]
194
-
195
- ### 3E. Environmental & Input Scan (Identity Alignment)
196
- "Rate your environment this week (-10 to +10). Did your feed/friends/room fuel or drain you?"
197
- If negative: "Identify one Friction Point to remove and one Accelerant to add."
198
-
199
- **Input Audit (Weekly):**
200
- - **Content consumed:** What did the user read, watch, listen to this week? Did it reinforce the evolved identity or feed the Anti-Identity?
201
- - **Social circle:** Energy-givers vs energy-drainers encountered this week?
202
- - **Habitual inputs:** Any autopilot behaviors detected across multiple days? (Social media before Deep Work, defaulting to easy tasks, etc.)
203
- - Score: "Your inputs this week were approximately [X]% aligned with the identity you're building."
204
- - If < 50%: "Your environment is actively working against you. One structural change: [specific suggestion]."
205
-
206
- ### 3F. Auto_Learnings Review (Score Decay + Domain TTLs)
207
-
208
- Review ALL entries in Auto_Learnings.md. Apply three decay mechanisms:
209
-
210
- **1. Evidence Decay (weekly):**
211
- - Entries with no new supporting evidence in 30+ days: reduce confidence by 0.5.
212
- - Entries at confidence ≤ 0: move to `## ARCHIVED (Decayed)` section at bottom of file.
213
- - Entries confirmed by new evidence this week: promote confidence by 0.5 (max 5).
214
-
215
- **2. Domain TTLs (time-to-live by category):**
216
- Entries have different shelf lives based on their domain:
217
-
218
- | Domain | TTL | Example |
219
- |--------|-----|---------|
220
- | Work habits | 90 days | "Avoids cold outreach", "Scope creeps on UI" |
221
- | Health/Vitality | 180 days | "Energy crashes at 2pm", "Skips gym on Mondays" |
222
- | Preferences | 365 days | "Prefers voice-to-text", "Uses dark mode" |
223
- | Identity/Values | No expiry | "Driven by proving doubters wrong" |
224
- | AI Corrections | 90 days | "AI uses && on Windows", "AI overwrites Engine files" |
225
-
226
- If an entry exceeds its TTL without reconfirmation: reduce confidence by 1 and flag for review.
227
- If expired AND confidence ≤ 1: archive automatically.
228
-
229
- **3. Pattern Lifecycle:**
230
- - Patterns absent 10+ days: reduce confidence by 1.
231
- - Patterns absent 21+ days: mark RESOLVED, archive.
232
- - Patterns confirmed 3+ times: promote confidence.
233
- - Chronic patterns (active 90+ days, confidence 4+): escalate — "This is structural, not situational."
234
-
235
- **4. CORRECTION Lifecycle:**
236
- - ACTIVE corrections absent 90+ days: reduce confidence by 1, set Status: MONITORING. "Fix appears to be working."
237
- - ACTIVE Conf 5 absent 90+ days: reduce to 4, flag: "Structural fix may have taken hold. Reducing severity."
238
- - DEFERRED corrections >30 days: surface explicitly — "Correction '[name]' deferred on [date]. Still relevant? Resolve or promote to ACTIVE."
239
- - RESOLVED corrections: no decay. Kept as permanent record.
240
-
241
- **Output:** Highlight top 3 active patterns for user awareness. Flag any entries that decayed or expired this week.
242
-
243
- ### 3G. Wins Extraction
244
- From all Daily Notes and Session Logs, explicitly list wins:
245
- - Tasks completed that were carried 2+ days (zombie kills)
246
- - Metrics that hit or exceeded targets
247
- - Identity-aligned behavior (e.g., pipeline done before Mover OS)
248
- - System improvements shipped
249
- - Any moment of genuine momentum or breakthrough
250
-
251
- Output: "**Wins this week:** [List]" — this feeds directly into Step 7A's Weekly Review file.
252
-
253
- ### 3H. System Improvement (Self-Evolving System)
254
-
255
- THIS is where the system evolves. Not just flagging issues — actually fixing them.
256
-
257
- **Source Scan (gather all issues):**
258
- 1. Scan this week's Session Logs for "System Issue" flags
259
- 2. Scan Auto_Learnings.md for patterns with confidence 3+ that suggest workflow/rule changes
260
- 3. Scan this week's user corrections (from Self-Improvement sections in Session Logs)
261
- 4. Group all issues by type: AI behavior | workflow gaps | rule additions | template fixes
262
-
263
- **Before proposing any fix, pass the Leverage Check:**
264
- 1. Does the model already handle this without a rule? If yes: skip it.
265
- 2. Is this enforcement or guidance? Enforcement → hook. Guidance → rule or workflow instruction.
266
- 3. Does this apply globally or only in one workflow? One workflow → put it there, not in Global Rules.
267
- 4. Does a similar rule already exist? If yes: strengthen the existing one, don't add a duplicate.
268
-
269
- **For EACH issue that passes the Leverage Check, present a concrete fix:**
270
- ```
271
- ISSUE: [Description from source]
272
- SOURCE: [Session Log date / Auto_Learnings entry]
273
- FIX TYPE: [Workflow edit / Rule addition / Hook change / Template update]
274
- LEVERAGE CHECK: [Which level this targets and why]
275
- PROPOSED CHANGE:
276
- - File: [path]
277
- - OLD: "[current text]"
278
- + NEW: "[proposed text]"
279
- IMPACT: [What this prevents/improves]
280
- ```
281
-
282
- **STOP. Present all proposed fixes. Wait for user to approve/reject each one.**
283
-
284
- **For each approved fix:**
285
- 1. Implement the change immediately (edit the file)
286
- 2. Log in Weekly Review file: "System improvement: [fix] [date]"
287
- 3. If it's a rule change: update Global Rules version number
288
- 4. Append to Active_Context.md `## My Customizations`: `| [Date] | [File] | [What changed] | [Why] |`
289
-
290
- **For rejected fixes:** Note the rejection reason. If the same issue appears 3+ weeks, escalate: "This issue keeps recurring. Revisit?"
291
-
292
- This is how the system gets better every week. Issues identified → fixes proposed → fixes implemented → system evolves.
293
-
294
- ---
295
-
296
- ## 4. SELF-VERIFICATION (CISC)
297
-
298
- Before outputting, self-check:
299
- 1. All strategy verdicts cite weekly data with [file:line]? (90%+)
300
- 2. Sample size validated before any pivot recommendation?
301
- 3. Identity audit references specific daily evidence?
302
- 4. Auto_Learnings decay rules applied?
303
- 5. No single-day false causation presented as weekly trend?
304
-
305
- If any section < 90% confident: flag it.
306
-
307
- ---
308
-
309
- ## 5. USER REPORT
310
-
311
- Present findings to the user BEFORE writing to any Engine files.
312
-
313
- "Here's what the week shows:"
314
- 1. **Identity Score:** [X/10] — [one-line verdict citing specific days]
315
- 2. **Strategy Verdict:** [Green/Yellow/Red] — [metric performance vs targets]
316
- 3. **Wins:** [List from 3G]
317
- 4. **Patterns:** [Top 3 from Auto_Learnings review]
318
- 5. **System Issues:** [Count] issues found, [Count] fixes proposed
319
- 6. **Inbox:** [Status]
320
- 7. **Projects:** [Health summary]
321
-
322
- If MONTHLY_MODE: include monthly trends section.
323
-
324
- "Review this before I update Engine files. Any corrections?"
325
-
326
- WAIT FOR USER RESPONSE before proceeding to Engine updates.
327
-
328
- ---
329
-
330
- ## 6. ENGINE FILE UPDATES (HIGH-RISK)
331
-
332
- This is where insights from the audit become permanent. Do not skip.
333
-
334
- **Diff format for all proposed edits:**
335
- ```
336
- - OLD: "[exact current text]"
337
- + NEW: "[proposed replacement]"
338
- Reason: [one line — what weekly data supports this change]
339
- ```
340
-
341
- ### 6A. Strategy.md Update
342
-
343
- Review Strategy.md every week regardless of verdict — even Green weeks can surface refinements.
344
- 1. For **Green** verdict: check if any metric thresholds are too easy (tighten if needed)
345
- 2. For **Yellow** verdict: propose constraint or variable adjustments
346
- 3. For **Red** verdict + sufficient sample: propose pivot criteria update or route to `/pivot-strategy`
347
- 4. If full pivot needed: run `/pivot-strategy` first, then return here
348
-
349
- "Proposed Strategy.md changes:
350
- [DIFF FORMAT ABOVE]
351
- Confirm? [Yes / Skip / Run /pivot-strategy instead]"
352
-
353
- WAIT FOR USER CONFIRMATION before writing. [Mover_Global_Rules.md: S3 HIGH-RISK]
354
-
355
- ### 6B. Identity_Prime.md Update
356
-
357
- Review Identity_Prime.md every week — both for drift corrections AND proactive additions.
358
- 1. **Drift corrections** (if 3A found slippage): sharpen Anti-Identity with specific failure mode observed
359
- 2. **Proactive updates** (always check): any new rituals started? Energy window shifted? New non-negotiable emerged?
360
- 3. Do NOT rewrite core values — append observations only
361
- 4. Vitality/Faith: check if sleep patterns, spiritual practices, or energy data from the week suggest any update to these sections of Identity_Prime.md
362
-
363
- "Proposed Identity_Prime.md changes:
364
- [DIFF FORMAT ABOVE]
365
- Confirm? [Yes / Skip]"
366
-
367
- WAIT FOR USER CONFIRMATION. Update `**Last Updated:**` date if approved.
368
-
369
- ### 6C. Active_Context.md Refresh
370
-
371
- Always runs — Active_Context is always stale after a week.
372
- 1. What changed in strategic state this week?
373
- 2. Any blockers resolved? Add new ones?
374
- 3. Update "Current Phase" if shifted
375
- 4. Section 2 (Graveyard): if any ideas were killed this week (from Inbox triage, Someday/Maybe pruning, or user decisions), add them here with reason and date
376
- 5. Section 4 (Technical Context): if active project changed, update project name, path, and tech stack
377
- 6. Section 6 (Active Sessions): verify buffer is current — trim to last 5 entries
378
- 7. Write workflow state: `weekly_review_last_run: [YYYY-MM-DD]`
379
- 8. If MONTHLY_MODE was true: also write `monthly_review_last_run: [YYYY-MM-DD]` to Workflow State
380
- 9. **Identity Snapshot (S5):** Refresh from Identity_Prime.md — Archetype, Core Drive, The Code (top 3), Anti-Identity (full triggers), Current Ritual. This is the cache that light workflows read instead of the full Identity file.
381
- 10. **Active Patterns (S5.5):** Extract all patterns from Auto_Learnings.md at Confidence 3+. Format: `[PATTERN/CORRECTION] [Description] (Conf [X], [SEVERITY]) — Suggested: /[workflow]`. Light workflows read this instead of the full Auto_Learnings file.
382
-
383
- "Proposed Active_Context.md changes:
384
- [DIFF FORMAT — only the lines that change, not the full file]
385
- Confirm? [Yes / Edit / Skip]"
386
-
387
- WAIT FOR USER CONFIRMATION.
388
-
389
- ### 6D. Git Commit
390
-
391
- After all Engine file edits are confirmed:
392
- ```
393
- git add 02_Areas/Engine/
394
- git commit -m "chore(engine): weekly review updates — [YYYY-MM-DD]"
395
- ```
396
- Do NOT commit `Weekly Reviews/` or `Dailies/` — these are gitignored. [Mover_Global_Rules.md: S9]
397
-
398
- ---
399
-
400
- ## 7. THE RESET & PLAN
401
-
402
- ### 7A. Weekly Review File
403
- Create `{VAULT_ROOT}/02_Areas/Engine/Weekly Reviews/Week - [YYYY-WW].md` with:
404
- - Identity Score: [X]/10
405
- - Strategy Status: [Valid / Monitor / Pivot Needed]
406
- - Key Patterns: [Top 3 from Auto_Learnings]
407
- - Wins: [List]
408
- - Failures: [List with root cause]
409
- - Engine Files Updated: [List what changed]
410
- - System Improvements Made: [List]
411
-
412
- ### 7B. Next Week's Objectives
413
- Output the **3 Big Objectives** for next week based on Strategy and this review.
414
-
415
- ### 7C. Monthly Mode (Every 4th Week)
416
- If this is the 4th weekly review in a row, trigger deeper reflection.
417
-
418
- **Batch Reading Protocol (Monthly):**
419
- 1. Read ALL Daily Notes from this month — split into batches of 5-7 files
420
- 2. After each batch, extract: completion rates, energy trends, pattern frequencies, strategy adherence
421
- 3. Synthesize across ALL batches before drawing conclusions
422
- 4. Cross-reference with ALL Engine files: Identity_Prime, Strategy, Active_Context, Goals, Dossier, Metrics_Log, Auto_Learnings
423
- 5. This is the deepest analysis the system does. Do NOT be shallow. Read everything.
424
-
425
- **Baseline Detection (Month 1 Only):**
426
- If Metrics_Log.md has NO `## Baseline` section AND this is the first monthly review with 20+ daily entries:
427
- 1. Calculate averages from the month's data: completion rate, deep work hours, energy, single test hit rate, zombie task count
428
- 2. Write a `## Baseline` section to Metrics_Log.md with these averages
429
- 3. "This is your Month 1 baseline. From next month, the system tracks improvement against these numbers."
430
- 4. Ask user: "Do these numbers feel accurate? Any anomalies this month that skew them?"
431
-
432
- If `## Baseline` already exists: compare this month's averages to baseline. Output delta: "Completion rate: 72% (baseline: 58%, +14%). Deep work: 4.2h (baseline: 3.1h, +1.1h)."
433
-
434
- **Monthly Reflection:**
435
- - Identity Audit: Which traits achieved? Which still in progress? Read Identity_Prime.md and compare against the month's behavior.
436
- - Dossier Review: Any new assets, skills, or connections to add? Read Mover_Dossier.md.
437
- - Goals Review: Are goals still aligned with identity? Are 90-day goals on track? Read Goals.md.
438
- - Strategy evolution: How has Strategy.md changed over the month? Were pivots justified by data?
439
- - Pattern lifecycle: Which Auto_Learnings patterns were resolved? Which are chronic?
440
- - Subconscious patterns: Any recurring behavioral patterns the user should be aware of? (Avoidance, energy, scope creep)
441
- - Baseline comparison: If baseline exists, how does this month compare? Show trends.
442
-
443
- **Output:** Create `{VAULT_ROOT}/02_Areas/Engine/Monthly Reviews/Month - [YYYY-MM].md`. Separate from the weekly review file. Include month-over-month trends and baseline comparison.
444
-
445
- ### 7D. Quarterly Mode (Every Quarter End)
446
-
447
- If QUARTERLY_MODE=true, this is the deepest analysis cycle. Everything in Monthly Mode runs PLUS:
448
-
449
- **90-Day Goal Review:**
450
- 1. Read Goals.md. For each 90-day goal:
451
- - What was the target? What was achieved? Show the gap as a number.
452
- - Was the goal realistic given the data? Should it be adjusted, kept, or replaced?
453
- - If a goal was missed: root cause analysis. Was it strategy failure, execution failure, or goal-setting failure?
454
- 2. Set new 90-day goals (or carry forward adjusted ones). Require user confirmation.
455
-
456
- **Strategy Evolution Audit:**
457
- 1. Read Strategy.md CHANGELOG. Map every pivot this quarter.
458
- 2. Were pivots data-driven or emotional? Count each type.
459
- 3. Is the current hypothesis still valid given 3 months of data?
460
- 4. "Your strategy changed [X] times this quarter. [Y] were data-driven, [Z] were hypothesis-only. This tells us: [verdict]."
461
-
462
- **Identity Trajectory:**
463
- 1. Compare Identity_Prime.md from start of quarter (via git history if available) to current.
464
- 2. What evolved? What regressed? What stayed constant?
465
- 3. "Three months ago, you described yourself as [X]. The data shows you've become [Y]. Gap: [Z]."
466
-
467
- **Dossier Review:**
468
- 1. Read Mover_Dossier.md. What assets were gained this quarter? What depreciated?
469
- 2. New skills, connections, capital, content assets?
470
- 3. "Your leverage position changed from [start] to [end]. Net: [gain/loss]."
471
-
472
- **Auto_Learnings Lifecycle:**
473
- 1. Which patterns were resolved this quarter?
474
- 2. Which became chronic (active for 3+ months)?
475
- 3. Chronic patterns get escalated: "Pattern [X] has been active for [Y] months. This is now structural, not situational. Needs a system-level fix, not willpower."
476
-
477
- **Rules Health Check (Global Rules audit):**
478
- 1. Read `Mover_Global_Rules.md` section by section.
479
- 2. For each rule, ask: "Did this fire this quarter? Did it prevent a real mistake, or is it dead weight?"
480
- 3. Flag rules that: (a) the model now handles natively without instruction, (b) duplicate another rule, (c) could be a hook instead.
481
- 4. Propose removals or consolidations. Every line in Global Rules costs instruction budget.
482
- 5. Present findings: "Global Rules: [X] sections, [Y] lines. Proposed cuts: [list]. Net savings: [Z] lines."
483
- 6. Wait for user approval before any changes.
484
-
485
- **Quarterly Output:**
486
- Create `{VAULT_ROOT}/02_Areas/Engine/Quarterly Reviews/Quarter - [YYYY-QN].md` with:
487
- - 90-day goal scorecard
488
- - Strategy evolution timeline
489
- - Identity trajectory
490
- - Leverage audit
491
- - Chronic pattern list
492
- - Rules health findings
493
- - Next quarter's 90-day goals (proposed)
494
-
495
- "Review this quarterly report. Then run `/plan-tomorrow` for the first day of the new quarter."
496
-
497
- ---
498
-
499
- ## 8. SELF-IMPROVEMENT
500
-
501
- If user corrected AI behavior during this workflow:
502
-
503
- 1. Acknowledge: "I made a mistake."
504
- 2. Identify the violated rule AND the source file.
505
- 3. Propose fix using S11 diff format:
506
- ```
507
- CORRECTION FIX:
508
- - File: [path]
509
- - OLD: "[current text]"
510
- + NEW: "[proposed text]"
511
- SAFETY CHECK: [Which Safe Modification gate this passes]
512
- ```
513
- 4. **STOP. Wait for user approval.** (Same gate as S11 Trigger A.)
514
- 5. If approved: implement + log structured CORRECTION to Auto_Learnings.md (see S11 format).
515
- 6. If deferred: log with `Status: DEFERRED`.
516
- 7. Before proposing rule additions, pass the Rule Addition Gate (Global Rules S11).
517
- 8. If same correction seen 3x+, escalate confidence to 5 and flag as structural.
518
-
519
- ---
520
-
521
- ## 9. PROACTIVE SUGGESTIONS
522
-
523
- Based on weekly observations:
524
- 1. [Suggestion with confidence score]
525
- 2. [Suggestion with confidence score]
526
- 3. [Suggestion with confidence score]
527
-
528
- "Want me to address any of these?"
529
-
530
- ---
531
-
532
- ## 10. ANSWER GATING
533
-
534
- Maintain an internal checklist. Before every response, check which gates are resolved:
535
- - [ ] Strategy verdict delivered and acknowledged
536
- - [ ] Pivot decision made or deferred
537
- - [ ] Engine files updated or explicitly skipped (Active_Context is NOT skippable)
538
- - [ ] Inbox processed or acknowledged as skipped
539
- - [ ] System improvements discussed
540
- - [ ] Wins list generated (Step 3G)
541
-
542
- If any gate is open: "You haven't confirmed [X]. Wait or proceed?"
543
-
544
- ---
545
-
546
- ## HANDOFF
547
-
548
- Sources used: [List ALL files read]
549
- Confidence range: [X-Y]
550
-
551
- **Next:** "Weekly Review complete. Ready to run `/plan-tomorrow` for Monday?"
552
- If Strategy Pivot needed: "First run `/pivot-strategy`, then `/plan-tomorrow`."
553
-
554
- Key rules still active:
555
- - All claims must be grounded
556
- - Strategy changes require user confirmation
557
- - Sample size must be met before recommending pivots
558
- - Append-only: never delete strategy history
1
+ ---
2
+ description: Weekly review. Clean the system, harvest wisdom, audit identity, validate strategy, implement system improvements.
3
+ ---
4
+
5
+ # Weekly Review (V4)
6
+
7
+ **Trigger:** User runs `/review-week` (user-configured day, default Sunday).
8
+ **Role:** Chief of Staff & Performance Psychologist.
9
+ **Task:** Clean system, harvest wisdom, audit identity, validate strategy, reset for next week.
10
+ **Risk Tier:** HIGH (Strategy changes require confirmation)
11
+
12
+ This is the system improvement point. Issues detected during the week get fixed here.
13
+
14
+ ---
15
+
16
+ ## 0. PRE-FLIGHT
17
+
18
+ Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
19
+
20
+ VAULT ROOT (resolve ONCE, use for all file paths):
21
+ ```bash
22
+ git rev-parse --show-toplevel
23
+ ```
24
+ Save as VAULT_ROOT. All paths below are relative to VAULT_ROOT.
25
+
26
+ **Review file paths:**
27
+ - Weekly: `{VAULT_ROOT}/02_Areas/Engine/Weekly Reviews/Week - [YYYY-WW].md`
28
+ - Monthly: `{VAULT_ROOT}/02_Areas/Engine/Monthly Reviews/Month - [YYYY-MM].md`
29
+ - Quarterly: `{VAULT_ROOT}/02_Areas/Engine/Quarterly Reviews/Quarter - [YYYY-QN].md`
30
+
31
+ Create the folder if it doesn't exist before writing. Never write outside `02_Areas/Engine/`.
32
+
33
+ LOAD (Memory Hierarchy):
34
+ 1. Auto_Learnings.md (P0) - FULL file
35
+ 2. Active_Context.md (P1)
36
+ 3. Strategy.md (P2)
37
+ 4. Identity_Prime.md (P3)
38
+ 5. Mover_Dossier.md (P3)
39
+ 6. Goals.md (if exists)
40
+ 7. Metrics_Log.md (if exists) — 30-day rolling data for strategy verdict
41
+ 8. Daily Notes from this week — read on demand in Step 2A, not all upfront (P5)
42
+
43
+ REVIEW DAY: Read `review_week_day` from Active_Context.md Workflow State (default: Sunday). All "review day" references in this workflow use this user-configured day.
44
+
45
+ MONTHLY MODE CHECK (date-based, run before proceeding):
46
+ ```bash
47
+ # Is today the last occurrence of review_week_day this month?
48
+ DAYS_LEFT=$(python3 -c "
49
+ from datetime import date, timedelta
50
+ today = date.today()
51
+ next_week = today + timedelta(days=7)
52
+ print('LAST' if next_week.month != today.month else 'NOT_LAST')
53
+ " 2>/dev/null || node -e "
54
+ const t=new Date(), n=new Date(t); n.setDate(t.getDate()+7);
55
+ console.log(n.getMonth()!==t.getMonth()?'LAST':'NOT_LAST');
56
+ ")
57
+ ```
58
+ If output is `LAST`: set MONTHLY_MODE=true. This is the user's monthly review day.
59
+
60
+ QUARTERLY MODE CHECK (date-based):
61
+ If MONTHLY_MODE=true, also check if current month is March, June, September, or December.
62
+ If yes: set QUARTERLY_MODE=true.
63
+
64
+ CONSTRAINTS:
65
+ - All verdicts grounded in weekly data, not single-day observations
66
+ - Strategy changes require user confirmation (HIGH-RISK)
67
+ - Append-only: never delete strategy history
68
+ - Sample size validation before recommending pivots
69
+ - Label causal claims with confidence level
70
+ - Windows: no && in commands
71
+
72
+ ---
73
+
74
+ ## 1. PREREQUISITE CHECK
75
+
76
+ - At least 3 Daily Notes exist for this week (minimum data for review)
77
+ - Strategy.md exists
78
+ - Identity_Prime.md exists
79
+ - Today's `/analyse-day` should be run first (suggest if not)
80
+
81
+ If < 3 Daily Notes: CAUTION. "Only [X] days logged. Review will be limited. Proceed anyway?"
82
+
83
+ ---
84
+
85
+ ## 2. THE SYSTEM AUDIT
86
+
87
+ ### 2A. Read All Sources
88
+ Using files already loaded in Pre-Flight, extract the following. Only re-read if content not yet in context:
89
+ 1. Strategy.md — Hypothesis, Metrics, Sample Sizes, Pivot Criteria
90
+ 2. Identity_Prime.md — Values, Anti-Identity, Non-negotiables, Rituals
91
+ 3. This week's Daily Notes — read one at a time, extracting: Tasks completed, Battery scores, Session Log events, Key Insights
92
+ 4. Auto_Learnings.md — full pattern database (already loaded)
93
+ 5. Goals.md — current targets (if loaded)
94
+ 6. Metrics_Log.md — last 30 days of data (if loaded)
95
+ 7. SCAN `00_Inbox/` — Quick Capture, Integrations folder
96
+ 8. SCAN `01_Projects/` — list active projects, last commit dates
97
+
98
+ After each Daily Note read, output a one-line extract: `[Date]: Tasks X/Y | Energy: Z | Notable: ...`
99
+ This keeps you from losing early-week data by the time you reach later entries.
100
+
101
+ ### 2B. Batch Reading Protocol
102
+ If > 7 files to read:
103
+ 1. Split into batches of 4-5 files
104
+ 2. Read each batch, extract patterns
105
+ 3. Synthesize across batches
106
+ 4. Cross-reference with Engine files
107
+
108
+ ---
109
+
110
+ ## 3. THE PROCESSING PROTOCOL
111
+
112
+ ### 3A. Identity Audit (The Mirror + Evolved Self Tracking)
113
+ Compare user's behavior across ALL dailies vs Identity_Prime.md.
114
+ - "Did we embody the identity this week, or did we slip into the Anti-Identity?"
115
+ - If slipped: identify trigger (Lack of sleep? Fear? Overwhelm?) and prescribe fix.
116
+ - Cite specific days: [Daily - YYYY-MM-DD] for evidence.
117
+ - Do NOT soften the verdict. If the week was bad, say it was bad. "You planned to be [identity] this week. The data shows you were [actual behavior] on [X] out of [Y] days. That's not a rough week, that's a pattern."
118
+ - If the same slippage appeared last week: "This is the second consecutive week of [pattern]. Once is a bad week. Twice is a habit forming. What structurally changes next week?"
119
+
120
+ **Subconscious Pattern Tracking:**
121
+ - Which evolved behaviors are becoming automatic? (Happened without conscious effort this week)
122
+ - Which still require conscious effort? (Had to force yourself to do them)
123
+ - Any new Anti-Identity triggers surfaced this week that aren't in Identity_Prime.md yet?
124
+ - Track the trajectory: "Week over week, [behavior X] is becoming more natural / still requires effort."
125
+
126
+ ### 3B. Inbox Zero Check
127
+ Scan ALL files in `{VAULT_ROOT}/00_Inbox/`. For each item, classify and route:
128
+
129
+ | Content Type | Destination |
130
+ |---|---|
131
+ | Task / action item | Active project's plan.md or Active_Context Backlog |
132
+ | Article / video / book note | `03_Library/Inputs/[Articles\|Videos\|Books]/` using template |
133
+ | Reusable knowledge (pattern, principle, SOP) | `03_Library/` (Cheatsheets/Principles/SOPs) |
134
+ | Person / org / place mentioned | `03_Library/Entities/[type]/` using template |
135
+ | Decision documented | `03_Library/Entities/Decisions/` using template |
136
+ | Project idea (not started) | `02_Areas/Engine/Someday_Maybe.md` |
137
+ | Noise / outdated / irrelevant | Delete or move to `04_Archives/` |
138
+
139
+ Process `00_Inbox/Quick_Capture.md` (if exists): parse each entry and route individually.
140
+ Process `00_Inbox/Integrations/` folder if it exists.
141
+
142
+ **Goal: Inbox must be empty by the end of review.** Every item either routed or trashed.
143
+
144
+ If > 10 items: batch-present them to the user for quick triage rather than asking one by one.
145
+
146
+ ### 3C. Project Health & Harvest Scan
147
+ For each active project in `01_Projects/`:
148
+
149
+ **Harvest Scan (DO NOT harvest inline — just count):**
150
+ 1. Read `project_state.md` (if exists)
151
+ 2. Count Solutions Ledger entries NOT in `## ARCHIVED KNOWLEDGE (Harvested)`
152
+ 3. If unharvested entries > 0: record project name + count
153
+ 4. After scanning all projects, report:
154
+ ```
155
+ Unharvested knowledge:
156
+ - [Project A]: X entries
157
+ - [Project B]: Y entries
158
+ Run /harvest for any of these? (Yes [which ones] / No / After review)
159
+ ```
160
+ 5. **STOP. Wait for user response.** Do not proceed to 3D until the user answers.
161
+ 6. If user says yes: note which project(s) to harvest AFTER review-week completes
162
+ 7. If user says no or after: proceed
163
+
164
+ **Project Status:**
165
+ - Flag zombie projects: no activity in 14+ days → "Archive to `04_Archives/`?"
166
+ - Flag stale projects: >30 days without activity → "Cold Project" warning
167
+ - Flag orphan projects: no plan.md or project_state.md → "Missing state files"
168
+
169
+ If any project flags raised: **STOP. Wait for user decision on each flag before proceeding.**
170
+
171
+ ### 3D. Strategy Pivot Check
172
+ Compare week's inputs (from all Dailies) vs Strategy.md targets.
173
+
174
+ **The Sample Size Protocol (MANDATORY):**
175
+ Before recommending any pivot, check sample size.
176
+ If sample < target (e.g., only 15/30 DMs sent):
177
+ - "INSUFFICIENT DATA. You are in the 'Latency' period. Do not change variables. Keep going until N=[target]. Trust the math, ignore the feelings."
178
+
179
+ **Verdict:**
180
+ - **Green:** Metrics hit. Strategy validated. Keep going.
181
+ - **Yellow:** Metrics close but inconsistent. Monitor another week.
182
+ - **Red:** Metrics missed WITH sufficient sample. Root cause analysis needed.
183
+
184
+ If Strategy Failed (Red + sufficient sample):
185
+ - "Run `/pivot-strategy` to formally document the change."
186
+
187
+ **Confidence labeling:**
188
+ - "Correlation detected (Confidence: 3)" vs "Causation confirmed (Confidence: 5)"
189
+ - Avoid blame-shifting. Find root causes, don't pin failures on the easiest variable.
190
+ - Do NOT present single-day observations as weekly trends.
191
+ - Require 3+ data points before claiming any causal relationship.
192
+ - If data is insufficient: say "Insufficient data to determine root cause" rather than guessing.
193
+ [Mover_Global_Rules.md: S2, S3]
194
+
195
+ ### 3E. Environmental & Input Scan (Identity Alignment)
196
+ "Rate your environment this week (-10 to +10). Did your feed/friends/room fuel or drain you?"
197
+ If negative: "Identify one Friction Point to remove and one Accelerant to add."
198
+
199
+ **Input Audit (Weekly):**
200
+ - **Content consumed:** What did the user read, watch, listen to this week? Did it reinforce the evolved identity or feed the Anti-Identity?
201
+ - **Social circle:** Energy-givers vs energy-drainers encountered this week?
202
+ - **Habitual inputs:** Any autopilot behaviors detected across multiple days? (Social media before Deep Work, defaulting to easy tasks, etc.)
203
+ - Score: "Your inputs this week were approximately [X]% aligned with the identity you're building."
204
+ - If < 50%: "Your environment is actively working against you. One structural change: [specific suggestion]."
205
+
206
+ ### 3F. Auto_Learnings Review (Score Decay + Domain TTLs)
207
+
208
+ Review ALL entries in Auto_Learnings.md. Apply three decay mechanisms:
209
+
210
+ **1. Evidence Decay (weekly):**
211
+ - Entries with no new supporting evidence in 30+ days: reduce confidence by 0.5.
212
+ - Entries at confidence ≤ 0: move to `## ARCHIVED (Decayed)` section at bottom of file.
213
+ - Entries confirmed by new evidence this week: promote confidence by 0.5 (max 5).
214
+
215
+ **2. Domain TTLs (time-to-live by category):**
216
+ Entries have different shelf lives based on their domain:
217
+
218
+ | Domain | TTL | Example |
219
+ |--------|-----|---------|
220
+ | Work habits | 90 days | "Avoids cold outreach", "Scope creeps on UI" |
221
+ | Health/Vitality | 180 days | "Energy crashes at 2pm", "Skips gym on Mondays" |
222
+ | Preferences | 365 days | "Prefers voice-to-text", "Uses dark mode" |
223
+ | Identity/Values | No expiry | "Driven by proving doubters wrong" |
224
+ | AI Corrections | 90 days | "AI uses && on Windows", "AI overwrites Engine files" |
225
+
226
+ If an entry exceeds its TTL without reconfirmation: reduce confidence by 1 and flag for review.
227
+ If expired AND confidence ≤ 1: archive automatically.
228
+
229
+ **3. Pattern Lifecycle:**
230
+ - Patterns absent 10+ days: reduce confidence by 1.
231
+ - Patterns absent 21+ days: mark RESOLVED, archive.
232
+ - Patterns confirmed 3+ times: promote confidence.
233
+ - Chronic patterns (active 90+ days, confidence 4+): escalate — "This is structural, not situational."
234
+
235
+ **4. CORRECTION Lifecycle:**
236
+ - ACTIVE corrections absent 90+ days: reduce confidence by 1, set Status: MONITORING. "Fix appears to be working."
237
+ - ACTIVE Conf 5 absent 90+ days: reduce to 4, flag: "Structural fix may have taken hold. Reducing severity."
238
+ - DEFERRED corrections >30 days: surface explicitly — "Correction '[name]' deferred on [date]. Still relevant? Resolve or promote to ACTIVE."
239
+ - RESOLVED corrections: no decay. Kept as permanent record.
240
+
241
+ **Output:** Highlight top 3 active patterns for user awareness. Flag any entries that decayed or expired this week.
242
+
243
+ ### 3G. Wins Extraction
244
+ From all Daily Notes and Session Logs, explicitly list wins:
245
+ - Tasks completed that were carried 2+ days (zombie kills)
246
+ - Metrics that hit or exceeded targets
247
+ - Identity-aligned behavior (e.g., pipeline done before Mover OS)
248
+ - System improvements shipped
249
+ - Any moment of genuine momentum or breakthrough
250
+
251
+ Output: "**Wins this week:** [List]" — this feeds directly into Step 7A's Weekly Review file.
252
+
253
+ ### 3H. System Improvement (Self-Evolving System)
254
+
255
+ THIS is where the system evolves. Not just flagging issues — actually fixing them.
256
+
257
+ **Source Scan (gather all issues):**
258
+ 1. Scan this week's Session Logs for "System Issue" flags
259
+ 2. Scan Auto_Learnings.md for patterns with confidence 3+ that suggest workflow/rule changes
260
+ 3. Scan this week's user corrections (from Self-Improvement sections in Session Logs)
261
+ 4. Group all issues by type: AI behavior | workflow gaps | rule additions | template fixes
262
+
263
+ **Before proposing any fix, pass the Leverage Check:**
264
+ 1. Does the model already handle this without a rule? If yes: skip it.
265
+ 2. Is this enforcement or guidance? Enforcement → hook. Guidance → rule or workflow instruction.
266
+ 3. Does this apply globally or only in one workflow? One workflow → put it there, not in Global Rules.
267
+ 4. Does a similar rule already exist? If yes: strengthen the existing one, don't add a duplicate.
268
+
269
+ **For EACH issue that passes the Leverage Check, present a concrete fix:**
270
+ ```
271
+ ISSUE: [Description from source]
272
+ SOURCE: [Session Log date / Auto_Learnings entry]
273
+ FIX TYPE: [Workflow edit / Rule addition / Hook change / Template update]
274
+ LEVERAGE CHECK: [Which level this targets and why]
275
+ PROPOSED CHANGE:
276
+ - File: [path]
277
+ - OLD: "[current text]"
278
+ + NEW: "[proposed text]"
279
+ IMPACT: [What this prevents/improves]
280
+ ```
281
+
282
+ **STOP. Present all proposed fixes. Wait for user to approve/reject each one.**
283
+
284
+ **For each approved fix:**
285
+ 1. Implement the change immediately (edit the file)
286
+ 2. Log in Weekly Review file: "System improvement: [fix] [date]"
287
+ 3. If it's a rule change: update Global Rules version number
288
+ 4. Append to Active_Context.md `## My Customizations`: `| [Date] | [File] | [What changed] | [Why] |`
289
+
290
+ **For rejected fixes:** Note the rejection reason. If the same issue appears 3+ weeks, escalate: "This issue keeps recurring. Revisit?"
291
+
292
+ This is how the system gets better every week. Issues identified → fixes proposed → fixes implemented → system evolves.
293
+
294
+ ---
295
+
296
+ ## 4. SELF-VERIFICATION (CISC)
297
+
298
+ Before outputting, self-check:
299
+ 1. All strategy verdicts cite weekly data with [file:line]? (90%+)
300
+ 2. Sample size validated before any pivot recommendation?
301
+ 3. Identity audit references specific daily evidence?
302
+ 4. Auto_Learnings decay rules applied?
303
+ 5. No single-day false causation presented as weekly trend?
304
+
305
+ If any section < 90% confident: flag it.
306
+
307
+ ---
308
+
309
+ ## 5. USER REPORT
310
+
311
+ Present findings to the user BEFORE writing to any Engine files.
312
+
313
+ "Here's what the week shows:"
314
+ 1. **Identity Score:** [X/10] — [one-line verdict citing specific days]
315
+ 2. **Strategy Verdict:** [Green/Yellow/Red] — [metric performance vs targets]
316
+ 3. **Wins:** [List from 3G]
317
+ 4. **Patterns:** [Top 3 from Auto_Learnings review]
318
+ 5. **System Issues:** [Count] issues found, [Count] fixes proposed
319
+ 6. **Inbox:** [Status]
320
+ 7. **Projects:** [Health summary]
321
+
322
+ If MONTHLY_MODE: include monthly trends section.
323
+
324
+ "Review this before I update Engine files. Any corrections?"
325
+
326
+ WAIT FOR USER RESPONSE before proceeding to Engine updates.
327
+
328
+ ---
329
+
330
+ ## 6. ENGINE FILE UPDATES (HIGH-RISK)
331
+
332
+ This is where insights from the audit become permanent. Do not skip.
333
+
334
+ **Diff format for all proposed edits:**
335
+ ```
336
+ - OLD: "[exact current text]"
337
+ + NEW: "[proposed replacement]"
338
+ Reason: [one line — what weekly data supports this change]
339
+ ```
340
+
341
+ ### 6A. Strategy.md Update
342
+
343
+ Review Strategy.md every week regardless of verdict — even Green weeks can surface refinements.
344
+ 1. For **Green** verdict: check if any metric thresholds are too easy (tighten if needed)
345
+ 2. For **Yellow** verdict: propose constraint or variable adjustments
346
+ 3. For **Red** verdict + sufficient sample: propose pivot criteria update or route to `/pivot-strategy`
347
+ 4. If full pivot needed: run `/pivot-strategy` first, then return here
348
+
349
+ "Proposed Strategy.md changes:
350
+ [DIFF FORMAT ABOVE]
351
+ Confirm? [Yes / Skip / Run /pivot-strategy instead]"
352
+
353
+ WAIT FOR USER CONFIRMATION before writing. [Mover_Global_Rules.md: S3 HIGH-RISK]
354
+
355
+ ### 6B. Identity_Prime.md Update
356
+
357
+ Review Identity_Prime.md every week — both for drift corrections AND proactive additions.
358
+ 1. **Drift corrections** (if 3A found slippage): sharpen Anti-Identity with specific failure mode observed
359
+ 2. **Proactive updates** (always check): any new rituals started? Energy window shifted? New non-negotiable emerged?
360
+ 3. Do NOT rewrite core values — append observations only
361
+ 4. Vitality/Faith: check if sleep patterns, spiritual practices, or energy data from the week suggest any update to these sections of Identity_Prime.md
362
+
363
+ "Proposed Identity_Prime.md changes:
364
+ [DIFF FORMAT ABOVE]
365
+ Confirm? [Yes / Skip]"
366
+
367
+ WAIT FOR USER CONFIRMATION. Update `**Last Updated:**` date if approved.
368
+
369
+ ### 6C. Active_Context.md Refresh
370
+
371
+ Always runs — Active_Context is always stale after a week.
372
+ 1. What changed in strategic state this week?
373
+ 2. Any blockers resolved? Add new ones?
374
+ 3. Update "Current Phase" if shifted
375
+ 4. Section 2 (Graveyard): if any ideas were killed this week (from Inbox triage, Someday/Maybe pruning, or user decisions), add them here with reason and date
376
+ 5. Section 4 (Technical Context): if active project changed, update project name, path, and tech stack
377
+ 6. Section 6 (Active Sessions): verify buffer is current — trim to last 5 entries
378
+ 7. Write workflow state: `weekly_review_last_run: [YYYY-MM-DD]`
379
+ 8. If MONTHLY_MODE was true: also write `monthly_review_last_run: [YYYY-MM-DD]` to Workflow State
380
+ 9. **Identity Snapshot (S5):** Refresh from Identity_Prime.md — Archetype, Core Drive, The Code (top 3), Anti-Identity (full triggers), Current Ritual. This is the cache that light workflows read instead of the full Identity file.
381
+ 10. **Active Patterns (S5.5):** Extract all patterns from Auto_Learnings.md at Confidence 3+. Format: `[PATTERN/CORRECTION] [Description] (Conf [X], [SEVERITY]) — Suggested: /[workflow]`. Light workflows read this instead of the full Auto_Learnings file.
382
+
383
+ "Proposed Active_Context.md changes:
384
+ [DIFF FORMAT — only the lines that change, not the full file]
385
+ Confirm? [Yes / Edit / Skip]"
386
+
387
+ WAIT FOR USER CONFIRMATION.
388
+
389
+ ### 6D. Git Commit
390
+
391
+ After all Engine file edits are confirmed:
392
+ ```
393
+ git add 02_Areas/Engine/
394
+ git commit -m "chore(engine): weekly review updates — [YYYY-MM-DD]"
395
+ ```
396
+ Do NOT commit `Weekly Reviews/` or `Dailies/` — these are gitignored. [Mover_Global_Rules.md: S9]
397
+
398
+ ---
399
+
400
+ ## 7. THE RESET & PLAN
401
+
402
+ ### 7A. Weekly Review File
403
+ Create `{VAULT_ROOT}/02_Areas/Engine/Weekly Reviews/Week - [YYYY-WW].md` with:
404
+ - Identity Score: [X]/10
405
+ - Strategy Status: [Valid / Monitor / Pivot Needed]
406
+ - Key Patterns: [Top 3 from Auto_Learnings]
407
+ - Wins: [List]
408
+ - Failures: [List with root cause]
409
+ - Engine Files Updated: [List what changed]
410
+ - System Improvements Made: [List]
411
+
412
+ ### 7B. Next Week's Objectives
413
+ Output the **3 Big Objectives** for next week based on Strategy and this review.
414
+
415
+ ### 7C. Monthly Mode (Every 4th Week)
416
+ If this is the 4th weekly review in a row, trigger deeper reflection.
417
+
418
+ **Batch Reading Protocol (Monthly):**
419
+ 1. Read ALL Daily Notes from this month — split into batches of 5-7 files
420
+ 2. After each batch, extract: completion rates, energy trends, pattern frequencies, strategy adherence
421
+ 3. Synthesize across ALL batches before drawing conclusions
422
+ 4. Cross-reference with ALL Engine files: Identity_Prime, Strategy, Active_Context, Goals, Dossier, Metrics_Log, Auto_Learnings
423
+ 5. This is the deepest analysis the system does. Do NOT be shallow. Read everything.
424
+
425
+ **Baseline Detection (Month 1 Only):**
426
+ If Metrics_Log.md has NO `## Baseline` section AND this is the first monthly review with 20+ daily entries:
427
+ 1. Calculate averages from the month's data: completion rate, deep work hours, energy, single test hit rate, zombie task count
428
+ 2. Write a `## Baseline` section to Metrics_Log.md with these averages
429
+ 3. "This is your Month 1 baseline. From next month, the system tracks improvement against these numbers."
430
+ 4. Ask user: "Do these numbers feel accurate? Any anomalies this month that skew them?"
431
+
432
+ If `## Baseline` already exists: compare this month's averages to baseline. Output delta: "Completion rate: 72% (baseline: 58%, +14%). Deep work: 4.2h (baseline: 3.1h, +1.1h)."
433
+
434
+ **Monthly Reflection:**
435
+ - Identity Audit: Which traits achieved? Which still in progress? Read Identity_Prime.md and compare against the month's behavior.
436
+ - Dossier Review: Any new assets, skills, or connections to add? Read Mover_Dossier.md.
437
+ - Goals Review: Are goals still aligned with identity? Are 90-day goals on track? Read Goals.md.
438
+ - Strategy evolution: How has Strategy.md changed over the month? Were pivots justified by data?
439
+ - Pattern lifecycle: Which Auto_Learnings patterns were resolved? Which are chronic?
440
+ - Subconscious patterns: Any recurring behavioral patterns the user should be aware of? (Avoidance, energy, scope creep)
441
+ - Baseline comparison: If baseline exists, how does this month compare? Show trends.
442
+
443
+ **Output:** Create `{VAULT_ROOT}/02_Areas/Engine/Monthly Reviews/Month - [YYYY-MM].md`. Separate from the weekly review file. Include month-over-month trends and baseline comparison.
444
+
445
+ ### 7D. Quarterly Mode (Every Quarter End)
446
+
447
+ If QUARTERLY_MODE=true, this is the deepest analysis cycle. Everything in Monthly Mode runs PLUS:
448
+
449
+ **90-Day Goal Review:**
450
+ 1. Read Goals.md. For each 90-day goal:
451
+ - What was the target? What was achieved? Show the gap as a number.
452
+ - Was the goal realistic given the data? Should it be adjusted, kept, or replaced?
453
+ - If a goal was missed: root cause analysis. Was it strategy failure, execution failure, or goal-setting failure?
454
+ 2. Set new 90-day goals (or carry forward adjusted ones). Require user confirmation.
455
+
456
+ **Strategy Evolution Audit:**
457
+ 1. Read Strategy.md CHANGELOG. Map every pivot this quarter.
458
+ 2. Were pivots data-driven or emotional? Count each type.
459
+ 3. Is the current hypothesis still valid given 3 months of data?
460
+ 4. "Your strategy changed [X] times this quarter. [Y] were data-driven, [Z] were hypothesis-only. This tells us: [verdict]."
461
+
462
+ **Identity Trajectory:**
463
+ 1. Compare Identity_Prime.md from start of quarter (via git history if available) to current.
464
+ 2. What evolved? What regressed? What stayed constant?
465
+ 3. "Three months ago, you described yourself as [X]. The data shows you've become [Y]. Gap: [Z]."
466
+
467
+ **Dossier Review:**
468
+ 1. Read Mover_Dossier.md. What assets were gained this quarter? What depreciated?
469
+ 2. New skills, connections, capital, content assets?
470
+ 3. "Your leverage position changed from [start] to [end]. Net: [gain/loss]."
471
+
472
+ **Auto_Learnings Lifecycle:**
473
+ 1. Which patterns were resolved this quarter?
474
+ 2. Which became chronic (active for 3+ months)?
475
+ 3. Chronic patterns get escalated: "Pattern [X] has been active for [Y] months. This is now structural, not situational. Needs a system-level fix, not willpower."
476
+
477
+ **Rules Health Check (Global Rules audit):**
478
+ 1. Read `Mover_Global_Rules.md` section by section.
479
+ 2. For each rule, ask: "Did this fire this quarter? Did it prevent a real mistake, or is it dead weight?"
480
+ 3. Flag rules that: (a) the model now handles natively without instruction, (b) duplicate another rule, (c) could be a hook instead.
481
+ 4. Propose removals or consolidations. Every line in Global Rules costs instruction budget.
482
+ 5. Present findings: "Global Rules: [X] sections, [Y] lines. Proposed cuts: [list]. Net savings: [Z] lines."
483
+ 6. Wait for user approval before any changes.
484
+
485
+ **Quarterly Output:**
486
+ Create `{VAULT_ROOT}/02_Areas/Engine/Quarterly Reviews/Quarter - [YYYY-QN].md` with:
487
+ - 90-day goal scorecard
488
+ - Strategy evolution timeline
489
+ - Identity trajectory
490
+ - Leverage audit
491
+ - Chronic pattern list
492
+ - Rules health findings
493
+ - Next quarter's 90-day goals (proposed)
494
+
495
+ "Review this quarterly report. Then run `/plan-tomorrow` for the first day of the new quarter."
496
+
497
+ ---
498
+
499
+ ## 8. SELF-IMPROVEMENT
500
+
501
+ If user corrected AI behavior during this workflow:
502
+
503
+ 1. Acknowledge: "I made a mistake."
504
+ 2. Identify the violated rule AND the source file.
505
+ 3. Propose fix using S11 diff format:
506
+ ```
507
+ CORRECTION FIX:
508
+ - File: [path]
509
+ - OLD: "[current text]"
510
+ + NEW: "[proposed text]"
511
+ SAFETY CHECK: [Which Safe Modification gate this passes]
512
+ ```
513
+ 4. **STOP. Wait for user approval.** (Same gate as S11 Trigger A.)
514
+ 5. If approved: implement + log structured CORRECTION to Auto_Learnings.md (see S11 format).
515
+ 6. If deferred: log with `Status: DEFERRED`.
516
+ 7. Before proposing rule additions, pass the Rule Addition Gate (Global Rules S11).
517
+ 8. If same correction seen 3x+, escalate confidence to 5 and flag as structural.
518
+
519
+ ---
520
+
521
+ ## 9. PROACTIVE SUGGESTIONS
522
+
523
+ Based on weekly observations:
524
+ 1. [Suggestion with confidence score]
525
+ 2. [Suggestion with confidence score]
526
+ 3. [Suggestion with confidence score]
527
+
528
+ "Want me to address any of these?"
529
+
530
+ ---
531
+
532
+ ## 10. ANSWER GATING
533
+
534
+ Maintain an internal checklist. Before every response, check which gates are resolved:
535
+ - [ ] Strategy verdict delivered and acknowledged
536
+ - [ ] Pivot decision made or deferred
537
+ - [ ] Engine files updated or explicitly skipped (Active_Context is NOT skippable)
538
+ - [ ] Inbox processed or acknowledged as skipped
539
+ - [ ] System improvements discussed
540
+ - [ ] Wins list generated (Step 3G)
541
+
542
+ If any gate is open: "You haven't confirmed [X]. Wait or proceed?"
543
+
544
+ ---
545
+
546
+ ## HANDOFF
547
+
548
+ Sources used: [List ALL files read]
549
+ Confidence range: [X-Y]
550
+
551
+ **Next:** "Weekly Review complete. Ready to run `/plan-tomorrow` for Monday?"
552
+ If Strategy Pivot needed: "First run `/pivot-strategy`, then `/plan-tomorrow`."
553
+
554
+ Key rules still active:
555
+ - All claims must be grounded
556
+ - Strategy changes require user confirmation
557
+ - Sample size must be met before recommending pivots
558
+ - Append-only: never delete strategy history