mover-os 4.7.8 → 4.7.9

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 (42) hide show
  1. package/README.md +34 -24
  2. package/install.js +2197 -200
  3. package/package.json +1 -1
  4. package/src/dashboard/build.js +41 -3
  5. package/src/dashboard/lib/active-context-parser.js +16 -4
  6. package/src/dashboard/lib/agent-session.js +70 -49
  7. package/src/dashboard/lib/approval-registry.js +170 -0
  8. package/src/dashboard/lib/daily-note-resolver.js +20 -3
  9. package/src/dashboard/lib/date-utils.js +9 -1
  10. package/src/dashboard/lib/distribution-parser.js +69 -10
  11. package/src/dashboard/lib/drift-history.js +6 -1
  12. package/src/dashboard/lib/engine-default-fingerprints.json +53 -0
  13. package/src/dashboard/lib/engine-health.js +4 -1
  14. package/src/dashboard/lib/engine-writer.js +157 -11
  15. package/src/dashboard/lib/goal-forecast.js +154 -31
  16. package/src/dashboard/lib/library-indexer-v2.js +14 -0
  17. package/src/dashboard/lib/library-search.js +290 -0
  18. package/src/dashboard/lib/log-activation.sh +0 -0
  19. package/src/dashboard/lib/memory-index.js +61 -12
  20. package/src/dashboard/lib/pid-markers.js +80 -0
  21. package/src/dashboard/lib/regenerate-manifest.js +0 -0
  22. package/src/dashboard/lib/run-registry.js +75 -15
  23. package/src/dashboard/lib/state-core/backfill.js +298 -0
  24. package/src/dashboard/lib/state-core/dryrun.js +188 -0
  25. package/src/dashboard/lib/state-core/event-log.js +615 -0
  26. package/src/dashboard/lib/state-core/events.js +265 -0
  27. package/src/dashboard/lib/state-core/projections.js +376 -0
  28. package/src/dashboard/lib/state-core/start-close.js +162 -0
  29. package/src/dashboard/lib/state-core/trial.js +96 -0
  30. package/src/dashboard/lib/strategy-parser.js +3 -0
  31. package/src/dashboard/lib/suggested-now.js +2 -2
  32. package/src/dashboard/lib/transcript-parser.js +48 -8
  33. package/src/dashboard/server.js +422 -44
  34. package/src/dashboard/shortcut.js +0 -0
  35. package/src/dashboard/ui/dist/assets/index-ByVKPvLf.js +34 -0
  36. package/src/dashboard/ui/dist/assets/index-CCoKjUcC.js +161 -0
  37. package/src/dashboard/ui/dist/assets/index-CZWNQDt5.css +1 -0
  38. package/src/dashboard/ui/dist/index.html +2 -2
  39. package/src/dashboard/ui/dist/sw.js +1 -1
  40. package/src/dashboard/ui/dist/assets/index-598CSGOZ.js +0 -157
  41. package/src/dashboard/ui/dist/assets/index-BP--M69H.css +0 -1
  42. package/src/dashboard/ui/dist/assets/index-CidzmwSW.js +0 -34
package/README.md CHANGED
@@ -8,7 +8,7 @@ Mover OS turns Obsidian into an AI-powered execution engine. It audits your beha
8
8
 
9
9
  **Works best with Claude Code.** Supports 15 AI agents.
10
10
 
11
- **Version:** 4.3 | **Status:** Production
11
+ **Version:** 4.7.9 | **Status:** Production
12
12
 
13
13
  ---
14
14
 
@@ -22,7 +22,7 @@ Mover OS turns Obsidian into an AI-powered execution engine. It audits your beha
22
22
  - **Escalating Friction** — 4 levels of pushback when you drift from your plan. Speed bumps, not walls.
23
23
  - **Correction Lifecycle** — Correct the AI and it proposes a fix, waits for approval, and updates its own rules.
24
24
  - **Entity Memory** — Remembers people, organizations, and decisions across sessions.
25
- - **23 Connected Workflows** — Each one hands off to the next. You never wonder what to do next.
25
+ - **25 Connected Workflows** — Each one hands off to the next. You never wonder what to do next.
26
26
 
27
27
  ---
28
28
 
@@ -37,7 +37,7 @@ Mover OS turns Obsidian into an AI-powered execution engine. It audits your beha
37
37
  ### Quick Start
38
38
 
39
39
  ```bash
40
- npx moveros
40
+ npx mover-os
41
41
  ```
42
42
 
43
43
  The interactive installer will:
@@ -51,13 +51,21 @@ The interactive installer will:
51
51
 
52
52
  ### After Install
53
53
 
