mover-os 4.7.7 → 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.
- package/README.md +34 -24
- package/install.js +2868 -251
- package/package.json +15 -3
- package/src/dashboard/build.js +1541 -0
- package/src/dashboard/dashboard.js +276 -0
- package/src/dashboard/index.js +319 -0
- package/src/dashboard/lib/activation-log.js +297 -0
- package/src/dashboard/lib/active-context-parser.js +189 -0
- package/src/dashboard/lib/agent-command.js +93 -0
- package/src/dashboard/lib/agent-detect.js +255 -0
- package/src/dashboard/lib/agent-detector.js +92 -0
- package/src/dashboard/lib/agent-session.js +483 -0
- package/src/dashboard/lib/anti-identity-detector.js +116 -0
- package/src/dashboard/lib/approval-registry.js +170 -0
- package/src/dashboard/lib/auto-learnings-parser.js +183 -0
- package/src/dashboard/lib/cli-usage-parser.js +92 -0
- package/src/dashboard/lib/config-parser.js +109 -0
- package/src/dashboard/lib/connect-recommender.js +131 -0
- package/src/dashboard/lib/correlations-parser.js +231 -0
- package/src/dashboard/lib/daily-note-resolver.js +228 -0
- package/src/dashboard/lib/date-utils.js +43 -0
- package/src/dashboard/lib/distribution-parser.js +137 -0
- package/src/dashboard/lib/dossier-parser.js +64 -0
- package/src/dashboard/lib/drift-history.js +88 -0
- package/src/dashboard/lib/drift-score.js +119 -0
- package/src/dashboard/lib/engine-default-fingerprints.json +53 -0
- package/src/dashboard/lib/engine-health.js +173 -0
- package/src/dashboard/lib/engine-writer.js +1831 -0
- package/src/dashboard/lib/execution-plan.js +125 -0
- package/src/dashboard/lib/experiments-parser.js +429 -0
- package/src/dashboard/lib/feed-parser.js +294 -0
- package/src/dashboard/lib/forked-future.js +60 -0
- package/src/dashboard/lib/goal-forecast.js +427 -0
- package/src/dashboard/lib/goals-parser.js +67 -0
- package/src/dashboard/lib/health-protocols-parser.js +133 -0
- package/src/dashboard/lib/hook-activity.js +48 -0
- package/src/dashboard/lib/hook-indexer.js +169 -0
- package/src/dashboard/lib/hourly-activity-parser.js +143 -0
- package/src/dashboard/lib/identity-parser.js +85 -0
- package/src/dashboard/lib/ingestion.js +418 -0
- package/src/dashboard/lib/library-indexer-v2.js +226 -0
- package/src/dashboard/lib/library-indexer.js +105 -0
- package/src/dashboard/lib/library-search.js +290 -0
- package/src/dashboard/lib/log-activation.sh +61 -0
- package/src/dashboard/lib/memory-curator.js +97 -0
- package/src/dashboard/lib/memory-gardener.js +177 -0
- package/src/dashboard/lib/memory-gepa.js +102 -0
- package/src/dashboard/lib/memory-index.js +519 -0
- package/src/dashboard/lib/memory-rerank.js +72 -0
- package/src/dashboard/lib/memory-text.js +136 -0
- package/src/dashboard/lib/metrics-log-parser.js +76 -0
- package/src/dashboard/lib/moves-usage-parser.js +184 -0
- package/src/dashboard/lib/onboarding-forge.js +70 -0
- package/src/dashboard/lib/override-outcome-parser.js +68 -0
- package/src/dashboard/lib/override-summary.js +73 -0
- package/src/dashboard/lib/paths.js +192 -0
- package/src/dashboard/lib/pattern-manifest-loader.js +29 -0
- package/src/dashboard/lib/phantom-strategy.js +129 -0
- package/src/dashboard/lib/pid-markers.js +80 -0
- package/src/dashboard/lib/project-scanner.js +121 -0
- package/src/dashboard/lib/promise-wall.js +88 -0
- package/src/dashboard/lib/record-score.js +173 -0
- package/src/dashboard/lib/redaction.js +140 -0
- package/src/dashboard/lib/refusal-parser.js +44 -0
- package/src/dashboard/lib/regenerate-manifest.js +206 -0
- package/src/dashboard/lib/rewind-snapshots.js +689 -0
- package/src/dashboard/lib/roast-wall-parser.js +200 -0
- package/src/dashboard/lib/run-registry.js +286 -0
- package/src/dashboard/lib/safe-write.js +63 -0
- package/src/dashboard/lib/session-log-parser.js +145 -0
- package/src/dashboard/lib/session-time-parser.js +158 -0
- package/src/dashboard/lib/skill-index.js +171 -0
- package/src/dashboard/lib/skill-indexer.js +118 -0
- package/src/dashboard/lib/skill-recommender.js +689 -0
- package/src/dashboard/lib/state-core/backfill.js +298 -0
- package/src/dashboard/lib/state-core/dryrun.js +188 -0
- package/src/dashboard/lib/state-core/event-log.js +615 -0
- package/src/dashboard/lib/state-core/events.js +265 -0
- package/src/dashboard/lib/state-core/projections.js +376 -0
- package/src/dashboard/lib/state-core/start-close.js +162 -0
- package/src/dashboard/lib/state-core/trial.js +96 -0
- package/src/dashboard/lib/strategy-parser.js +248 -0
- package/src/dashboard/lib/strategy-protocol-parser.js +135 -0
- package/src/dashboard/lib/streak-parser.js +95 -0
- package/src/dashboard/lib/suggested-now.js +254 -0
- package/src/dashboard/lib/tool-awareness.js +125 -0
- package/src/dashboard/lib/transcript-parser.js +371 -0
- package/src/dashboard/lib/vault-graph-parser.js +205 -0
- package/src/dashboard/lib/view-generator.js +163 -0
- package/src/dashboard/lib/voice-dna-parser.js +57 -0
- package/src/dashboard/lib/walkthrough-script.js +140 -0
- package/src/dashboard/lib/workflow-graph-parser.js +170 -0
- package/src/dashboard/lib/workflow-library-parser.js +146 -0
- package/src/dashboard/server.js +2402 -0
- package/src/dashboard/shortcut.js +284 -0
- package/src/dashboard/static/setup-poc.html +306 -0
- package/src/dashboard/static/walkthrough-poc.html +580 -0
- package/src/dashboard/styles.css +1201 -0
- package/src/dashboard/templates/index.html +278 -0
- package/src/dashboard/ui/dist/assets/hanken-grotesk-latin-ext-wght-normal-Dg-wlmqe.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/hanken-grotesk-latin-wght-normal-CaVRRdDk.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/hanken-grotesk-vietnamese-wght-normal-CHiFlh_0.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/hero.png +0 -0
- package/src/dashboard/ui/dist/assets/index-ByVKPvLf.js +34 -0
- package/src/dashboard/ui/dist/assets/index-CCoKjUcC.js +161 -0
- package/src/dashboard/ui/dist/assets/index-CZWNQDt5.css +1 -0
- package/src/dashboard/ui/dist/assets/jetbrains-mono-cyrillic-wght-normal-D73BlboJ.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/jetbrains-mono-greek-wght-normal-Bw9x6K1M.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/jetbrains-mono-latin-ext-wght-normal-DBQx-q_a.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/jetbrains-mono-latin-wght-normal-B9CIFXIH.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/jetbrains-mono-vietnamese-wght-normal-Bt-aOZkq.woff2 +0 -0
- package/src/dashboard/ui/dist/assets/mover-system.css +62 -0
- package/src/dashboard/ui/dist/assets/xterm-CqkleIqs.js +1 -0
- package/src/dashboard/ui/dist/icon.svg +4 -0
- package/src/dashboard/ui/dist/index.html +18 -0
- package/src/dashboard/ui/dist/manifest.webmanifest +1 -0
- package/src/dashboard/ui/dist/registerSW.js +1 -0
- package/src/dashboard/ui/dist/sw.js +1 -0
- package/src/dashboard/ui/dist/workbox-39fa566e.js +1 -0
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.
|
|
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
|
-
- **
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
59
|
+
npx mover-os
|
|
58
60
|
```
|
|
59
61
|
|
|
60
|
-
|
|
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
|
|
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 +
|
|
99
|
-
| Cursor | Rules +
|
|
100
|
-
| Cline | Rules +
|
|
101
|
-
| Windsurf | Rules +
|
|
102
|
-
| Gemini CLI | Rules +
|
|
103
|
-
|
|
|
104
|
-
|
|
|
105
|
-
|
|
|
106
|
-
| Amazon Q | Rules +
|
|
107
|
-
| OpenCode | Rules +
|
|
108
|
-
| Kilo Code | Rules +
|
|
109
|
-
| Amp | Rules +
|
|
110
|
-
| Roo Code | Rules +
|
|
111
|
-
| Continue.dev | Rules +
|
|
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/ #
|
|
211
|
+
workflows/ # 25 AI command handlers (markdown)
|
|
202
212
|
system/ # Global Rules + Install Manifest
|
|
203
|
-
hooks/ #
|
|
204
|
-
skills/ #
|
|
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
|
```
|