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.
- package/install.js +4 -2
- package/package.json +1 -1
- package/src/hooks/context-staleness.sh +46 -46
- package/src/hooks/dirty-tree-guard.sh +33 -33
- package/src/hooks/engine-protection.sh +43 -43
- package/src/hooks/git-safety.sh +47 -47
- package/src/hooks/pre-compact-backup.sh +177 -177
- package/src/hooks/session-log-reminder.sh +135 -73
- package/src/skills/systematic-debugging/CREATION-LOG.md +119 -119
- package/src/skills/systematic-debugging/SKILL.md +296 -296
- package/src/skills/systematic-debugging/condition-based-waiting-example.ts +158 -158
- package/src/skills/systematic-debugging/condition-based-waiting.md +115 -115
- package/src/skills/systematic-debugging/defense-in-depth.md +122 -122
- package/src/skills/systematic-debugging/find-polluter.sh +63 -63
- package/src/skills/systematic-debugging/root-cause-tracing.md +169 -169
- package/src/skills/systematic-debugging/test-academic.md +14 -14
- package/src/skills/systematic-debugging/test-pressure-1.md +58 -58
- package/src/skills/systematic-debugging/test-pressure-2.md +68 -68
- package/src/skills/systematic-debugging/test-pressure-3.md +69 -69
- package/src/structure/01_Projects/_Template Project/plan.md +55 -55
- package/src/structure/01_Projects/_Template Project/project_brief.md +45 -45
- package/src/structure/02_Areas/Engine/Active_Context.md +146 -146
- package/src/structure/02_Areas/Engine/Auto_Learnings.md +36 -36
- package/src/structure/02_Areas/Engine/Daily_Template.md +133 -133
- package/src/structure/02_Areas/Engine/Identity_Prime_template.md +86 -86
- package/src/structure/02_Areas/Engine/Mover_Dossier.md +120 -120
- package/src/structure/02_Areas/Engine/Strategy_template.md +65 -65
- package/src/structure/03_Library/SOPs/Tech_Stack.md +55 -55
- package/src/structure/03_Library/SOPs/Zone_Operating.md +57 -57
- package/src/system/V4_CONTEXT.md +262 -262
- package/src/theme/minimal-theme.css +271 -271
- package/src/workflows/analyse-day.md +401 -401
- package/src/workflows/debug-resistance.md +180 -180
- package/src/workflows/harvest.md +239 -239
- package/src/workflows/ignite.md +720 -720
- package/src/workflows/init-plan.md +16 -16
- package/src/workflows/morning.md +222 -222
- package/src/workflows/overview.md +203 -203
- package/src/workflows/pivot-strategy.md +218 -218
- package/src/workflows/plan-tomorrow.md +308 -308
- package/src/workflows/primer.md +207 -207
- package/src/workflows/reboot.md +201 -201
- package/src/workflows/refactor-plan.md +135 -135
- package/src/workflows/review-week.md +558 -558
- package/src/workflows/setup.md +388 -388
- package/src/workflows/update.md +10 -13
- package/src/workflows/walkthrough.md +523 -523
|
@@ -1,308 +1,308 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Generates the Daily Note for the next day based on Strategy, previous day's Analysis, and Active_Context.
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# Daily Planner (V4)
|
|
6
|
-
|
|
7
|
-
**Trigger:** User runs `/plan-tomorrow`
|
|
8
|
-
**Target:** Create `02_Areas/Engine/Dailies/YYYY-MM/Daily - [Tomorrow's Date].md`
|
|
9
|
-
**Template:** Use `02_Areas/Engine/Daily_Template.md` as the skeleton.
|
|
10
|
-
**Save To:** `02_Areas/Engine/Dailies/YYYY-MM/` (month subfolder, e.g. `Dailies/2026-02/`)
|
|
11
|
-
**Role:** Strategic Planner. Proactive, not passive.
|
|
12
|
-
**Task:** Construct a battle plan that makes success inevitable.
|
|
13
|
-
**Risk Tier:** MEDIUM
|
|
14
|
-
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
## 0. PRE-FLIGHT
|
|
18
|
-
|
|
19
|
-
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
20
|
-
|
|
21
|
-
LOAD (Memory Hierarchy):
|
|
22
|
-
1. Auto_Learnings.md (P0)
|
|
23
|
-
2. Active_Context.md (P1)
|
|
24
|
-
3. Strategy.md (P2)
|
|
25
|
-
4. Identity_Prime.md (P3)
|
|
26
|
-
5. Mover_Dossier.md (P3)
|
|
27
|
-
6. Goals.md (if exists)
|
|
28
|
-
7. Last 3-5 Daily Notes (P5)
|
|
29
|
-
8. Active project's `project_state.md` (P4) — get project path from Active_Context `## 4. TECHNICAL CONTEXT`. Read current phase, blockers, last milestone from Solutions Ledger and Changelog. Skip if no active project.
|
|
30
|
-
9. Active_Context `## 6. ACTIVE SESSIONS` — rolling session buffer for operational awareness of recent work across sessions.
|
|
31
|
-
|
|
32
|
-
CONSTRAINTS:
|
|
33
|
-
- All task selections grounded in Strategy.md or Identity_Prime.md
|
|
34
|
-
- Never drop tasks without explicit user approval
|
|
35
|
-
- Zero data loss: ALL unfinished tasks migrated
|
|
36
|
-
- Windows: no && in commands
|
|
37
|
-
- If Metrics_Log Baseline is empty: keep plans simpler, skip time estimates, note "Still learning your patterns — estimates will improve with data"
|
|
38
|
-
|
|
39
|
-
---
|
|
40
|
-
|
|
41
|
-
## 1. PREREQUISITE CHECK
|
|
42
|
-
|
|
43
|
-
### 1A. Review Day Protocol
|
|
44
|
-
Read `review_week_day` from Active_Context.md Workflow State (default: Sunday).
|
|
45
|
-
Is today the user's configured **review day** (planning for the day after)?
|
|
46
|
-
- Check Active_Context.md for `weekly_review_last_run` date. If it matches this week: review was done.
|
|
47
|
-
- If no evidence of `/review-week` this week: BLOCK. "Run `/review-week` first. Come back when done."
|
|
48
|
-
|
|
49
|
-
### 1B. Evening Protocol
|
|
50
|
-
Is it after **6pm** AND `/analyse-day` has NOT been run today?
|
|
51
|
-
- Check Active_Context.md for `analyse_day_last_run` date. If it matches today: already done.
|
|
52
|
-
- If no evidence: SUGGEST (don't block). "Consider running `/analyse-day` first for better context."
|
|
53
|
-
|
|
54
|
-
### 1C. Template Check
|
|
55
|
-
- `02_Areas/Engine/Daily_Template.md` exists
|
|
56
|
-
- `02_Areas/Engine/Dailies/` folder exists
|
|
57
|
-
|
|
58
|
-
If template missing: BLOCK. "Daily_Template.md not found. Create it or run `/setup`."
|
|
59
|
-
|
|
60
|
-
### 1D. Monthly Review Check
|
|
61
|
-
Read `monthly_review_last_run` from Active_Context.md Workflow State.
|
|
62
|
-
- Is tomorrow within the **last 3 days of the month**?
|
|
63
|
-
- Has `monthly_review_last_run` already fired this month?
|
|
64
|
-
|
|
65
|
-
If last 3 days AND monthly hasn't run: SUGGEST (don't block). "Monthly review hasn't run yet and the month ends soon. Consider running `/review-week` before month-end — it auto-triggers monthly mode on the last review-day."
|
|
66
|
-
|
|
67
|
-
Otherwise: skip silently.
|
|
68
|
-
|
|
69
|
-
---
|
|
70
|
-
|
|
71
|
-
## 2. RESILIENCE CHECK
|
|
72
|
-
|
|
73
|
-
Scan Active_Context.md and recent Daily Notes for: "Doubt," "Unsure," "Change strategy," "New idea."
|
|
74
|
-
|
|
75
|
-
If found, compare current volume against test sample size in Strategy.md:
|
|
76
|
-
|
|
77
|
-
**Scenario A (Under Sample):**
|
|
78
|
-
If volume < target (e.g., 10/100 DMs):
|
|
79
|
-
- REJECT THE DOUBT.
|
|
80
|
-
- "RESISTANCE DETECTED. You have only executed [X]% of the required volume. The math says we cannot pivot yet. Hold the line."
|
|
81
|
-
- Schedule a "Volume Sprint" to hit sample size faster.
|
|
82
|
-
|
|
83
|
-
**Scenario B (Over Sample + Failure):**
|
|
84
|
-
If volume > target AND results < KPI:
|
|
85
|
-
- "DATA CONFIRMED. The strategy failed on data, not feelings. Flag for Sunday's Weekly Review."
|
|
86
|
-
|
|
87
|
-
CONSTRAINT: You are FORBIDDEN from changing strategy mid-week based on feelings. Only data changes strategy. [Mover_Global_Rules.md: S7]
|
|
88
|
-
|
|
89
|
-
---
|
|
90
|
-
|
|
91
|
-
## 3. INTELLIGENCE GATHERING
|
|
92
|
-
|
|
93
|
-
Read the previous Daily Note thoroughly:
|
|
94
|
-
|
|
95
|
-
### 3A. Task Scan (Zero Data Loss — MANDATORY)
|
|
96
|
-
Identify EVERY unchecked `[ ]` item from today's Daily Note. Count them. List them.
|
|
97
|
-
Also check the DAY BEFORE today's note — tasks can slip through if yesterday's plan wasn't completed.
|
|
98
|
-
Every single incomplete task MUST appear in tomorrow's plan unless the user explicitly kills it.
|
|
99
|
-
Do NOT silently drop tasks. If a task was planned and not done, it carries forward with a carry count: `(x2)`, `(x3)`, etc.
|
|
100
|
-
|
|
101
|
-
### 3B. Backlog Sweep
|
|
102
|
-
Read Active_Context.md `## 8. BACKLOG` section. Any unchecked `[ ]` items? Pull them into tomorrow's task list. Mark them `[x]` in Active_Context after migration. Note source in the Daily Note: "(from Backlog)".
|
|
103
|
-
|
|
104
|
-
### 3B.5 Waiting For Check
|
|
105
|
-
Read Active_Context.md `## 3.5 WAITING FOR` section. Any items where "Expected by" date is tomorrow or earlier?
|
|
106
|
-
- Flag overdue items: "OVERDUE: You're waiting on [X] from [person] — expected [date]. Follow up tomorrow?"
|
|
107
|
-
- Add a follow-up task to the plan if the item is overdue and actionable.
|
|
108
|
-
|
|
109
|
-
### 3C. Commitments Check
|
|
110
|
-
Read Active_Context.md `## 8.5 COMMITMENTS` section. Any items where "Due by" date is tomorrow or earlier?
|
|
111
|
-
- Flag due items: "COMMITMENT DUE: You promised [X] to [person] by [date]. Add to plan?"
|
|
112
|
-
- Add a task to the plan for due commitments. These are promises to people, not optional.
|
|
113
|
-
|
|
114
|
-
### 3D. Log Detective
|
|
115
|
-
Read the Session Log and Engine sections. Look for:
|
|
116
|
-
- **Hidden Tasks:** "need to," "forgot to," "should have," "tomorrow I will"
|
|
117
|
-
- **Blockers:** "got stuck on X" -> Plan needs to solve X first
|
|
118
|
-
- **Energy Dip:** "tired at 2pm" -> Schedule a walk at 1:45pm
|
|
119
|
-
- **Overwhelm:** "too much," "pain," "confused" -> Trigger Overwhelm Protocol
|
|
120
|
-
|
|
121
|
-
### 3E. Key Insights
|
|
122
|
-
|
|
123
|
-
Read `## Key Insights` from previous analysis. These are instructions for tomorrow.
|
|
124
|
-
|
|
125
|
-
### 3F. Project Scope Awareness
|
|
126
|
-
If a project is mentioned:
|
|
127
|
-
1. Read project's plan.md or project_state.md
|
|
128
|
-
2. Understand current phase and complexity
|
|
129
|
-
3. Estimate realistic task sizes based on recent velocity
|
|
130
|
-
4. Never suggest a multi-week project as a single task [V4_ARCHITECTURE: 11.5]
|
|
131
|
-
|
|
132
|
-
---
|
|
133
|
-
|
|
134
|
-
## 4. STRATEGIC LOGIC
|
|
135
|
-
|
|
136
|
-
### 4A. Zombie Task Audit
|
|
137
|
-
|
|
138
|
-
**Cardinal rule: The AI NEVER removes, kills, or drops a zombie task without explicit user confirmation. The task stays in the plan until the user decides. Surface the problem, don't solve it unilaterally.**
|
|
139
|
-
|
|
140
|
-
Is there a task carried over > 2 times?
|
|
141
|
-
|
|
142
|
-
- **x2:** Flag it. "ZOMBIE TASK (x2): [Task]. This has been on your list for 2 days. Three possible reasons: you don't want to do it, you don't know how to start, or it's not actually important. Which one?" **WAIT for the user's answer before proceeding.**
|
|
143
|
-
- **x3-x4:** ESCALATE. "ZOMBIE (x[N]): [Task]. Carried [N] times. Three options: (1) Break it into a 15-minute first step, (2) Delegate it, (3) Kill it. Which one?" **WAIT for the user's choice. Do NOT auto-select. Task stays in plan until user decides.**
|
|
144
|
-
- **x5+:** CRITICAL ZOMBIE. "CRITICAL ZOMBIE (x[N]): [Task] has been on your list for [N] days. Something is blocking this. What is it?" **WAIT for the user's response. Task remains in the plan until the user explicitly says to remove it. Never pre-emptively remove.**
|
|
145
|
-
|
|
146
|
-
Do NOT let the user say "I'll get to it tomorrow" without a specific time block and first step.
|
|
147
|
-
|
|
148
|
-
### 4B. Dependency Awareness
|
|
149
|
-
For each task, classify:
|
|
150
|
-
- **Actionable:** Can be done independently
|
|
151
|
-
- **Waiting:** Blocked on external input (mark with "Waiting: [reason]")
|
|
152
|
-
- **Deferred:** Intentionally pushed back (mark with defer date)
|
|
153
|
-
|
|
154
|
-
### 4C. Identity Alignment (The Evolved Self Frame)
|
|
155
|
-
Compare plan against Identity_Prime.md.
|
|
156
|
-
If plan says "Read about Sales," change to "Execute Sales Calls." Movers move.
|
|
157
|
-
Cite: [Identity_Prime.md] for identity alignment checks.
|
|
158
|
-
|
|
159
|
-
**Identity Framing:** For each major task, ask: "What would the person you're becoming do?" Frame tasks through the evolved identity, not the current self. If the Anti-Identity would avoid this task, flag it and make it the Frog.
|
|
160
|
-
|
|
161
|
-
If a task has no carry marker, treat it as `(x1)` and write `(x2)`. If a task already has `(xN)`, increment to `(x(N+1))`. Never remove the carry marker.
|
|
162
|
-
|
|
163
|
-
### 4D. The Single Test (Dependency-Aware)
|
|
164
|
-
|
|
165
|
-
1. **Identify the goal:** Read Strategy.md Primary Metric. What outcome are we driving toward?
|
|
166
|
-
2. **Prerequisite scan:** Using project_state.md (loaded in Pre-Flight item 8) + Active_Context Technical Context + recent session buffer, identify the prerequisites for that goal. Which are done? Which aren't?
|
|
167
|
-
3. **Dependency reasoning:**
|
|
168
|
-
- If ALL prerequisites are complete: Single Test = the goal itself (direct metric impact).
|
|
169
|
-
- If prerequisites are INCOMPLETE: Single Test = the next incomplete prerequisite, NOT the goal. The goal can't be attacked until its dependencies are cleared.
|
|
170
|
-
- Example: Goal = "purchase path live". Prerequisites = [landing page (incomplete), payment provider (not started)]. Single Test = "finish landing page", not "add payment link".
|
|
171
|
-
4. **Overwhelm Exception:** If overwhelm detected (from Section 2), Single Test = a "Simplification Task" regardless of dependency state.
|
|
172
|
-
5. **Multiple metrics:** If Strategy has multiple metrics, track all but prioritize primary. Apply prerequisite scan to each.
|
|
173
|
-
6. **Low confidence:** If prerequisite status is unclear (Confidence < 3), state what you see and ask: "Is [X] a prerequisite for [goal]? I want to get the Single Test right."
|
|
174
|
-
|
|
175
|
-
### 4E. Review Day Special
|
|
176
|
-
Is the plan for the user's configured review day (from `review_week_day` in Active_Context.md, default: Sunday)?
|
|
177
|
-
- Add: `[ ] Execute /review-week Protocol` to tasks.
|
|
178
|
-
- Block 1-2 hours for Strategy & Rest.
|
|
179
|
-
- No heavy technical work unless critical.
|
|
180
|
-
|
|
181
|
-
---
|
|
182
|
-
|
|
183
|
-
## 5. FILE GENERATION
|
|
184
|
-
|
|
185
|
-
**Template Completeness Check:** Read `Daily_Template.md` first. Ensure the generated file includes ALL sections from the template: Battery, Focus, Tasks, Schedule, Battle Plan, Log, Session Log, Metrics, Review. Never skip a section — empty sections are fine, missing sections are not.
|
|
186
|
-
|
|
187
|
-
Generate the file using `Daily_Template.md` as skeleton.
|
|
188
|
-
|
|
189
|
-
### Focus Section
|
|
190
|
-
- **The Single Test:** [The #1 leverage task from Strategy.md]
|
|
191
|
-
- **The Frog:** [The hardest/most painful task]
|
|
192
|
-
- **The Sacrifice:** [What we're ignoring to ensure focus]
|
|
193
|
-
|
|
194
|
-
### Tasks Section (Zero Data Loss Protocol)
|
|
195
|
-
1. Migrate ALL unfinished `[ ]` tasks from yesterday.
|
|
196
|
-
2. Inject hidden tasks found during Log Detective phase.
|
|
197
|
-
3. Inject new tasks required by Strategy.md (e.g., "Send 50 DMs").
|
|
198
|
-
4. If Sunday: `[ ] Execute /review-week Protocol`
|
|
199
|
-
5. Mark zombie tasks with carry count: `(x2)`, `(x3)` etc.
|
|
200
|
-
|
|
201
|
-
**Identity Stamp:** Rewrite boring tasks to sound kinetic.
|
|
202
|
-
- "Admin work" -> "Clear the deck"
|
|
203
|
-
- "Gym" -> "Condition the Vessel"
|
|
204
|
-
|
|
205
|
-
### Schedule Section
|
|
206
|
-
- Ensure 3h of Buffer/Rest minimum.
|
|
207
|
-
- Mandatory: **09:00-09:15** Identity Visceralization (Green Bucket).
|
|
208
|
-
- Mandatory: **20:00** Evening Review & Identity Reinforcement.
|
|
209
|
-
- Anchor key tasks to specific time blocks.
|
|
210
|
-
|
|
211
|
-
**Estimation Calibration (MANDATORY):**
|
|
212
|
-
- Never assign a multi-day project as a single time block. Break it into the specific sub-task for tomorrow.
|
|
213
|
-
- Account for context switching: add 15-30 min buffer between deep work blocks.
|
|
214
|
-
- Check yesterday's Schedule for variance — if user consistently overestimates, reduce estimates by 20%.
|
|
215
|
-
- Account for non-work commitments (prayer times, meals, appointments mentioned in Active_Context).
|
|
216
|
-
- If total allocated time > 10h of deep work: warn. "This plan has [X]h of deep work. Yesterday you managed [Y]h. Trim?"
|
|
217
|
-
|
|
218
|
-
### Battle Plan Section
|
|
219
|
-
Break task blocks into actionable sequences with time estimates.
|
|
220
|
-
|
|
221
|
-
### Log Section
|
|
222
|
-
Empty, ready for tomorrow's entries.
|
|
223
|
-
```
|
|
224
|
-
* 09:00 -
|
|
225
|
-
```
|
|
226
|
-
|
|
227
|
-
### Review Section
|
|
228
|
-
```
|
|
229
|
-
* **Did I hit the target day?** [Yes/No]
|
|
230
|
-
* **Did I burn out?** [If yes, increase rest tomorrow]
|
|
231
|
-
* **System Tweak:** [Optimization for tomorrow]
|
|
232
|
-
```
|
|
233
|
-
|
|
234
|
-
---
|
|
235
|
-
|
|
236
|
-
## 6. SELF-VERIFICATION (CISC)
|
|
237
|
-
|
|
238
|
-
Before outputting, self-check:
|
|
239
|
-
1. Task count: New day >= Old day unchecked items? (Zero data loss)
|
|
240
|
-
2. Single Test impacts Strategy.md primary metric?
|
|
241
|
-
3. Identity alignment verified?
|
|
242
|
-
4. All zombie tasks flagged?
|
|
243
|
-
5. Schedule includes rest blocks?
|
|
244
|
-
6. All template sections present? (Battery, Focus, Tasks, Schedule, Battle Plan, Log, Session Log, Metrics, Review)
|
|
245
|
-
7. Time estimates realistic? (Not more deep work hours than user typically achieves)
|
|
246
|
-
8. Highest-leverage task is prioritized first, not buried in the schedule?
|
|
247
|
-
|
|
248
|
-
If any check fails: fix before outputting.
|
|
249
|
-
|
|
250
|
-
---
|
|
251
|
-
|
|
252
|
-
## 7. THE CHIEF OF STAFF REPORT
|
|
253
|
-
|
|
254
|
-
Output to user:
|
|
255
|
-
- "Battle Plan ready for [Date]."
|
|
256
|
-
- "The Single Test: [Task]"
|
|
257
|
-
- "Zombie Alert: [Found any? List them with carry count]"
|
|
258
|
-
- "Log Extraction: [Hidden tasks found in logs? 'I noticed you mentioned X, so I added it.']"
|
|
259
|
-
- "Strategy Check: This plan attacks [Current Metric] from Strategy.md."
|
|
260
|
-
- "Tasks: [X] migrated, [Y] new, [Z] total."
|
|
261
|
-
|
|
262
|
-
---
|
|
263
|
-
|
|
264
|
-
## 8. SELF-IMPROVEMENT
|
|
265
|
-
|
|
266
|
-
If user corrected AI during this workflow:
|
|
267
|
-
1. Acknowledge: "I made a mistake."
|
|
268
|
-
2. Identify the rule violated.
|
|
269
|
-
3. Append to Auto_Learnings.md:
|
|
270
|
-
`* [YYYY-MM-DD] CORRECTION: [Description]. Source: User correction. Confidence: 3.`
|
|
271
|
-
4. If same correction seen 3x+, escalate confidence to 5.
|
|
272
|
-
|
|
273
|
-
---
|
|
274
|
-
|
|
275
|
-
## 9. PROACTIVE SUGGESTIONS
|
|
276
|
-
|
|
277
|
-
Based on planning observations:
|
|
278
|
-
1. If high carry-over count: "You're carrying [X] tasks. Consider trimming scope." - Confidence: [X]
|
|
279
|
-
2. If no Strategy tasks: "No tasks directly impact your primary metric today." - Confidence: [X]
|
|
280
|
-
3. If Active_Context stale: "Active_Context hasn't been updated in [X] days." - Confidence: [X]
|
|
281
|
-
|
|
282
|
-
"Want me to address any of these?"
|
|
283
|
-
|
|
284
|
-
---
|
|
285
|
-
|
|
286
|
-
## 10. ANSWER GATING
|
|
287
|
-
|
|
288
|
-
Do not finalize until:
|
|
289
|
-
- User has reviewed the Battle Plan
|
|
290
|
-
- Any zombie task decisions are made (keep/kill/break down)
|
|
291
|
-
- Task count verified (zero data loss)
|
|
292
|
-
|
|
293
|
-
If pending: "You haven't decided on [zombie task]. Keep, kill, or break down?"
|
|
294
|
-
|
|
295
|
-
---
|
|
296
|
-
|
|
297
|
-
## HANDOFF
|
|
298
|
-
|
|
299
|
-
Sources used: [List files read]
|
|
300
|
-
Confidence range: [X-Y]
|
|
301
|
-
|
|
302
|
-
**Next:** "Battle Plan for [Date] is ready. Review and start executing tomorrow!"
|
|
303
|
-
If tomorrow is the user's review day: "Tomorrow is your review day. I've included `/review-week` in your tasks."
|
|
304
|
-
|
|
305
|
-
Key rules still active:
|
|
306
|
-
- All claims must be grounded
|
|
307
|
-
- Confidence < 3 = ask, don't assert
|
|
308
|
-
- Zero data loss on task migration
|
|
1
|
+
---
|
|
2
|
+
description: Generates the Daily Note for the next day based on Strategy, previous day's Analysis, and Active_Context.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Daily Planner (V4)
|
|
6
|
+
|
|
7
|
+
**Trigger:** User runs `/plan-tomorrow`
|
|
8
|
+
**Target:** Create `02_Areas/Engine/Dailies/YYYY-MM/Daily - [Tomorrow's Date].md`
|
|
9
|
+
**Template:** Use `02_Areas/Engine/Daily_Template.md` as the skeleton.
|
|
10
|
+
**Save To:** `02_Areas/Engine/Dailies/YYYY-MM/` (month subfolder, e.g. `Dailies/2026-02/`)
|
|
11
|
+
**Role:** Strategic Planner. Proactive, not passive.
|
|
12
|
+
**Task:** Construct a battle plan that makes success inevitable.
|
|
13
|
+
**Risk Tier:** MEDIUM
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 0. PRE-FLIGHT
|
|
18
|
+
|
|
19
|
+
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
20
|
+
|
|
21
|
+
LOAD (Memory Hierarchy):
|
|
22
|
+
1. Auto_Learnings.md (P0)
|
|
23
|
+
2. Active_Context.md (P1)
|
|
24
|
+
3. Strategy.md (P2)
|
|
25
|
+
4. Identity_Prime.md (P3)
|
|
26
|
+
5. Mover_Dossier.md (P3)
|
|
27
|
+
6. Goals.md (if exists)
|
|
28
|
+
7. Last 3-5 Daily Notes (P5)
|
|
29
|
+
8. Active project's `project_state.md` (P4) — get project path from Active_Context `## 4. TECHNICAL CONTEXT`. Read current phase, blockers, last milestone from Solutions Ledger and Changelog. Skip if no active project.
|
|
30
|
+
9. Active_Context `## 6. ACTIVE SESSIONS` — rolling session buffer for operational awareness of recent work across sessions.
|
|
31
|
+
|
|
32
|
+
CONSTRAINTS:
|
|
33
|
+
- All task selections grounded in Strategy.md or Identity_Prime.md
|
|
34
|
+
- Never drop tasks without explicit user approval
|
|
35
|
+
- Zero data loss: ALL unfinished tasks migrated
|
|
36
|
+
- Windows: no && in commands
|
|
37
|
+
- If Metrics_Log Baseline is empty: keep plans simpler, skip time estimates, note "Still learning your patterns — estimates will improve with data"
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 1. PREREQUISITE CHECK
|
|
42
|
+
|
|
43
|
+
### 1A. Review Day Protocol
|
|
44
|
+
Read `review_week_day` from Active_Context.md Workflow State (default: Sunday).
|
|
45
|
+
Is today the user's configured **review day** (planning for the day after)?
|
|
46
|
+
- Check Active_Context.md for `weekly_review_last_run` date. If it matches this week: review was done.
|
|
47
|
+
- If no evidence of `/review-week` this week: BLOCK. "Run `/review-week` first. Come back when done."
|
|
48
|
+
|
|
49
|
+
### 1B. Evening Protocol
|
|
50
|
+
Is it after **6pm** AND `/analyse-day` has NOT been run today?
|
|
51
|
+
- Check Active_Context.md for `analyse_day_last_run` date. If it matches today: already done.
|
|
52
|
+
- If no evidence: SUGGEST (don't block). "Consider running `/analyse-day` first for better context."
|
|
53
|
+
|
|
54
|
+
### 1C. Template Check
|
|
55
|
+
- `02_Areas/Engine/Daily_Template.md` exists
|
|
56
|
+
- `02_Areas/Engine/Dailies/` folder exists
|
|
57
|
+
|
|
58
|
+
If template missing: BLOCK. "Daily_Template.md not found. Create it or run `/setup`."
|
|
59
|
+
|
|
60
|
+
### 1D. Monthly Review Check
|
|
61
|
+
Read `monthly_review_last_run` from Active_Context.md Workflow State.
|
|
62
|
+
- Is tomorrow within the **last 3 days of the month**?
|
|
63
|
+
- Has `monthly_review_last_run` already fired this month?
|
|
64
|
+
|
|
65
|
+
If last 3 days AND monthly hasn't run: SUGGEST (don't block). "Monthly review hasn't run yet and the month ends soon. Consider running `/review-week` before month-end — it auto-triggers monthly mode on the last review-day."
|
|
66
|
+
|
|
67
|
+
Otherwise: skip silently.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## 2. RESILIENCE CHECK
|
|
72
|
+
|
|
73
|
+
Scan Active_Context.md and recent Daily Notes for: "Doubt," "Unsure," "Change strategy," "New idea."
|
|
74
|
+
|
|
75
|
+
If found, compare current volume against test sample size in Strategy.md:
|
|
76
|
+
|
|
77
|
+
**Scenario A (Under Sample):**
|
|
78
|
+
If volume < target (e.g., 10/100 DMs):
|
|
79
|
+
- REJECT THE DOUBT.
|
|
80
|
+
- "RESISTANCE DETECTED. You have only executed [X]% of the required volume. The math says we cannot pivot yet. Hold the line."
|
|
81
|
+
- Schedule a "Volume Sprint" to hit sample size faster.
|
|
82
|
+
|
|
83
|
+
**Scenario B (Over Sample + Failure):**
|
|
84
|
+
If volume > target AND results < KPI:
|
|
85
|
+
- "DATA CONFIRMED. The strategy failed on data, not feelings. Flag for Sunday's Weekly Review."
|
|
86
|
+
|
|
87
|
+
CONSTRAINT: You are FORBIDDEN from changing strategy mid-week based on feelings. Only data changes strategy. [Mover_Global_Rules.md: S7]
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 3. INTELLIGENCE GATHERING
|
|
92
|
+
|
|
93
|
+
Read the previous Daily Note thoroughly:
|
|
94
|
+
|
|
95
|
+
### 3A. Task Scan (Zero Data Loss — MANDATORY)
|
|
96
|
+
Identify EVERY unchecked `[ ]` item from today's Daily Note. Count them. List them.
|
|
97
|
+
Also check the DAY BEFORE today's note — tasks can slip through if yesterday's plan wasn't completed.
|
|
98
|
+
Every single incomplete task MUST appear in tomorrow's plan unless the user explicitly kills it.
|
|
99
|
+
Do NOT silently drop tasks. If a task was planned and not done, it carries forward with a carry count: `(x2)`, `(x3)`, etc.
|
|
100
|
+
|
|
101
|
+
### 3B. Backlog Sweep
|
|
102
|
+
Read Active_Context.md `## 8. BACKLOG` section. Any unchecked `[ ]` items? Pull them into tomorrow's task list. Mark them `[x]` in Active_Context after migration. Note source in the Daily Note: "(from Backlog)".
|
|
103
|
+
|
|
104
|
+
### 3B.5 Waiting For Check
|
|
105
|
+
Read Active_Context.md `## 3.5 WAITING FOR` section. Any items where "Expected by" date is tomorrow or earlier?
|
|
106
|
+
- Flag overdue items: "OVERDUE: You're waiting on [X] from [person] — expected [date]. Follow up tomorrow?"
|
|
107
|
+
- Add a follow-up task to the plan if the item is overdue and actionable.
|
|
108
|
+
|
|
109
|
+
### 3C. Commitments Check
|
|
110
|
+
Read Active_Context.md `## 8.5 COMMITMENTS` section. Any items where "Due by" date is tomorrow or earlier?
|
|
111
|
+
- Flag due items: "COMMITMENT DUE: You promised [X] to [person] by [date]. Add to plan?"
|
|
112
|
+
- Add a task to the plan for due commitments. These are promises to people, not optional.
|
|
113
|
+
|
|
114
|
+
### 3D. Log Detective
|
|
115
|
+
Read the Session Log and Engine sections. Look for:
|
|
116
|
+
- **Hidden Tasks:** "need to," "forgot to," "should have," "tomorrow I will"
|
|
117
|
+
- **Blockers:** "got stuck on X" -> Plan needs to solve X first
|
|
118
|
+
- **Energy Dip:** "tired at 2pm" -> Schedule a walk at 1:45pm
|
|
119
|
+
- **Overwhelm:** "too much," "pain," "confused" -> Trigger Overwhelm Protocol
|
|
120
|
+
|
|
121
|
+
### 3E. Key Insights
|
|
122
|
+
|
|
123
|
+
Read `## Key Insights` from previous analysis. These are instructions for tomorrow.
|
|
124
|
+
|
|
125
|
+
### 3F. Project Scope Awareness
|
|
126
|
+
If a project is mentioned:
|
|
127
|
+
1. Read project's plan.md or project_state.md
|
|
128
|
+
2. Understand current phase and complexity
|
|
129
|
+
3. Estimate realistic task sizes based on recent velocity
|
|
130
|
+
4. Never suggest a multi-week project as a single task [V4_ARCHITECTURE: 11.5]
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## 4. STRATEGIC LOGIC
|
|
135
|
+
|
|
136
|
+
### 4A. Zombie Task Audit
|
|
137
|
+
|
|
138
|
+
**Cardinal rule: The AI NEVER removes, kills, or drops a zombie task without explicit user confirmation. The task stays in the plan until the user decides. Surface the problem, don't solve it unilaterally.**
|
|
139
|
+
|
|
140
|
+
Is there a task carried over > 2 times?
|
|
141
|
+
|
|
142
|
+
- **x2:** Flag it. "ZOMBIE TASK (x2): [Task]. This has been on your list for 2 days. Three possible reasons: you don't want to do it, you don't know how to start, or it's not actually important. Which one?" **WAIT for the user's answer before proceeding.**
|
|
143
|
+
- **x3-x4:** ESCALATE. "ZOMBIE (x[N]): [Task]. Carried [N] times. Three options: (1) Break it into a 15-minute first step, (2) Delegate it, (3) Kill it. Which one?" **WAIT for the user's choice. Do NOT auto-select. Task stays in plan until user decides.**
|
|
144
|
+
- **x5+:** CRITICAL ZOMBIE. "CRITICAL ZOMBIE (x[N]): [Task] has been on your list for [N] days. Something is blocking this. What is it?" **WAIT for the user's response. Task remains in the plan until the user explicitly says to remove it. Never pre-emptively remove.**
|
|
145
|
+
|
|
146
|
+
Do NOT let the user say "I'll get to it tomorrow" without a specific time block and first step.
|
|
147
|
+
|
|
148
|
+
### 4B. Dependency Awareness
|
|
149
|
+
For each task, classify:
|
|
150
|
+
- **Actionable:** Can be done independently
|
|
151
|
+
- **Waiting:** Blocked on external input (mark with "Waiting: [reason]")
|
|
152
|
+
- **Deferred:** Intentionally pushed back (mark with defer date)
|
|
153
|
+
|
|
154
|
+
### 4C. Identity Alignment (The Evolved Self Frame)
|
|
155
|
+
Compare plan against Identity_Prime.md.
|
|
156
|
+
If plan says "Read about Sales," change to "Execute Sales Calls." Movers move.
|
|
157
|
+
Cite: [Identity_Prime.md] for identity alignment checks.
|
|
158
|
+
|
|
159
|
+
**Identity Framing:** For each major task, ask: "What would the person you're becoming do?" Frame tasks through the evolved identity, not the current self. If the Anti-Identity would avoid this task, flag it and make it the Frog.
|
|
160
|
+
|
|
161
|
+
If a task has no carry marker, treat it as `(x1)` and write `(x2)`. If a task already has `(xN)`, increment to `(x(N+1))`. Never remove the carry marker.
|
|
162
|
+
|
|
163
|
+
### 4D. The Single Test (Dependency-Aware)
|
|
164
|
+
|
|
165
|
+
1. **Identify the goal:** Read Strategy.md Primary Metric. What outcome are we driving toward?
|
|
166
|
+
2. **Prerequisite scan:** Using project_state.md (loaded in Pre-Flight item 8) + Active_Context Technical Context + recent session buffer, identify the prerequisites for that goal. Which are done? Which aren't?
|
|
167
|
+
3. **Dependency reasoning:**
|
|
168
|
+
- If ALL prerequisites are complete: Single Test = the goal itself (direct metric impact).
|
|
169
|
+
- If prerequisites are INCOMPLETE: Single Test = the next incomplete prerequisite, NOT the goal. The goal can't be attacked until its dependencies are cleared.
|
|
170
|
+
- Example: Goal = "purchase path live". Prerequisites = [landing page (incomplete), payment provider (not started)]. Single Test = "finish landing page", not "add payment link".
|
|
171
|
+
4. **Overwhelm Exception:** If overwhelm detected (from Section 2), Single Test = a "Simplification Task" regardless of dependency state.
|
|
172
|
+
5. **Multiple metrics:** If Strategy has multiple metrics, track all but prioritize primary. Apply prerequisite scan to each.
|
|
173
|
+
6. **Low confidence:** If prerequisite status is unclear (Confidence < 3), state what you see and ask: "Is [X] a prerequisite for [goal]? I want to get the Single Test right."
|
|
174
|
+
|
|
175
|
+
### 4E. Review Day Special
|
|
176
|
+
Is the plan for the user's configured review day (from `review_week_day` in Active_Context.md, default: Sunday)?
|
|
177
|
+
- Add: `[ ] Execute /review-week Protocol` to tasks.
|
|
178
|
+
- Block 1-2 hours for Strategy & Rest.
|
|
179
|
+
- No heavy technical work unless critical.
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## 5. FILE GENERATION
|
|
184
|
+
|
|
185
|
+
**Template Completeness Check:** Read `Daily_Template.md` first. Ensure the generated file includes ALL sections from the template: Battery, Focus, Tasks, Schedule, Battle Plan, Log, Session Log, Metrics, Review. Never skip a section — empty sections are fine, missing sections are not.
|
|
186
|
+
|
|
187
|
+
Generate the file using `Daily_Template.md` as skeleton.
|
|
188
|
+
|
|
189
|
+
### Focus Section
|
|
190
|
+
- **The Single Test:** [The #1 leverage task from Strategy.md]
|
|
191
|
+
- **The Frog:** [The hardest/most painful task]
|
|
192
|
+
- **The Sacrifice:** [What we're ignoring to ensure focus]
|
|
193
|
+
|
|
194
|
+
### Tasks Section (Zero Data Loss Protocol)
|
|
195
|
+
1. Migrate ALL unfinished `[ ]` tasks from yesterday.
|
|
196
|
+
2. Inject hidden tasks found during Log Detective phase.
|
|
197
|
+
3. Inject new tasks required by Strategy.md (e.g., "Send 50 DMs").
|
|
198
|
+
4. If Sunday: `[ ] Execute /review-week Protocol`
|
|
199
|
+
5. Mark zombie tasks with carry count: `(x2)`, `(x3)` etc.
|
|
200
|
+
|
|
201
|
+
**Identity Stamp:** Rewrite boring tasks to sound kinetic.
|
|
202
|
+
- "Admin work" -> "Clear the deck"
|
|
203
|
+
- "Gym" -> "Condition the Vessel"
|
|
204
|
+
|
|
205
|
+
### Schedule Section
|
|
206
|
+
- Ensure 3h of Buffer/Rest minimum.
|
|
207
|
+
- Mandatory: **09:00-09:15** Identity Visceralization (Green Bucket).
|
|
208
|
+
- Mandatory: **20:00** Evening Review & Identity Reinforcement.
|
|
209
|
+
- Anchor key tasks to specific time blocks.
|
|
210
|
+
|
|
211
|
+
**Estimation Calibration (MANDATORY):**
|
|
212
|
+
- Never assign a multi-day project as a single time block. Break it into the specific sub-task for tomorrow.
|
|
213
|
+
- Account for context switching: add 15-30 min buffer between deep work blocks.
|
|
214
|
+
- Check yesterday's Schedule for variance — if user consistently overestimates, reduce estimates by 20%.
|
|
215
|
+
- Account for non-work commitments (prayer times, meals, appointments mentioned in Active_Context).
|
|
216
|
+
- If total allocated time > 10h of deep work: warn. "This plan has [X]h of deep work. Yesterday you managed [Y]h. Trim?"
|
|
217
|
+
|
|
218
|
+
### Battle Plan Section
|
|
219
|
+
Break task blocks into actionable sequences with time estimates.
|
|
220
|
+
|
|
221
|
+
### Log Section
|
|
222
|
+
Empty, ready for tomorrow's entries.
|
|
223
|
+
```
|
|
224
|
+
* 09:00 -
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
### Review Section
|
|
228
|
+
```
|
|
229
|
+
* **Did I hit the target day?** [Yes/No]
|
|
230
|
+
* **Did I burn out?** [If yes, increase rest tomorrow]
|
|
231
|
+
* **System Tweak:** [Optimization for tomorrow]
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## 6. SELF-VERIFICATION (CISC)
|
|
237
|
+
|
|
238
|
+
Before outputting, self-check:
|
|
239
|
+
1. Task count: New day >= Old day unchecked items? (Zero data loss)
|
|
240
|
+
2. Single Test impacts Strategy.md primary metric?
|
|
241
|
+
3. Identity alignment verified?
|
|
242
|
+
4. All zombie tasks flagged?
|
|
243
|
+
5. Schedule includes rest blocks?
|
|
244
|
+
6. All template sections present? (Battery, Focus, Tasks, Schedule, Battle Plan, Log, Session Log, Metrics, Review)
|
|
245
|
+
7. Time estimates realistic? (Not more deep work hours than user typically achieves)
|
|
246
|
+
8. Highest-leverage task is prioritized first, not buried in the schedule?
|
|
247
|
+
|
|
248
|
+
If any check fails: fix before outputting.
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
252
|
+
## 7. THE CHIEF OF STAFF REPORT
|
|
253
|
+
|
|
254
|
+
Output to user:
|
|
255
|
+
- "Battle Plan ready for [Date]."
|
|
256
|
+
- "The Single Test: [Task]"
|
|
257
|
+
- "Zombie Alert: [Found any? List them with carry count]"
|
|
258
|
+
- "Log Extraction: [Hidden tasks found in logs? 'I noticed you mentioned X, so I added it.']"
|
|
259
|
+
- "Strategy Check: This plan attacks [Current Metric] from Strategy.md."
|
|
260
|
+
- "Tasks: [X] migrated, [Y] new, [Z] total."
|
|
261
|
+
|
|
262
|
+
---
|
|
263
|
+
|
|
264
|
+
## 8. SELF-IMPROVEMENT
|
|
265
|
+
|
|
266
|
+
If user corrected AI during this workflow:
|
|
267
|
+
1. Acknowledge: "I made a mistake."
|
|
268
|
+
2. Identify the rule violated.
|
|
269
|
+
3. Append to Auto_Learnings.md:
|
|
270
|
+
`* [YYYY-MM-DD] CORRECTION: [Description]. Source: User correction. Confidence: 3.`
|
|
271
|
+
4. If same correction seen 3x+, escalate confidence to 5.
|
|
272
|
+
|
|
273
|
+
---
|
|
274
|
+
|
|
275
|
+
## 9. PROACTIVE SUGGESTIONS
|
|
276
|
+
|
|
277
|
+
Based on planning observations:
|
|
278
|
+
1. If high carry-over count: "You're carrying [X] tasks. Consider trimming scope." - Confidence: [X]
|
|
279
|
+
2. If no Strategy tasks: "No tasks directly impact your primary metric today." - Confidence: [X]
|
|
280
|
+
3. If Active_Context stale: "Active_Context hasn't been updated in [X] days." - Confidence: [X]
|
|
281
|
+
|
|
282
|
+
"Want me to address any of these?"
|
|
283
|
+
|
|
284
|
+
---
|
|
285
|
+
|
|
286
|
+
## 10. ANSWER GATING
|
|
287
|
+
|
|
288
|
+
Do not finalize until:
|
|
289
|
+
- User has reviewed the Battle Plan
|
|
290
|
+
- Any zombie task decisions are made (keep/kill/break down)
|
|
291
|
+
- Task count verified (zero data loss)
|
|
292
|
+
|
|
293
|
+
If pending: "You haven't decided on [zombie task]. Keep, kill, or break down?"
|
|
294
|
+
|
|
295
|
+
---
|
|
296
|
+
|
|
297
|
+
## HANDOFF
|
|
298
|
+
|
|
299
|
+
Sources used: [List files read]
|
|
300
|
+
Confidence range: [X-Y]
|
|
301
|
+
|
|
302
|
+
**Next:** "Battle Plan for [Date] is ready. Review and start executing tomorrow!"
|
|
303
|
+
If tomorrow is the user's review day: "Tomorrow is your review day. I've included `/review-week` in your tasks."
|
|
304
|
+
|
|
305
|
+
Key rules still active:
|
|
306
|
+
- All claims must be grounded
|
|
307
|
+
- Confidence < 3 = ask, don't assert
|
|
308
|
+
- Zero data loss on task migration
|