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 CHANGED
@@ -1431,22 +1431,30 @@ async function main() {
1431
1431
 
1432
1432
  ln(` ${bold("Next steps")}`);
1433
1433
  ln();
1434
- ln(` ${cyan("1")} Open your vault in ${bold("Obsidian")}`);
1435
- ln(` ${dim("This is where you view and browse your files")}`);
1436
- ln();
1437
- ln(` ${cyan("2")} Open the vault folder in your AI agent`);
1438
- ln(` ${dim("Installed: " + agentNames.join(", "))}`);
1439
- ln();
1440
- ln(` ${cyan("3")} Enable the Obsidian theme`);
1441
- ln(` ${dim("Settings Appearance CSS snippets → minimal-theme")}`);
1442
- ln();
1443
- ln(` ${cyan("4")} Run ${bold(command)}`);
1444
- ln(` ${dim(updateMode ? "Syncs your Engine with the latest version" : "Builds your Identity, Strategy, and Goals")}`);
1445
- ln();
1446
- ln(gray(" ─────────────────────────────────────"));
1447
- ln();
1448
- ln(` ${dim("Obsidian = view your files")}`);
1449
- ln(` ${dim("Your AI agent = where you work")}`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mover-os",
3
- "version": "4.0.4",
3
+ "version": "4.0.6",
4
4
  "description": "The self-improving OS for AI agents. Turns Obsidian into an execution engine.",
5
5
  "bin": {
6
6
  "mover-os": "install.js"
@@ -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