54
- Open your vault in Obsidian and your AI agent, then run:
54
+ The installer opens your dashboard automatically setup starts there. It runs a short interview and builds your Identity, Strategy, Dossier, and Goals, showing you everything before it writes a single file.
55
+
56
+ Come back to the dashboard anytime with:
55
57
 
56
58
  ```
57
- /setup
59
+ npx mover-os
58
60
  ```
59
61
 
60
- This launches a deep interview that builds your Identity, Strategy, Dossier, and Goals.
62
+ (Just `moveros` if you installed globally with `npm i -g mover-os`.)
63
+
64
+ Want a Desktop icon? Run `moveros shortcut` to create a double-clickable launcher (macOS app, Windows shortcut, or Linux desktop entry) that opens your dashboard.
65
+
66
+ On a Mac? Run `moveros menubar` for a native menu-bar status app (zero third-party dependencies) that shows your next action at a glance.
67
+
68
+ Prefer the terminal? Open your vault in your AI agent and run `/setup` instead — same interview, same files. Obsidian is optional: it's the nicest way to read what the system writes.
61
69
 
62
70
  ### Migrating an Existing Vault?
63
71
 
@@ -74,7 +82,7 @@ This scans your folders, suggests where everything should go, and copies files i
74
82
  Update without losing your Engine data:
75
83
 
76
84
  ```bash
77
- npx moveros
85
+ npx mover-os
78
86
  ```
79
87
 
80
88
  Choose "Update" mode. Your Engine files (Identity, Strategy, Dossier, etc.) are never overwritten.
@@ -93,23 +101,25 @@ bash src/install/link.sh
93
101
 
94
102
  Works with **15 AI agents.** The installer auto-detects and configures each one:
95
103
 
104
+ <!-- GENERATED:agents-table (stamped from AGENT_REGISTRY by scripts/generate-docs.mjs; edit install.js, not this table) -->
96
105
  | Agent | What Gets Installed |
97
106
  |-------|---------------------|
98
- | Claude Code | Rules + 24 commands + 65 skills + 18 hooks |
99
- | Cursor | Rules + 24 commands + 65 skills |
100
- | Cline | Rules + 65 skills |
101
- | Windsurf | Rules + 65 skills |
102
- | Gemini CLI | Rules + 24 workflows + 65 skills |
103
- | GitHub Copilot | Rules + 65 skills |
104
- | Codex | Rules + 65 skills |
105
- | Antigravity | Rules + 24 workflows |
106
- | Amazon Q | Rules + 65 skills |
107
- | OpenCode | Rules + 65 skills |
108
- | Kilo Code | Rules + 65 skills |
109
- | Amp | Rules + 65 skills |
110
- | Roo Code | Rules + 65 skills |
111
- | Continue.dev | Rules + 65 skills |
107
+ | Claude Code | Rules + 25 commands + 71 skills + 18 hooks |
108
+ | Cursor | Rules + 25 commands + 71 skills + hooks |
109
+ | Cline | Rules + 71 skills |
110
+ | Windsurf | Rules + 25 workflows + 71 skills + hooks |
111
+ | Gemini CLI | Rules + 25 workflows + 71 skills + 5 hooks |
112
+ | Antigravity | Rules + 25 workflows + 71 skills |
113
+ | GitHub Copilot | Rules + 25 prompts + 71 skills |
114
+ | Codex | Rules + 71 skills + 13 hooks |
115
+ | Amazon Q Developer | Rules + 25 commands |
116
+ | OpenCode | Rules + 71 skills |
117
+ | Kilo Code | Rules + 25 commands + 71 skills |
118
+ | Amp (Sourcegraph) | Rules + 71 skills |
119
+ | Roo Code | Rules + 25 commands + 71 skills |
120
+ | Continue.dev | Rules + 25 prompts |
112
121
  | Aider | Rules |
122
+ <!-- /GENERATED:agents-table -->
113
123
 
114
124
  > Claude Code gets the deepest integration — hooks, native slash commands, and the full correction lifecycle. Every other agent gets the core system.
115
125
 
@@ -198,10 +208,10 @@ Your `02_Areas/Engine/` folder is the brain. Core files that the AI reads before
198
208
  ```
199
209
  Mover OS Bundle/
200
210
  src/
201
- workflows/ # 23 AI command handlers (markdown)
211
+ workflows/ # 25 AI command handlers (markdown)
202
212
  system/ # Global Rules + Install Manifest
203
- hooks/ # 18 hook files (11 registered in settings.json)
204
- skills/ # 62 curated skill packs
213
+ hooks/ # 22 hook files (18 registered in settings.json)
214
+ skills/ # 71 curated skill packs
205
215
  install/ # link.sh (hard-link re-linker)
206
216
  structure/ # Vault template (PARA + Engine)
207
217
  ```