mover-os 4.0.11 → 4.0.13
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.
Potentially problematic release.
This version of mover-os might be problematic. Click here for more details.
- package/install.js +29 -3
- package/package.json +1 -1
- package/src/structure/02_Areas/Engine/Active_Context.md +25 -5
- package/src/system/Mover_Global_Rules.md +11 -4
- package/src/workflows/analyse-day.md +5 -3
- package/src/workflows/debrief.md +4 -5
- package/src/workflows/debug-resistance.md +5 -6
- package/src/workflows/harvest.md +3 -4
- package/src/workflows/log.md +8 -9
- package/src/workflows/morning.md +4 -6
- package/src/workflows/overview.md +4 -6
- package/src/workflows/plan-tomorrow.md +3 -3
- package/src/workflows/primer.md +4 -6
- package/src/workflows/reboot.md +4 -6
- package/src/workflows/refactor-plan.md +6 -6
- package/src/workflows/review-week.md +3 -1
- package/src/workflows/update.md +123 -1
- package/src/workflows/walkthrough.md +3 -5
package/install.js
CHANGED
|
@@ -941,8 +941,34 @@ function installHooksForClaude(bundleDir, vaultPath) {
|
|
|
941
941
|
count++;
|
|
942
942
|
}
|
|
943
943
|
|
|
944
|
+
// Deep-merge hooks into existing settings.json (preserve user config)
|
|
944
945
|
const settingsPath = path.join(settingsDir, "settings.json");
|
|
945
|
-
|
|
946
|
+
const newHooks = JSON.parse(generateClaudeSettings()).hooks;
|
|
947
|
+
if (fs.existsSync(settingsPath)) {
|
|
948
|
+
try {
|
|
949
|
+
const existing = JSON.parse(fs.readFileSync(settingsPath, "utf8"));
|
|
950
|
+
if (!existing.hooks) existing.hooks = {};
|
|
951
|
+
// Merge each hook event (Stop, PreToolUse, PreCompact)
|
|
952
|
+
for (const [event, entries] of Object.entries(newHooks)) {
|
|
953
|
+
if (!existing.hooks[event]) {
|
|
954
|
+
existing.hooks[event] = entries;
|
|
955
|
+
} else {
|
|
956
|
+
// Check if our hooks are already registered (by command substring)
|
|
957
|
+
const existingCmds = JSON.stringify(existing.hooks[event]);
|
|
958
|
+
const alreadyHas = entries[0].hooks.every(
|
|
959
|
+
(h) => existingCmds.includes(h.command.split("/").pop().replace('"', ""))
|
|
960
|
+
);
|
|
961
|
+
if (!alreadyHas) {
|
|
962
|
+
existing.hooks[event].push(...entries);
|
|
963
|
+
}
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
fs.writeFileSync(settingsPath, JSON.stringify(existing, null, 2), "utf8");
|
|
967
|
+
} catch {
|
|
968
|
+
// Corrupt settings — overwrite
|
|
969
|
+
fs.writeFileSync(settingsPath, generateClaudeSettings(), "utf8");
|
|
970
|
+
}
|
|
971
|
+
} else {
|
|
946
972
|
fs.writeFileSync(settingsPath, generateClaudeSettings(), "utf8");
|
|
947
973
|
}
|
|
948
974
|
|
|
@@ -1046,7 +1072,7 @@ function installCodexCli(bundleDir, vaultPath, skillOpts) {
|
|
|
1046
1072
|
function installCodexCloud(bundleDir, vaultPath, skillOpts) {
|
|
1047
1073
|
const steps = [];
|
|
1048
1074
|
|
|
1049
|
-
if (vaultPath &&
|
|
1075
|
+
if (vaultPath && skillOpts && skillOpts.install) {
|
|
1050
1076
|
const skillsDir = path.join(vaultPath, ".agents", "skills");
|
|
1051
1077
|
const skCount = installSkillPacks(bundleDir, skillsDir, skillOpts.categories);
|
|
1052
1078
|
if (skCount > 0) steps.push(`${skCount} skills`);
|
|
@@ -1471,7 +1497,7 @@ async function main() {
|
|
|
1471
1497
|
});
|
|
1472
1498
|
|
|
1473
1499
|
installSkills = selectedCatIds.length > 0;
|
|
1474
|
-
if (
|
|
1500
|
+
if (installSkills) {
|
|
1475
1501
|
selectedCategories = new Set(selectedCatIds);
|
|
1476
1502
|
// Count how many skills will be installed (selected categories + tools)
|
|
1477
1503
|
const skillCount = allSkills.filter((s) => s.category === "tools" || selectedCategories.has(s.category)).length;
|
package/package.json
CHANGED
|
@@ -56,7 +56,27 @@
|
|
|
56
56
|
|
|
57
57
|
---
|
|
58
58
|
|
|
59
|
-
## 5.
|
|
59
|
+
## 5. IDENTITY SNAPSHOT
|
|
60
|
+
|
|
61
|
+
*Written by: `/analyse-day`, `/review-week`, `/setup`. Condensed from Identity_Prime.md. Light workflows read this instead of the full file.*
|
|
62
|
+
|
|
63
|
+
- **Archetype:** [From Identity_Prime — e.g., "Builder-Strategist"]
|
|
64
|
+
- **Core Drive:** [One sentence — what fuels you]
|
|
65
|
+
- **The Code:** [Top 3 non-negotiable rules from Identity_Prime]
|
|
66
|
+
- **Anti-Identity:** [Full trigger list — what you refuse to become]
|
|
67
|
+
- **Current Ritual:** [Active daily ritual from Identity_Prime]
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## 5.5 ACTIVE PATTERNS
|
|
72
|
+
|
|
73
|
+
*Written by: `/analyse-day`, `/review-week`. Top patterns from Auto_Learnings.md at Confidence 3+. Light workflows read this instead of the full file.*
|
|
74
|
+
|
|
75
|
+
- [PATTERN/CORRECTION] [Description] (Conf [X], [SEVERITY]) — Suggested: /[workflow]
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## 6. ACTIVE SESSIONS (Rolling Buffer)
|
|
60
80
|
|
|
61
81
|
*Written by: `/log` after each session. Rolling 5-entry buffer — newest at top, oldest drops off. Gives the next session instant context without reading 3 Daily Notes.*
|
|
62
82
|
|
|
@@ -64,7 +84,7 @@
|
|
|
64
84
|
|
|
65
85
|
---
|
|
66
86
|
|
|
67
|
-
##
|
|
87
|
+
## 7. USER INJECTED CONTEXT (Brain Dump)
|
|
68
88
|
|
|
69
89
|
> **Instruction:** Use this section to dump anything on your mind. The AI will read this to understand your current state.
|
|
70
90
|
|
|
@@ -72,7 +92,7 @@
|
|
|
72
92
|
|
|
73
93
|
---
|
|
74
94
|
|
|
75
|
-
##
|
|
95
|
+
## 8. BACKLOG (Sidequest Queue)
|
|
76
96
|
|
|
77
97
|
> **Instruction:** Tasks that surface mid-session but don't belong on today's plan. `/plan-tomorrow` pulls from here. Never delete. Mark `[x]` when migrated to a Daily Note.
|
|
78
98
|
|
|
@@ -80,7 +100,7 @@
|
|
|
80
100
|
|
|
81
101
|
---
|
|
82
102
|
|
|
83
|
-
##
|
|
103
|
+
## 8.5 COMMITMENTS (Outbound Promises)
|
|
84
104
|
|
|
85
105
|
> **Instruction:** Things YOU promised to someone else. Different from Waiting For (inbound). `/plan-tomorrow` checks for due dates. `/log` detects promises from conversation. Never delete. Mark `[x]` when fulfilled.
|
|
86
106
|
|
|
@@ -88,7 +108,7 @@
|
|
|
88
108
|
|
|
89
109
|
---
|
|
90
110
|
|
|
91
|
-
##
|
|
111
|
+
## 9. SYSTEM PROTOCOLS (Agent Instructions)
|
|
92
112
|
|
|
93
113
|
**1. State Persistence:**
|
|
94
114
|
* Before starting any session, **READ THIS FILE**.
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
- [ ] I will actively `[[Link]]` Projects, Principles, and Strategies
|
|
18
18
|
- [ ] I will cite sources for every claim: `[file:line]` or `[INFERRED: reason]`
|
|
19
19
|
- [ ] **Engine file check:** At session end, flag any Engine files that changed and need version bump + commit.
|
|
20
|
+
- [ ] **Active_Context loaded:** Read `02_Areas/Engine/Active_Context.md` NOW. This is the system's ephemeral state — blockers, tactical state, session history, active patterns. Do not wait for a workflow to load it.
|
|
20
21
|
|
|
21
22
|
**Session Start:** Output `[Rules Loaded - DATE]` (e.g. `[Rules Loaded - 2026-02-20]`) to confirm date awareness.
|
|
22
23
|
|
|
@@ -89,16 +90,22 @@ Engine evolution: /history
|
|
|
89
90
|
| ~~/init-plan~~ | DEPRECATED: merged into `/ignite` Section 12 | - |
|
|
90
91
|
| ~~/project-notes~~ | DEPRECATED: merged into `/overview` Step 4 | - |
|
|
91
92
|
|
|
92
|
-
**Memory Hierarchy (
|
|
93
|
+
**Memory Hierarchy (Tiered Reads):**
|
|
94
|
+
|
|
95
|
+
**Deep workflows** (analyse-day, review-week, plan-tomorrow, setup, update, ignite, pivot-strategy) read the full stack AND update Active_Context cache sections (Identity Snapshot, Active Patterns) after processing:
|
|
93
96
|
|
|
94
97
|
| Priority | File | Purpose |
|
|
95
98
|
|----------|------|---------|
|
|
96
99
|
| P0 | Auto_Learnings.md | AI corrections & patterns |
|
|
97
|
-
| P1 | Active_Context.md | Where are we NOW? |
|
|
100
|
+
| P1 | Active_Context.md | Where are we NOW? (the cache layer) |
|
|
98
101
|
| P2 | Strategy.md | What are we testing? |
|
|
99
102
|
| P3 | Identity_Prime.md | Who are we? |
|
|
100
103
|
| P4 | project_state.md | Project-specific context |
|
|
101
|
-
| P5 | Today's Daily Note (if exists) + Yesterday's | Recent history
|
|
104
|
+
| P5 | Today's Daily Note (if exists) + Yesterday's | Recent history |
|
|
105
|
+
|
|
106
|
+
**Light workflows** (log, morning, debrief, overview, harvest, reboot, refactor-plan, walkthrough, history) read Active_Context + targeted files only. Active_Context contains Identity Snapshot (S5), Active Patterns (S5.5), Strategic Verdict (S1), and Active Sessions (S6) — sufficient for most operations. This saves 8-16k tokens per invocation.
|
|
107
|
+
|
|
108
|
+
**Freshness guarantee:** Deep workflows run daily (analyse-day every night, plan-tomorrow every morning). They update Active_Context's cache sections. If Active_Context is stale (>2 days), any workflow must flag it and suggest running `/analyse-day`.
|
|
102
109
|
|
|
103
110
|
**AI Tooling (Platform Runtime):**
|
|
104
111
|
|
|
@@ -312,7 +319,7 @@ These triggers fire during EVERY conversation, not just workflows. **DETECT > WR
|
|
|
312
319
|
|---------|---------------|---------------|
|
|
313
320
|
| User reports action | "I did it", "just finished", "sent it", "got back from" | Daily Note `## Log` + mark `[x]` in plan.md if applicable |
|
|
314
321
|
| Decision made | "Let's go with X", "I've decided", agreement on direction | Relevant file (plan.md, project_state.md, Active_Context) |
|
|
315
|
-
| Commitment made | "I'll send", "I promised", "by Friday" | Active_Context `##
|
|
322
|
+
| Commitment made | "I'll send", "I promised", "by Friday" | Active_Context `## 8.5 COMMITMENTS` |
|
|
316
323
|
| Waiting on someone | "He said he'd", "waiting on", "they'll get back to me" | Active_Context `## 3.5 WAITING FOR` |
|
|
317
324
|
| Idea killed | "We're not doing X", "scrap that", "dead idea" | Active_Context `## 2. THE GRAVEYARD` |
|
|
318
325
|
| URL/content pasted | Link to article, video, tweet, reel | Ask: "Capture to Library/Inputs?" then write on confirmation |
|
|
@@ -28,7 +28,7 @@ LOAD (Memory Hierarchy):
|
|
|
28
28
|
5. Mover_Dossier.md (P3)
|
|
29
29
|
6. Last 3 Daily Notes (P5) — yesterday + 2 days before, needed for multi-day pattern detection. Delegate reading to subagents (model: haiku) to keep main context clean. Extract: task completion rates, energy patterns, carry-over tasks, session log signals.
|
|
30
30
|
7. Active project's `project_state.md` (P4) — get project path from Active_Context `## 4. TECHNICAL CONTEXT`. Read current phase, blockers, last milestone. Proactive load, not reactive.
|
|
31
|
-
8. Active_Context `##
|
|
31
|
+
8. Active_Context `## 6. ACTIVE SESSIONS` — rolling session buffer for operational context on recent work.
|
|
32
32
|
|
|
33
33
|
CONSTRAINTS:
|
|
34
34
|
- All verdicts grounded in log data, not assumptions
|
|
@@ -67,7 +67,7 @@ Read these files and extract the map:
|
|
|
67
67
|
|
|
68
68
|
**From Strategy.md:** Primary Metric, Hypothesis, Daily Volume Targets, Variables, Constants.
|
|
69
69
|
**From Identity_Prime.md:** Core Identity, Anti-Identity triggers, Non-negotiables.
|
|
70
|
-
**From Active_Context.md:** Current project, phase, blockers, energy. Also read `##
|
|
70
|
+
**From Active_Context.md:** Current project, phase, blockers, energy. Also read `## 6. ACTIVE SESSIONS` for operational context on what was worked on across recent sessions.
|
|
71
71
|
**From Auto_Learnings.md:** Last 5 entries. Cross-reference with today's log.
|
|
72
72
|
**From Daily Note:** Full content, especially Session Log and task list.
|
|
73
73
|
|
|
@@ -333,8 +333,10 @@ At end of analysis, propose Active_Context.md updates:
|
|
|
333
333
|
3. Energy Level and trend (improving/declining/stable)
|
|
334
334
|
4. Key decisions made today (if significant: create `03_Library/Entities/Decisions/[YYYY-MM-DD]-[Topic].md`)
|
|
335
335
|
5. Any project scope changes or pivots
|
|
336
|
-
6. Commitments check: "Did you promise anything to anyone today?" If yes, add to `##
|
|
336
|
+
6. Commitments check: "Did you promise anything to anyone today?" If yes, add to `## 8.5 COMMITMENTS`.
|
|
337
337
|
7. Brain dump (ask: "Anything else on your mind before we close?")
|
|
338
|
+
8. **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.
|
|
339
|
+
9. **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.
|
|
338
340
|
|
|
339
341
|
"Based on today's analysis, I'd like to update Active_Context.md with: [Changes]. Approve?"
|
|
340
342
|
|
package/src/workflows/debrief.md
CHANGED
|
@@ -21,9 +21,8 @@ git rev-parse --show-toplevel
|
|
|
21
21
|
```
|
|
22
22
|
Save as VAULT_ROOT.
|
|
23
23
|
|
|
24
|
-
LOAD (
|
|
25
|
-
1. Active_Context.md (
|
|
26
|
-
2. Strategy.md (P2)
|
|
24
|
+
LOAD (Light — Active_Context is the cache):
|
|
25
|
+
1. Active_Context.md (has Strategic Verdict S1 for strategy context, Waiting For S3.5, Commitments S8.5)
|
|
27
26
|
|
|
28
27
|
CONSTRAINTS:
|
|
29
28
|
- All extractions must cite the source text
|
|
@@ -82,7 +81,7 @@ Anything YOU promised to deliver to someone. For each:
|
|
|
82
81
|
- **To whom:** The person
|
|
83
82
|
- **By when:** Deadline if stated
|
|
84
83
|
|
|
85
|
-
→ Active_Context.md `##
|
|
84
|
+
→ Active_Context.md `## 8.5 COMMITMENTS`
|
|
86
85
|
|
|
87
86
|
### 2D. Waiting For (Inbound Dependencies)
|
|
88
87
|
|
|
@@ -149,7 +148,7 @@ After confirmation, write each extraction to its destination:
|
|
|
149
148
|
|
|
150
149
|
1. **Your actions** → Append to today's Daily Note `## Tasks` (or Active_Context Backlog if no Daily Note)
|
|
151
150
|
2. **Waiting For** → Append to Active_Context.md `## 3.5 WAITING FOR`
|
|
152
|
-
3. **Commitments** → Append to Active_Context.md `##
|
|
151
|
+
3. **Commitments** → Append to Active_Context.md `## 8.5 COMMITMENTS`
|
|
153
152
|
4. **Decisions** → Create `03_Library/Entities/Decisions/[YYYY-MM-DD]-[Topic].md`
|
|
154
153
|
5. **People stubs** → Create `03_Library/Entities/People/[Name].md` (only if they don't already exist)
|
|
155
154
|
6. **Key info** → Append to Daily Note `## Log`
|
|
@@ -15,12 +15,11 @@ description: Debug psychological resistance through multi-step interrogation. Is
|
|
|
15
15
|
|
|
16
16
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
17
17
|
|
|
18
|
-
LOAD:
|
|
19
|
-
1.
|
|
20
|
-
2.
|
|
21
|
-
3.
|
|
22
|
-
|
|
23
|
-
5. Today's Daily Note (if exists)
|
|
18
|
+
LOAD (Light + Identity — Active_Context is the cache):
|
|
19
|
+
1. Active_Context.md (has Active Patterns S5.5 for recurring patterns, Strategic Verdict S1, Identity Snapshot S5)
|
|
20
|
+
2. Identity_Prime.md (FULL — needed for Step 4 Inversion: Anti-Identity specifics, evolved identity framing)
|
|
21
|
+
3. Today's Daily Note (if exists)
|
|
22
|
+
NOTE: Active Patterns S5.5 provides pattern check (Step 1). Identity_Prime is the exception — debug-resistance needs the full psychology file for the Inversion step, not just the snapshot. If Active_Context is stale (>2 days), flag it and suggest /analyse-day first.
|
|
24
23
|
|
|
25
24
|
CONSTRAINTS:
|
|
26
25
|
- Be direct but empathetic
|
package/src/workflows/harvest.md
CHANGED
|
@@ -16,10 +16,9 @@ description: Extract permanent knowledge from any source to Library. Classify, f
|
|
|
16
16
|
|
|
17
17
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
18
18
|
|
|
19
|
-
LOAD:
|
|
20
|
-
1.
|
|
21
|
-
2.
|
|
22
|
-
3. The project's project_state.md (P4)
|
|
19
|
+
LOAD (Light — Active_Context is the cache):
|
|
20
|
+
1. Active_Context.md (has Active Patterns S5.5 for correction context)
|
|
21
|
+
2. The project's project_state.md (P4 — Solutions Ledger is the primary harvest source)
|
|
23
22
|
|
|
24
23
|
CONSTRAINTS:
|
|
25
24
|
- Read Library directory headers BEFORE creating any new file [Mover_Global_Rules.md: S14]
|
package/src/workflows/log.md
CHANGED
|
@@ -41,12 +41,11 @@ Example: `{VAULT_ROOT}/02_Areas/Engine/Dailies/2026-02/Daily - 2026-02-20.md`
|
|
|
41
41
|
NOTE: Daily notes are in MONTH SUBFOLDERS, not in `Dailies/` root. Never search `Dailies/Daily - *.md` directly.
|
|
42
42
|
NOTE: Always use VAULT_ROOT prefix. You may be inside a project subdirectory — relative paths will resolve wrong.
|
|
43
43
|
|
|
44
|
-
LOAD (
|
|
45
|
-
1.
|
|
46
|
-
2.
|
|
47
|
-
3.
|
|
48
|
-
4.
|
|
49
|
-
5. Yesterday's Daily Note (P5) — 1 note sufficient for session context
|
|
44
|
+
LOAD (Light — Active_Context is the cache):
|
|
45
|
+
1. Active_Context.md (has Identity Snapshot S5, Active Patterns S5.5, Strategic Verdict S1, Active Sessions S6)
|
|
46
|
+
2. Today's Daily Note
|
|
47
|
+
3. Active project's plan.md (for task sync)
|
|
48
|
+
4. Auto_Learnings.md — ONLY if Step 10 triggers (user correction detected). Do NOT pre-load.
|
|
50
49
|
|
|
51
50
|
CONSTRAINTS:
|
|
52
51
|
- All claims grounded in session history or source files
|
|
@@ -107,7 +106,7 @@ Scan the entire conversation. Extract:
|
|
|
107
106
|
7. **Sidequest Tasks:** Any "need to," "should," "want to" tasks mentioned but NOT on today's plan. These go to Active_Context.md `## 8. BACKLOG`.
|
|
108
107
|
8. **Waiting For:** Any "waiting on [person]," "sent to [name]," "DM'd/emailed [X]" — extract and add to Active_Context.md `## 3.5 WAITING FOR` with estimated date if mentioned.
|
|
109
108
|
9. **Someday/Maybe:** Any "one day I'd like to," "could be interesting," "not now but maybe" — add to `02_Areas/Engine/Someday_Maybe.md` under the appropriate section.
|
|
110
|
-
10. **Commitments:** Any "I'll send," "I promised," "I told [name] I would," "by [day]" — outbound promises to others. These go to Active_Context.md `##
|
|
109
|
+
10. **Commitments:** Any "I'll send," "I promised," "I told [name] I would," "by [day]" — outbound promises to others. These go to Active_Context.md `## 8.5 COMMITMENTS`.
|
|
111
110
|
11. **Decisions:** Any major decision made this session (strategy change, tool choice, architectural call, commitment to a direction). Create a note in `03_Library/Entities/Decisions/` using the template. Only for significant calls, not micro-decisions.
|
|
112
111
|
12. **Reading/Input:** Any "I read," "I watched," "I listened to," content pasted from articles/books/threads — capture source and key takeaway to `03_Library/Inputs/` (Articles/, Books/, or Videos/ subfolder using templates).
|
|
113
112
|
13. **Plan Overrides:** Any moment where the user worked on something that contradicted today's plan, Single Test, or Sacrifice. Log as: `[OVERRIDE] User chose [what] over [plan item]. Reason: "[stated reason or NONE if no reason given]"`. Count total overrides. `/analyse-day` uses these to score strategic alignment.
|
|
@@ -222,14 +221,14 @@ If no project_state.md in scope: skip this step.
|
|
|
222
221
|
|
|
223
222
|
**Someday/Maybe** (Step 3.9 items): Append to `02_Areas/Engine/Someday_Maybe.md` under the correct section.
|
|
224
223
|
|
|
225
|
-
**Commitments** (Step 3.10 items): Append to Active_Context.md `##
|
|
224
|
+
**Commitments** (Step 3.10 items): Append to Active_Context.md `## 8.5 COMMITMENTS`:
|
|
226
225
|
`- [ ] [What you promised] — [To: name] — [Due by: date or TBD] — [Added: YYYY-MM-DD]`
|
|
227
226
|
|
|
228
227
|
**Decisions** (Step 3.11 items): Create `03_Library/Entities/Decisions/[YYYY-MM-DD]-[Topic].md` using the Decisions template. Fill: Decision, Context, Alternatives Considered, Reasoning. Leave Outcome Tracking for future review.
|
|
229
228
|
|
|
230
229
|
**Reading** (Step 3.12 items): Create note in `03_Library/Inputs/Articles/` (or Books/Videos/) using the subfolder template. Fill: Source, Author, Key Takeaways. Add `> **Up:** [[Inputs MOC]]`.
|
|
231
230
|
|
|
232
|
-
**Active Sessions** buffer: Prepend a 1-line summary to Active_Context.md `##
|
|
231
|
+
**Active Sessions** buffer: Prepend a 1-line summary to Active_Context.md `## 6. ACTIVE SESSIONS`:
|
|
233
232
|
`* **[YYYY-MM-DD HH:MM]:** [1-line session summary — what was done, key outcome]`
|
|
234
233
|
Keep only the 5 most recent entries. If > 5: remove the oldest.
|
|
235
234
|
|
package/src/workflows/morning.md
CHANGED
|
@@ -16,12 +16,10 @@ description: Quick primer to start a work session. Read Identity, set Single Tes
|
|
|
16
16
|
|
|
17
17
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
18
18
|
|
|
19
|
-
LOAD (
|
|
20
|
-
1.
|
|
21
|
-
2.
|
|
22
|
-
|
|
23
|
-
4. Identity_Prime.md (P3)
|
|
24
|
-
5. Today's Daily Note (if exists)
|
|
19
|
+
LOAD (Light — Active_Context is the cache):
|
|
20
|
+
1. Active_Context.md (has Identity Snapshot S5, Active Patterns S5.5, Strategic Verdict S1, Active Sessions S6)
|
|
21
|
+
2. Today's Daily Note (if exists)
|
|
22
|
+
NOTE: Identity Snapshot in Active_Context S5 provides Archetype, Core Drive, Anti-Identity, and Ritual for the morning prime. Active Patterns S5.5 provides pattern alerts. Strategic Verdict S1 provides the Primary Metric for Single Test. If Active_Context is stale (>2 days), flag it and suggest /analyse-day first.
|
|
25
23
|
|
|
26
24
|
CONSTRAINTS:
|
|
27
25
|
- Keep this fast: 5 minutes max
|
|
@@ -15,12 +15,10 @@ description: Project context refresh. Shows current state, processes notes, flag
|
|
|
15
15
|
|
|
16
16
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
17
17
|
|
|
18
|
-
LOAD (
|
|
19
|
-
1.
|
|
20
|
-
2.
|
|
21
|
-
|
|
22
|
-
4. Identity_Prime.md (P3 - summary)
|
|
23
|
-
5. Yesterday's Daily Note (P5) — 1 note sufficient for project context
|
|
18
|
+
LOAD (Light — Active_Context is the cache):
|
|
19
|
+
1. Active_Context.md (has Strategic Verdict S1, Technical Context S4, Active Sessions S6)
|
|
20
|
+
2. Active project's plan.md, project_state.md, project_brief.md (Step 2 reads)
|
|
21
|
+
NOTE: Strategy context comes from Active_Context S1. If Active_Context is stale (>2 days), flag it and suggest /analyse-day first.
|
|
24
22
|
|
|
25
23
|
CONSTRAINTS:
|
|
26
24
|
- All claims grounded in project files
|
|
@@ -27,7 +27,7 @@ LOAD (Memory Hierarchy):
|
|
|
27
27
|
6. Goals.md (if exists)
|
|
28
28
|
7. Last 3-5 Daily Notes (P5)
|
|
29
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 `##
|
|
30
|
+
9. Active_Context `## 6. ACTIVE SESSIONS` — rolling session buffer for operational awareness of recent work across sessions.
|
|
31
31
|
|
|
32
32
|
CONSTRAINTS:
|
|
33
33
|
- All task selections grounded in Strategy.md or Identity_Prime.md
|
|
@@ -99,7 +99,7 @@ Every single incomplete task MUST appear in tomorrow's plan unless the user expl
|
|
|
99
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
100
|
|
|
101
101
|
### 3B. Backlog Sweep
|
|
102
|
-
Read Active_Context.md `##
|
|
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
103
|
|
|
104
104
|
### 3B.5 Waiting For Check
|
|
105
105
|
Read Active_Context.md `## 3.5 WAITING FOR` section. Any items where "Expected by" date is tomorrow or earlier?
|
|
@@ -107,7 +107,7 @@ Read Active_Context.md `## 3.5 WAITING FOR` section. Any items where "Expected b
|
|
|
107
107
|
- Add a follow-up task to the plan if the item is overdue and actionable.
|
|
108
108
|
|
|
109
109
|
### 3C. Commitments Check
|
|
110
|
-
Read Active_Context.md `##
|
|
110
|
+
Read Active_Context.md `## 8.5 COMMITMENTS` section. Any items where "Due by" date is tomorrow or earlier?
|
|
111
111
|
- Flag due items: "COMMITMENT DUE: You promised [X] to [person] by [date]. Add to plan?"
|
|
112
112
|
- Add a task to the plan for due commitments. These are promises to people, not optional.
|
|
113
113
|
|
package/src/workflows/primer.md
CHANGED
|
@@ -16,12 +16,10 @@ description: Quick primer to start a work session. Read Identity, set Single Tes
|
|
|
16
16
|
|
|
17
17
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
18
18
|
|
|
19
|
-
LOAD (
|
|
20
|
-
1.
|
|
21
|
-
2.
|
|
22
|
-
|
|
23
|
-
4. Identity_Prime.md (P3)
|
|
24
|
-
5. Today's Daily Note (if exists)
|
|
19
|
+
LOAD (Light — Active_Context is the cache):
|
|
20
|
+
1. Active_Context.md (has Identity Snapshot S5, Active Patterns S5.5, Strategic Verdict S1, Active Sessions S6)
|
|
21
|
+
2. Today's Daily Note (if exists)
|
|
22
|
+
NOTE: Identity Snapshot in Active_Context S5 provides Archetype, Core Drive, Anti-Identity, and Ritual for the morning prime. Active Patterns S5.5 provides pattern alerts. Strategic Verdict S1 provides the Primary Metric for Single Test. If Active_Context is stale (>2 days), flag it and suggest /analyse-day first.
|
|
25
23
|
|
|
26
24
|
CONSTRAINTS:
|
|
27
25
|
- Keep this fast: 5 minutes max
|
package/src/workflows/reboot.md
CHANGED
|
@@ -15,12 +15,10 @@ description: Emergency reboot when logs are stale (3+ days missing). Diagnose +
|
|
|
15
15
|
|
|
16
16
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
17
17
|
|
|
18
|
-
LOAD:
|
|
19
|
-
1.
|
|
20
|
-
2.
|
|
21
|
-
|
|
22
|
-
4. Identity_Prime.md (P3)
|
|
23
|
-
5. Last Daily Note (whenever it was)
|
|
18
|
+
LOAD (Light — Active_Context is the cache):
|
|
19
|
+
1. Active_Context.md (has Active Patterns S5.5 for recurring reboot patterns, Strategic Verdict S1 for primary metric, Identity Snapshot S5)
|
|
20
|
+
2. Last Daily Note (whenever it was)
|
|
21
|
+
NOTE: Active Patterns S5.5 provides reboot pattern check (Step 1). Strategic Verdict S1 provides primary metric for Step 4 prescription. If Active_Context is stale (>7 days), Step 6 will propose a rebuild. No need to pre-load Strategy or Identity — the cache is sufficient for emergency recovery.
|
|
24
22
|
|
|
25
23
|
CONSTRAINTS:
|
|
26
24
|
- This must be FAST. Under 15 minutes total.
|
|
@@ -17,12 +17,12 @@ In V4, this is typically triggered by the system (after `/pivot-strategy` or whe
|
|
|
17
17
|
|
|
18
18
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
19
19
|
|
|
20
|
-
LOAD:
|
|
21
|
-
1.
|
|
22
|
-
2.
|
|
23
|
-
3.
|
|
24
|
-
4.
|
|
25
|
-
|
|
20
|
+
LOAD (Light + Strategy — Active_Context is the cache):
|
|
21
|
+
1. Active_Context.md (has Active Patterns S5.5 for plan drift patterns, Strategic Verdict S1)
|
|
22
|
+
2. Strategy.md (FULL — needed for direct comparison: plan.md Architecture vs Strategy.md targets)
|
|
23
|
+
3. Current plan.md (READ ONLY first)
|
|
24
|
+
4. project_state.md (for changelog)
|
|
25
|
+
NOTE: Strategy.md is the exception — refactor-plan compares plan.md against Strategy.md changes directly. Active Patterns S5.5 provides drift pattern history. If Active_Context is stale (>2 days), flag it and suggest /analyse-day first.
|
|
26
26
|
|
|
27
27
|
CONSTRAINTS:
|
|
28
28
|
- SURGICAL EDITING. Never rewrite the entire file.
|
|
@@ -367,9 +367,11 @@ Always runs — Active_Context is always stale after a week.
|
|
|
367
367
|
3. Update "Current Phase" if shifted
|
|
368
368
|
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
|
|
369
369
|
5. Section 4 (Technical Context): if active project changed, update project name, path, and tech stack
|
|
370
|
-
6. Section
|
|
370
|
+
6. Section 6 (Active Sessions): verify buffer is current — trim to last 5 entries
|
|
371
371
|
7. Write workflow state: `weekly_review_last_run: [YYYY-MM-DD]`
|
|
372
372
|
8. If MONTHLY_MODE was true: also write `monthly_review_last_run: [YYYY-MM-DD]` to Workflow State
|
|
373
|
+
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.
|
|
374
|
+
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.
|
|
373
375
|
|
|
374
376
|
"Proposed Active_Context.md changes:
|
|
375
377
|
[DIFF FORMAT — only the lines that change, not the full file]
|
package/src/workflows/update.md
CHANGED
|
@@ -23,8 +23,9 @@ Save as VAULT_ROOT.
|
|
|
23
23
|
|
|
24
24
|
LOAD (Memory Hierarchy):
|
|
25
25
|
1. Auto_Learnings.md (P0)
|
|
26
|
-
2. Active_Context.md (P1) — read `## My Customizations` to understand what the user has changed. NEVER overwrite any workflow or rule that appears in this log.
|
|
26
|
+
2. Active_Context.md (P1) — read `## My Customizations` to understand what the user has changed. NEVER overwrite any workflow or rule that appears in this log. Also note current section structure (section numbers, headings) to detect renaming needs.
|
|
27
27
|
3. Identity_Prime.md (P3 — needed for migration gap detection)
|
|
28
|
+
4. Daily_Template.md — check for new sections (Food Log, Sleep Log) that may need adding
|
|
28
29
|
|
|
29
30
|
CONSTRAINTS:
|
|
30
31
|
- NEVER overwrite existing Engine file content
|
|
@@ -142,6 +143,15 @@ Read the file. Check for:
|
|
|
142
143
|
| `analyse_day_last_run` | V4.5 | Contains this key? |
|
|
143
144
|
| `log_last_run` | V4.5 | Contains this key? |
|
|
144
145
|
| `review_week_day` | V4 | Contains this key? |
|
|
146
|
+
| `setup_date` | V4.7 | Contains this key in Workflow State? |
|
|
147
|
+
| `monthly_review_last_run` | V4.7 | Contains this key in Workflow State? |
|
|
148
|
+
| WAITING FOR section (S3.5) | V4.7 | Contains "WAITING FOR" heading? |
|
|
149
|
+
| Identity Snapshot section (S5) | V4.7 | Contains "IDENTITY SNAPSHOT" heading? |
|
|
150
|
+
| Active Patterns section (S5.5) | V4.7 | Contains "ACTIVE PATTERNS" heading? |
|
|
151
|
+
| ACTIVE SESSIONS (was RECENT MEMORIES) | V4.7 | Contains "RECENT MEMORIES" heading? (needs rename) |
|
|
152
|
+
| Backlog section (S8) | V4.7 | Contains "BACKLOG" heading? |
|
|
153
|
+
| Commitments section (S8.5) | V4.7 | Contains "COMMITMENTS" heading? |
|
|
154
|
+
| My Customizations section | V4.7 | Contains "My Customizations" heading? |
|
|
145
155
|
|
|
146
156
|
### 3C. Strategy.md
|
|
147
157
|
|
|
@@ -264,6 +274,118 @@ WAIT FOR CONFIRMATION.
|
|
|
264
274
|
Append `review_week_day: [answer]` to the Workflow State section.
|
|
265
275
|
WAIT FOR CONFIRMATION.
|
|
266
276
|
|
|
277
|
+
### 5I. Waiting For Section (if missing in Active_Context.md)
|
|
278
|
+
|
|
279
|
+
No interview needed — structural section. Append after Section 3 (TACTICAL STATE):
|
|
280
|
+
|
|
281
|
+
```markdown
|
|
282
|
+
## 3.5 WAITING FOR
|
|
283
|
+
|
|
284
|
+
> **Instruction:** Things you've delegated or that depend on someone else. `/plan-tomorrow` checks this and flags anything overdue. Never delete — mark `[x]` when resolved.
|
|
285
|
+
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
"Adding 'Waiting For' section to Active_Context.md — tracks things you're waiting on from other people."
|
|
289
|
+
WAIT FOR CONFIRMATION.
|
|
290
|
+
|
|
291
|
+
### 5J. Identity Snapshot (if missing in Active_Context.md)
|
|
292
|
+
|
|
293
|
+
No interview needed — populated automatically by `/analyse-day` and `/review-week`. Append after Section 4:
|
|
294
|
+
|
|
295
|
+
```markdown
|
|
296
|
+
## 5. IDENTITY SNAPSHOT
|
|
297
|
+
|
|
298
|
+
*Written by: `/analyse-day`, `/review-week`, `/setup`. Condensed from Identity_Prime.md. Light workflows read this instead of the full file.*
|
|
299
|
+
|
|
300
|
+
- **Archetype:** [Run /analyse-day to populate]
|
|
301
|
+
- **Core Drive:** [Run /analyse-day to populate]
|
|
302
|
+
- **The Code:** [Run /analyse-day to populate]
|
|
303
|
+
- **Anti-Identity:** [Run /analyse-day to populate]
|
|
304
|
+
- **Current Ritual:** [Run /analyse-day to populate]
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
"Adding Identity Snapshot cache to Active_Context.md. This gets populated by `/analyse-day` so light workflows don't need to read the full Identity file."
|
|
308
|
+
WAIT FOR CONFIRMATION.
|
|
309
|
+
|
|
310
|
+
### 5K. Active Patterns (if missing in Active_Context.md)
|
|
311
|
+
|
|
312
|
+
No interview needed — populated automatically by `/analyse-day` and `/review-week`. Append after Identity Snapshot:
|
|
313
|
+
|
|
314
|
+
```markdown
|
|
315
|
+
## 5.5 ACTIVE PATTERNS
|
|
316
|
+
|
|
317
|
+
*Written by: `/analyse-day`, `/review-week`. Top patterns from Auto_Learnings.md at Confidence 3+. Light workflows read this instead of the full file.*
|
|
318
|
+
|
|
319
|
+
- [Run /analyse-day to populate from Auto_Learnings.md]
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
"Adding Active Patterns cache. Gets populated automatically from your Auto_Learnings.md."
|
|
323
|
+
WAIT FOR CONFIRMATION.
|
|
324
|
+
|
|
325
|
+
### 5L. RECENT MEMORIES → ACTIVE SESSIONS Rename (if old heading found)
|
|
326
|
+
|
|
327
|
+
If the file contains `## 5. RECENT MEMORIES` or any heading with "RECENT MEMORIES":
|
|
328
|
+
|
|
329
|
+
Rename to `## 6. ACTIVE SESSIONS (Rolling Buffer)`. Keep ALL existing content under the section.
|
|
330
|
+
|
|
331
|
+
"Renaming 'Recent Memories' to 'Active Sessions' — same content, clearer name, new section number to make room for Identity Snapshot and Active Patterns above."
|
|
332
|
+
WAIT FOR CONFIRMATION.
|
|
333
|
+
|
|
334
|
+
### 5M. Backlog Section (if missing in Active_Context.md)
|
|
335
|
+
|
|
336
|
+
No interview needed — structural section. Append:
|
|
337
|
+
|
|
338
|
+
```markdown
|
|
339
|
+
## 8. BACKLOG (Sidequest Queue)
|
|
340
|
+
|
|
341
|
+
> **Instruction:** Tasks that surface mid-session but don't belong on today's plan. `/plan-tomorrow` pulls from here. Never delete. Mark `[x]` when migrated to a Daily Note.
|
|
342
|
+
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
"Adding Backlog section — a parking lot for tasks that surface mid-session."
|
|
346
|
+
WAIT FOR CONFIRMATION.
|
|
347
|
+
|
|
348
|
+
### 5N. Commitments Section (if missing in Active_Context.md)
|
|
349
|
+
|
|
350
|
+
No interview needed — structural section. Append:
|
|
351
|
+
|
|
352
|
+
```markdown
|
|
353
|
+
## 8.5 COMMITMENTS (Outbound Promises)
|
|
354
|
+
|
|
355
|
+
> **Instruction:** Things YOU promised to someone else. Different from Waiting For (inbound). `/plan-tomorrow` checks for due dates. `/log` detects promises from conversation. Never delete. Mark `[x]` when fulfilled.
|
|
356
|
+
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
"Adding Commitments section — tracks promises you've made to others."
|
|
360
|
+
WAIT FOR CONFIRMATION.
|
|
361
|
+
|
|
362
|
+
### 5O. My Customizations Section (if missing in Active_Context.md)
|
|
363
|
+
|
|
364
|
+
No interview needed — structural tracking section. Append:
|
|
365
|
+
|
|
366
|
+
```markdown
|
|
367
|
+
## My Customizations (Permanent Log)
|
|
368
|
+
|
|
369
|
+
> **Instruction:** Track your personal modifications to Mover OS here. The `/update` workflow reads this to avoid overwriting your customizations. Append-only — never delete.
|
|
370
|
+
|
|
371
|
+
| Date | File Modified | What Changed | Why |
|
|
372
|
+
| :--- | :--- | :--- | :--- |
|
|
373
|
+
| | | | |
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+
"Adding My Customizations log — this protects your personal modifications from being overwritten in future updates."
|
|
377
|
+
WAIT FOR CONFIRMATION.
|
|
378
|
+
|
|
379
|
+
### 5P. Workflow State Keys (if missing keys in existing Workflow State)
|
|
380
|
+
|
|
381
|
+
No interview needed. Add any missing keys to the existing Workflow State code block:
|
|
382
|
+
|
|
383
|
+
- `setup_date: [unknown]` (if missing)
|
|
384
|
+
- `monthly_review_last_run:` (if missing)
|
|
385
|
+
|
|
386
|
+
"Adding missing timestamp keys to your Workflow State section."
|
|
387
|
+
WAIT FOR CONFIRMATION.
|
|
388
|
+
|
|
267
389
|
### 5D. Goals.md (if file missing entirely)
|
|
268
390
|
|
|
269
391
|
"V4 added a Goals file. Let me derive your goals from your existing Identity and Strategy."
|
|
@@ -16,11 +16,9 @@ description: Guided tour of Mover OS after setup. Explains system, folders, work
|
|
|
16
16
|
|
|
17
17
|
Global Rules are pre-loaded as CLAUDE.md / GEMINI.md. Output `[Rules Loaded - DATE]`.
|
|
18
18
|
|
|
19
|
-
LOAD (
|
|
20
|
-
1.
|
|
21
|
-
|
|
22
|
-
3. Identity_Prime.md (P3 - to personalize the tour)
|
|
23
|
-
4. Strategy.md (P2 - to reference their goals)
|
|
19
|
+
LOAD (Light — Active_Context is the cache):
|
|
20
|
+
1. Active_Context.md (has Identity Snapshot S5 for personalization, Strategic Verdict S1 for goals, Active Patterns S5.5)
|
|
21
|
+
NOTE: Identity Snapshot S5 provides Archetype and Core Drive for personalizing examples. Strategic Verdict S1 provides current strategy for goal references. No need for full Identity/Strategy files — the tour needs context, not depth. If Active_Context is stale (>2 days), flag it and suggest /analyse-day first.
|
|
24
22
|
|
|
25
23
|
CONSTRAINTS:
|
|
26
24
|
- Personalize all examples to user's Identity and Strategy
|