mover-os 4.0.0
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 +201 -0
- package/install.js +1424 -0
- package/package.json +35 -0
- package/src/hooks/context-staleness.sh +46 -0
- package/src/hooks/dirty-tree-guard.sh +33 -0
- package/src/hooks/engine-protection.sh +43 -0
- package/src/hooks/git-safety.sh +47 -0
- package/src/hooks/pre-compact-backup.sh +177 -0
- package/src/hooks/session-log-reminder.sh +64 -0
- package/src/skills/THIRD-PARTY-LICENSES.md +53 -0
- package/src/skills/agent-code-reviewer/SKILL.md +41 -0
- package/src/skills/agent-content-researcher/SKILL.md +59 -0
- package/src/skills/agent-research-analyst/SKILL.md +53 -0
- package/src/skills/agent-security-auditor/SKILL.md +42 -0
- package/src/skills/agent-strategy-analyst/SKILL.md +54 -0
- package/src/skills/defuddle/SKILL.md +41 -0
- package/src/skills/find-bugs/SKILL.md +75 -0
- package/src/skills/find-skills/SKILL.md +133 -0
- package/src/skills/frontend-design/LICENSE.txt +177 -0
- package/src/skills/frontend-design/SKILL.md +42 -0
- package/src/skills/human-writer/SKILL.md +185 -0
- package/src/skills/json-canvas/SKILL.md +656 -0
- package/src/skills/marketingskills/.claude-plugin/marketplace.json +45 -0
- package/src/skills/marketingskills/README.md +204 -0
- package/src/skills/marketingskills/skills/ab-test-setup/SKILL.md +508 -0
- package/src/skills/marketingskills/skills/analytics-tracking/SKILL.md +539 -0
- package/src/skills/marketingskills/skills/competitor-alternatives/SKILL.md +750 -0
- package/src/skills/marketingskills/skills/copy-editing/SKILL.md +439 -0
- package/src/skills/marketingskills/skills/copywriting/SKILL.md +455 -0
- package/src/skills/marketingskills/skills/email-sequence/SKILL.md +925 -0
- package/src/skills/marketingskills/skills/form-cro/SKILL.md +425 -0
- package/src/skills/marketingskills/skills/free-tool-strategy/SKILL.md +576 -0
- package/src/skills/marketingskills/skills/launch-strategy/SKILL.md +344 -0
- package/src/skills/marketingskills/skills/marketing-ideas/SKILL.md +565 -0
- package/src/skills/marketingskills/skills/marketing-psychology/SKILL.md +451 -0
- package/src/skills/marketingskills/skills/onboarding-cro/SKILL.md +433 -0
- package/src/skills/marketingskills/skills/page-cro/SKILL.md +334 -0
- package/src/skills/marketingskills/skills/paid-ads/SKILL.md +551 -0
- package/src/skills/marketingskills/skills/paywall-upgrade-cro/SKILL.md +570 -0
- package/src/skills/marketingskills/skills/popup-cro/SKILL.md +449 -0
- package/src/skills/marketingskills/skills/pricing-strategy/SKILL.md +710 -0
- package/src/skills/marketingskills/skills/programmatic-seo/SKILL.md +626 -0
- package/src/skills/marketingskills/skills/referral-program/SKILL.md +602 -0
- package/src/skills/marketingskills/skills/schema-markup/SKILL.md +596 -0
- package/src/skills/marketingskills/skills/seo-audit/SKILL.md +384 -0
- package/src/skills/marketingskills/skills/signup-flow-cro/SKILL.md +355 -0
- package/src/skills/marketingskills/skills/social-content/SKILL.md +807 -0
- package/src/skills/obsidian-bases/SKILL.md +651 -0
- package/src/skills/obsidian-cli/SKILL.md +103 -0
- package/src/skills/obsidian-markdown/SKILL.md +620 -0
- package/src/skills/react-best-practices/SKILL.md +136 -0
- package/src/skills/refactoring/SKILL.md +119 -0
- package/src/skills/seo-content-writer/SKILL.md +661 -0
- package/src/skills/seo-content-writer/references/content-structure-templates.md +875 -0
- package/src/skills/seo-content-writer/references/title-formulas.md +339 -0
- package/src/skills/skill-creator/LICENSE.txt +202 -0
- package/src/skills/skill-creator/SKILL.md +357 -0
- package/src/skills/skill-creator/references/output-patterns.md +82 -0
- package/src/skills/skill-creator/references/workflows.md +28 -0
- package/src/skills/skill-creator/scripts/init_skill.py +303 -0
- package/src/skills/skill-creator/scripts/package_skill.py +110 -0
- package/src/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/src/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/src/skills/systematic-debugging/SKILL.md +296 -0
- package/src/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
- package/src/skills/systematic-debugging/condition-based-waiting.md +115 -0
- package/src/skills/systematic-debugging/defense-in-depth.md +122 -0
- package/src/skills/systematic-debugging/find-polluter.sh +63 -0
- package/src/skills/systematic-debugging/root-cause-tracing.md +169 -0
- package/src/skills/systematic-debugging/test-academic.md +14 -0
- package/src/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/src/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/src/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/src/skills/ui-ux-pro-max/SKILL.md +386 -0
- package/src/skills/webhook-handler-patterns/SKILL.md +81 -0
- package/src/skills/webhook-handler-patterns/references/error-handling.md +299 -0
- package/src/skills/webhook-handler-patterns/references/frameworks/express.md +295 -0
- package/src/skills/webhook-handler-patterns/references/frameworks/fastapi.md +415 -0
- package/src/skills/webhook-handler-patterns/references/frameworks/nextjs.md +331 -0
- package/src/skills/webhook-handler-patterns/references/handler-sequence.md +51 -0
- package/src/skills/webhook-handler-patterns/references/idempotency.md +227 -0
- package/src/skills/webhook-handler-patterns/references/retry-logic.md +261 -0
- package/src/structure/00_Inbox/.gitkeep +0 -0
- package/src/structure/00_Inbox/Quick_Capture.md +5 -0
- package/src/structure/01_Projects/.gitkeep +0 -0
- package/src/structure/01_Projects/_Template Project/plan.md +55 -0
- package/src/structure/01_Projects/_Template Project/project_brief.md +45 -0
- package/src/structure/01_Projects/_Template Project/project_state.md +19 -0
- package/src/structure/02_Areas/Engine/Active_Context.md +126 -0
- package/src/structure/02_Areas/Engine/Auto_Learnings.md +36 -0
- package/src/structure/02_Areas/Engine/Dailies/.gitkeep +0 -0
- package/src/structure/02_Areas/Engine/Daily_Template.md +130 -0
- package/src/structure/02_Areas/Engine/Goals.md +65 -0
- package/src/structure/02_Areas/Engine/Identity_Prime_template.md +86 -0
- package/src/structure/02_Areas/Engine/Metrics_Log.md +45 -0
- package/src/structure/02_Areas/Engine/Monthly Reviews/.gitkeep +0 -0
- package/src/structure/02_Areas/Engine/Mover_Dossier.md +120 -0
- package/src/structure/02_Areas/Engine/Quarterly Reviews/.gitkeep +0 -0
- package/src/structure/02_Areas/Engine/Someday_Maybe.md +51 -0
- package/src/structure/02_Areas/Engine/Strategy_template.md +65 -0
- package/src/structure/02_Areas/Engine/Weekly Reviews/.gitkeep +0 -0
- package/src/structure/03_Library/Cheatsheets/.gitkeep +0 -0
- package/src/structure/03_Library/Entities/Decisions/_TEMPLATE.md +38 -0
- package/src/structure/03_Library/Entities/Entities MOC.md +49 -0
- package/src/structure/03_Library/Entities/Organizations/_TEMPLATE.md +28 -0
- package/src/structure/03_Library/Entities/People/_TEMPLATE.md +31 -0
- package/src/structure/03_Library/Entities/Places/_TEMPLATE.md +26 -0
- package/src/structure/03_Library/Inputs/.gitkeep +0 -0
- package/src/structure/03_Library/Inputs/Archive/.gitkeep +0 -0
- package/src/structure/03_Library/Inputs/Articles/.gitkeep +0 -0
- package/src/structure/03_Library/Inputs/Articles/_TEMPLATE.md +29 -0
- package/src/structure/03_Library/Inputs/Books/.gitkeep +0 -0
- package/src/structure/03_Library/Inputs/Books/_TEMPLATE.md +41 -0
- package/src/structure/03_Library/Inputs/Inputs MOC.md +40 -0
- package/src/structure/03_Library/Inputs/Videos/.gitkeep +0 -0
- package/src/structure/03_Library/Inputs/Videos/_TEMPLATE.md +29 -0
- package/src/structure/03_Library/MOCs/.gitkeep +0 -0
- package/src/structure/03_Library/Misc/.gitkeep +0 -0
- package/src/structure/03_Library/Principles/.gitkeep +0 -0
- package/src/structure/03_Library/Principles/Naval_Leverage.md +65 -0
- package/src/structure/03_Library/SOPs/Mover_OS_Architecture.md +74 -0
- package/src/structure/03_Library/SOPs/Tech_Doctrine.md +123 -0
- package/src/structure/03_Library/SOPs/Tech_Stack.md +55 -0
- package/src/structure/03_Library/SOPs/Zone_Operating.md +58 -0
- package/src/structure/04_Archives/.gitkeep +0 -0
- package/src/system/AI_INSTALL_MANIFEST.md +219 -0
- package/src/system/Mover_Global_Rules.md +646 -0
- package/src/system/V4_CONTEXT.md +223 -0
- package/src/workflows/analyse-day.md +376 -0
- package/src/workflows/context.md +24 -0
- package/src/workflows/debrief.md +199 -0
- package/src/workflows/debug-resistance.md +181 -0
- package/src/workflows/harvest.md +240 -0
- package/src/workflows/history.md +247 -0
- package/src/workflows/ignite.md +696 -0
- package/src/workflows/init-plan.md +16 -0
- package/src/workflows/log.md +314 -0
- package/src/workflows/morning.md +209 -0
- package/src/workflows/overview.md +203 -0
- package/src/workflows/pivot-strategy.md +218 -0
- package/src/workflows/plan-tomorrow.md +286 -0
- package/src/workflows/primer.md +209 -0
- package/src/workflows/project-notes.md +17 -0
- package/src/workflows/reboot.md +201 -0
- package/src/workflows/refactor-plan.md +135 -0
- package/src/workflows/review-week.md +537 -0
- package/src/workflows/setup.md +387 -0
- package/src/workflows/update.md +411 -0
- package/src/workflows/walkthrough.md +259 -0
package/README.md
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
# Mover OS
|
|
2
|
+
|
|
3
|
+
**The Agentic Operating System for Obsidian.**
|
|
4
|
+
|
|
5
|
+
> Most productivity systems are passive storage. This one talks back.
|
|
6
|
+
|
|
7
|
+
Mover OS turns Obsidian into an AI-powered execution engine. It audits your behavior against your stated strategy, extracts reusable knowledge from daily work, and evolves based on your corrections.
|
|
8
|
+
|
|
9
|
+
**Version:** 4 | **Status:** Production
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## What It Does
|
|
14
|
+
|
|
15
|
+
- **Active Accountability** — AI reads your daily logs and detects drift, procrastination, and scope creep.
|
|
16
|
+
- **Strategic Validation** — Acts as an intellectual opponent, testing your logic before you invest time.
|
|
17
|
+
- **Knowledge Compounding** — Automatically refines ephemeral notes into a permanent, linked library.
|
|
18
|
+
- **Three Domains** — Identity covers Work, Vitality, and Faith/Purpose. Not just productivity.
|
|
19
|
+
- **Pattern Detection** — Tracks behavioral patterns with confidence scores. Surfaces them when they matter.
|
|
20
|
+
- **17 Connected Workflows** — Each one hands off to the next. You never wonder what to do next.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Install
|
|
25
|
+
|
|
26
|
+
### Prerequisites
|
|
27
|
+
|
|
28
|
+
- [Obsidian](https://obsidian.md) (your vault interface)
|
|
29
|
+
- A coding agent (any of the supported ones below)
|
|
30
|
+
- Git
|
|
31
|
+
|
|
32
|
+
### Quick Start
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
git clone https://github.com/azkhh/Mover-OS.git
|
|
36
|
+
cd "Mover-OS/01_Projects/Mover OS Bundle"
|
|
37
|
+
node install.js
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The interactive installer will:
|
|
41
|
+
1. Ask where your Obsidian vault is (auto-detects common locations)
|
|
42
|
+
2. Detect which coding agents you have installed
|
|
43
|
+
3. Let you choose which agents to configure
|
|
44
|
+
4. Install vault structure, rules, workflows, skills, and hooks
|
|
45
|
+
|
|
46
|
+
> **Requires:** Node.js 18+ (zero dependencies). Or use `bash src/install/install.sh` for the non-interactive shell installer.
|
|
47
|
+
|
|
48
|
+
### After Install
|
|
49
|
+
|
|
50
|
+
Open your vault in Obsidian and your coding agent, then run:
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
/setup
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
This launches a deep interview that builds your Identity, Strategy, Dossier, and Goals.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Supported Agents
|
|
61
|
+
|
|
62
|
+
The installer auto-detects and configures all of these:
|
|
63
|
+
|
|
64
|
+
| Agent | Tier | What Gets Installed |
|
|
65
|
+
|-------|------|---------------------|
|
|
66
|
+
| Claude Code | Full | Rules + 17 commands + 44 skills + 6 hooks |
|
|
67
|
+
| Cursor | Full | Rules + 17 commands + 44 skills |
|
|
68
|
+
| Cline | Full | Rules + 44 skills |
|
|
69
|
+
| Codex (OpenAI) | Enhanced | AGENTS.md + global instructions |
|
|
70
|
+
| Windsurf | Enhanced | Rules |
|
|
71
|
+
| OpenClaw | Enhanced | AGENTS.md + SOUL.md + 44 skills |
|
|
72
|
+
| Antigravity | Basic+ | Rules + 17 workflows |
|
|
73
|
+
| Roo Code | Basic | Rules |
|
|
74
|
+
| GitHub Copilot | Basic | Rules |
|
|
75
|
+
| Amp | Basic | AGENTS.md + rules |
|
|
76
|
+
| Aider | Basic | AGENTS.md |
|
|
77
|
+
|
|
78
|
+
**Tier 1 (Full):** Rules + slash commands + skills + hooks where supported.
|
|
79
|
+
**Tier 2 (Enhanced):** Rules + skills or AGENTS.md.
|
|
80
|
+
**Tier 3 (Basic):** Rules only (still powerful — the Global Rules carry the system).
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## How It Works
|
|
85
|
+
|
|
86
|
+
### The Engine
|
|
87
|
+
|
|
88
|
+
Your `02_Areas/Engine/` folder is the brain. Seven core files that the AI reads before every operation:
|
|
89
|
+
|
|
90
|
+
| File | Purpose |
|
|
91
|
+
|------|---------|
|
|
92
|
+
| `Identity_Prime.md` | Who you are — psychology, values, anti-identity |
|
|
93
|
+
| `Strategy.md` | What you're testing — hypotheses, metrics, pivot criteria |
|
|
94
|
+
| `Active_Context.md` | Where you are NOW — blockers, energy, commitments, waiting-for |
|
|
95
|
+
| `Mover_Dossier.md` | What you have — skills, assets, network, capital |
|
|
96
|
+
| `Auto_Learnings.md` | What the AI has learned about you — patterns with confidence scores |
|
|
97
|
+
| `Goals.md` | Where you're going — 90-day, 1-year, 10-year targets |
|
|
98
|
+
| `Metrics_Log.md` | 30-day rolling performance data |
|
|
99
|
+
|
|
100
|
+
### The Daily Rhythm
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
/morning → [WORK] → /log → /analyse-day → /plan-tomorrow
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
| Workflow | When | Duration |
|
|
107
|
+
|----------|------|----------|
|
|
108
|
+
| `/morning` | Start of session | 5 min |
|
|
109
|
+
| `/log` | End of session | 5 min |
|
|
110
|
+
| `/analyse-day` | End of day | 10 min |
|
|
111
|
+
| `/plan-tomorrow` | Every evening | 5 min |
|
|
112
|
+
| `/review-week` | Weekly (configurable day) | 30 min |
|
|
113
|
+
|
|
114
|
+
### All Workflows
|
|
115
|
+
|
|
116
|
+
**Daily Flow:**
|
|
117
|
+
|
|
118
|
+
| Command | Purpose |
|
|
119
|
+
|---------|---------|
|
|
120
|
+
| `/morning` | Session primer — identity, energy check, pattern alerts |
|
|
121
|
+
| `/log` | Session capture — sync plan, extract wisdom |
|
|
122
|
+
| `/analyse-day` | Brutal daily audit — strategy alignment, pattern detection |
|
|
123
|
+
| `/plan-tomorrow` | Battle plan for tomorrow |
|
|
124
|
+
| `/review-week` | Weekly + monthly + quarterly review |
|
|
125
|
+
|
|
126
|
+
**Project Flow:**
|
|
127
|
+
|
|
128
|
+
| Command | Purpose |
|
|
129
|
+
|---------|---------|
|
|
130
|
+
| `/ignite` | Start a new project or feature |
|
|
131
|
+
| `/overview` | Refresh context on a project |
|
|
132
|
+
| `/refactor-plan` | Update roadmap after a pivot |
|
|
133
|
+
| `/debrief` | Post-meeting/call capture — actions, decisions, commitments |
|
|
134
|
+
|
|
135
|
+
**System Flow:**
|
|
136
|
+
|
|
137
|
+
| Command | Purpose |
|
|
138
|
+
|---------|---------|
|
|
139
|
+
| `/setup` | Onboarding interview (Identity + Strategy + Dossier + Goals) |
|
|
140
|
+
| `/walkthrough` | Guided tour after setup |
|
|
141
|
+
| `/update` | Update Mover OS and migrate Engine files |
|
|
142
|
+
| `/history` | View how your Engine files evolved over time |
|
|
143
|
+
|
|
144
|
+
**Recovery & Strategy:**
|
|
145
|
+
|
|
146
|
+
| Command | Purpose |
|
|
147
|
+
|---------|---------|
|
|
148
|
+
| `/reboot` | Recovery after 3+ days away |
|
|
149
|
+
| `/debug-resistance` | Diagnose procrastination and avoidance |
|
|
150
|
+
| `/pivot-strategy` | Formal strategy change with logging |
|
|
151
|
+
| `/harvest` | Extract knowledge to Library |
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## Updating
|
|
156
|
+
|
|
157
|
+
Already have Mover OS installed? Update without losing your Engine data:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
cd "Mover-OS/01_Projects/Mover OS Bundle"
|
|
161
|
+
git pull
|
|
162
|
+
node install.js --update
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Or re-link hard links after any git operation:
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
bash src/install/link.sh
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
Engine files (Identity, Strategy, Dossier, etc.) are never overwritten during updates.
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## Architecture
|
|
176
|
+
|
|
177
|
+
```
|
|
178
|
+
Mover OS Bundle/
|
|
179
|
+
src/
|
|
180
|
+
workflows/ # 17 AI command handlers (markdown)
|
|
181
|
+
system/ # Global Rules + Install Manifest
|
|
182
|
+
hooks/ # 6 Claude Code lifecycle hooks
|
|
183
|
+
skills/ # 43 curated skill packs
|
|
184
|
+
install/ # link.sh (hard-link re-linker)
|
|
185
|
+
structure/ # Vault template (PARA + Engine)
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
**Hard-link architecture:** One file, multiple paths. Edit workflows from your editor or from `src/workflows/` — same file on disk. `link.sh` re-establishes links after git operations.
|
|
189
|
+
|
|
190
|
+
**AGENTS.md:** Generated alongside native rule formats for universal agent compatibility (Linux Foundation standard).
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
## Documentation
|
|
195
|
+
|
|
196
|
+
- [System Architecture](MANUAL.md) — Deep technical documentation
|
|
197
|
+
- [Install Manifest](src/system/AI_INSTALL_MANIFEST.md) — Complete file inventory
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
Built by [Asmir](https://x.com/AsmirKHAN_).
|