mover-os 4.0.4 → 4.0.6
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 +24 -16
- package/package.json +1 -1
- package/src/hooks/session-log-reminder.sh +1 -1
package/install.js
CHANGED
|
@@ -1431,22 +1431,30 @@ async function main() {
|
|
|
1431
1431
|
|
|
1432
1432
|
ln(` ${bold("Next steps")}`);
|
|
1433
1433
|
ln();
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1434
|
+
if (updateMode) {
|
|
1435
|
+
ln(` ${cyan("1")} Open the vault folder in your AI agent`);
|
|
1436
|
+
ln(` ${dim("Updated: " + agentNames.join(", "))}`);
|
|
1437
|
+
ln();
|
|
1438
|
+
ln(` ${cyan("2")} Run ${bold("/update")}`);
|
|
1439
|
+
ln(` ${dim("Syncs your Engine with the latest version")}`);
|
|
1440
|
+
} else {
|
|
1441
|
+
ln(` ${cyan("1")} Open your vault in ${bold("Obsidian")}`);
|
|
1442
|
+
ln(` ${dim("This is where you view and browse your files")}`);
|
|
1443
|
+
ln();
|
|
1444
|
+
ln(` ${cyan("2")} Open the vault folder in your AI agent`);
|
|
1445
|
+
ln(` ${dim("Installed: " + agentNames.join(", "))}`);
|
|
1446
|
+
ln();
|
|
1447
|
+
ln(` ${cyan("3")} Enable the Obsidian theme`);
|
|
1448
|
+
ln(` ${dim("Settings → Appearance → CSS snippets → minimal-theme")}`);
|
|
1449
|
+
ln();
|
|
1450
|
+
ln(` ${cyan("4")} Run ${bold("/setup")}`);
|
|
1451
|
+
ln(` ${dim("Builds your Identity, Strategy, and Goals")}`);
|
|
1452
|
+
ln();
|
|
1453
|
+
ln(gray(" ─────────────────────────────────────"));
|
|
1454
|
+
ln();
|
|
1455
|
+
ln(` ${dim("Obsidian = view your files")}`);
|
|
1456
|
+
ln(` ${dim("Your AI agent = where you work")}`);
|
|
1457
|
+
}
|
|
1450
1458
|
ln();
|
|
1451
1459
|
ln(` ${dim("/morning → [work] → /log")}`);
|
|
1452
1460
|
ln(` ${dim("/analyse-day → /plan-tomorrow")}`);
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@ if [ -f "$PENDING_FILE" ]; then
|
|
|
36
36
|
fi
|
|
37
37
|
# Current time is the definitive post-compaction anchor
|
|
38
38
|
CURRENT_TS=$(date '+%Y-%m-%dT%H:%M')
|
|
39
|
-
echo "{\"decision\":\"block\",\"reason\":\"POST-COMPACTION AUTO-LOG: Context was just compacted. You MUST run the /log workflow now. Use the Skill tool to invoke skill 'log'. CONTEXT FOR /log: Current time: ${CURRENT_TS}. Pre-compaction ended: ${COMPACT_TS:-unknown}. Use these as timestamp anchors — do NOT estimate or project timestamps beyond ${CURRENT_TS}. Read the session summary at: ${SUMMARY_PATH} for what happened before compaction. Mark session log entries as [COMPACTED]. Skip Steps 3.7-3.13 (commitments, waiting-for, decisions, inputs) — these require full conversation context that may be lost in summarization.\"}"
|
|
39
|
+
echo "{\"decision\":\"block\",\"reason\":\"POST-COMPACTION AUTO-LOG: Context was just compacted. You MUST run the /log workflow now. Use the Skill tool to invoke skill 'log'. CONTEXT FOR /log: Current time: ${CURRENT_TS}. Pre-compaction ended: ${COMPACT_TS:-unknown}. Use these as timestamp anchors — do NOT estimate or project timestamps beyond ${CURRENT_TS}. Read the session summary at: ${SUMMARY_PATH} for what happened before compaction. Mark session log entries as [COMPACTED]. Skip Steps 3.7-3.13 (commitments, waiting-for, decisions, inputs) — these require full conversation context that may be lost in summarization. KEY STEPS the /log workflow will handle: (1) resolve vault root, (2) write session log to Daily Note, (3) update plan.md execution log, (4) update project_state.md (Solutions Ledger, Changelog, Snapshot), (5) update Active_Context sessions buffer + log_last_run, (6) git commit. If the Skill tool is unavailable, execute these steps manually.\"}"
|
|
40
40
|
exit 0
|
|
41
41
|
fi
|
|
42
42
|
fi
|