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.

Potentially problematic release.


This version of mover-os might be problematic. Click here for more details.

Files changed (149) hide show
  1. package/README.md +201 -0
  2. package/install.js +1424 -0
  3. package/package.json +35 -0
  4. package/src/hooks/context-staleness.sh +46 -0
  5. package/src/hooks/dirty-tree-guard.sh +33 -0
  6. package/src/hooks/engine-protection.sh +43 -0
  7. package/src/hooks/git-safety.sh +47 -0
  8. package/src/hooks/pre-compact-backup.sh +177 -0
  9. package/src/hooks/session-log-reminder.sh +64 -0
  10. package/src/skills/THIRD-PARTY-LICENSES.md +53 -0
  11. package/src/skills/agent-code-reviewer/SKILL.md +41 -0
  12. package/src/skills/agent-content-researcher/SKILL.md +59 -0
  13. package/src/skills/agent-research-analyst/SKILL.md +53 -0
  14. package/src/skills/agent-security-auditor/SKILL.md +42 -0
  15. package/src/skills/agent-strategy-analyst/SKILL.md +54 -0
  16. package/src/skills/defuddle/SKILL.md +41 -0
  17. package/src/skills/find-bugs/SKILL.md +75 -0
  18. package/src/skills/find-skills/SKILL.md +133 -0
  19. package/src/skills/frontend-design/LICENSE.txt +177 -0
  20. package/src/skills/frontend-design/SKILL.md +42 -0
  21. package/src/skills/human-writer/SKILL.md +185 -0
  22. package/src/skills/json-canvas/SKILL.md +656 -0
  23. package/src/skills/marketingskills/.claude-plugin/marketplace.json +45 -0
  24. package/src/skills/marketingskills/README.md +204 -0
  25. package/src/skills/marketingskills/skills/ab-test-setup/SKILL.md +508 -0
  26. package/src/skills/marketingskills/skills/analytics-tracking/SKILL.md +539 -0
  27. package/src/skills/marketingskills/skills/competitor-alternatives/SKILL.md +750 -0
  28. package/src/skills/marketingskills/skills/copy-editing/SKILL.md +439 -0
  29. package/src/skills/marketingskills/skills/copywriting/SKILL.md +455 -0
  30. package/src/skills/marketingskills/skills/email-sequence/SKILL.md +925 -0
  31. package/src/skills/marketingskills/skills/form-cro/SKILL.md +425 -0
  32. package/src/skills/marketingskills/skills/free-tool-strategy/SKILL.md +576 -0
  33. package/src/skills/marketingskills/skills/launch-strategy/SKILL.md +344 -0
  34. package/src/skills/marketingskills/skills/marketing-ideas/SKILL.md +565 -0
  35. package/src/skills/marketingskills/skills/marketing-psychology/SKILL.md +451 -0
  36. package/src/skills/marketingskills/skills/onboarding-cro/SKILL.md +433 -0
  37. package/src/skills/marketingskills/skills/page-cro/SKILL.md +334 -0
  38. package/src/skills/marketingskills/skills/paid-ads/SKILL.md +551 -0
  39. package/src/skills/marketingskills/skills/paywall-upgrade-cro/SKILL.md +570 -0
  40. package/src/skills/marketingskills/skills/popup-cro/SKILL.md +449 -0
  41. package/src/skills/marketingskills/skills/pricing-strategy/SKILL.md +710 -0
  42. package/src/skills/marketingskills/skills/programmatic-seo/SKILL.md +626 -0
  43. package/src/skills/marketingskills/skills/referral-program/SKILL.md +602 -0
  44. package/src/skills/marketingskills/skills/schema-markup/SKILL.md +596 -0
  45. package/src/skills/marketingskills/skills/seo-audit/SKILL.md +384 -0
  46. package/src/skills/marketingskills/skills/signup-flow-cro/SKILL.md +355 -0
  47. package/src/skills/marketingskills/skills/social-content/SKILL.md +807 -0
  48. package/src/skills/obsidian-bases/SKILL.md +651 -0
  49. package/src/skills/obsidian-cli/SKILL.md +103 -0
  50. package/src/skills/obsidian-markdown/SKILL.md +620 -0
  51. package/src/skills/react-best-practices/SKILL.md +136 -0
  52. package/src/skills/refactoring/SKILL.md +119 -0
  53. package/src/skills/seo-content-writer/SKILL.md +661 -0
  54. package/src/skills/seo-content-writer/references/content-structure-templates.md +875 -0
  55. package/src/skills/seo-content-writer/references/title-formulas.md +339 -0
  56. package/src/skills/skill-creator/LICENSE.txt +202 -0
  57. package/src/skills/skill-creator/SKILL.md +357 -0
  58. package/src/skills/skill-creator/references/output-patterns.md +82 -0
  59. package/src/skills/skill-creator/references/workflows.md +28 -0
  60. package/src/skills/skill-creator/scripts/init_skill.py +303 -0
  61. package/src/skills/skill-creator/scripts/package_skill.py +110 -0
  62. package/src/skills/skill-creator/scripts/quick_validate.py +103 -0
  63. package/src/skills/systematic-debugging/CREATION-LOG.md +119 -0
  64. package/src/skills/systematic-debugging/SKILL.md +296 -0
  65. package/src/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  66. package/src/skills/systematic-debugging/condition-based-waiting.md +115 -0
  67. package/src/skills/systematic-debugging/defense-in-depth.md +122 -0
  68. package/src/skills/systematic-debugging/find-polluter.sh +63 -0
  69. package/src/skills/systematic-debugging/root-cause-tracing.md +169 -0
  70. package/src/skills/systematic-debugging/test-academic.md +14 -0
  71. package/src/skills/systematic-debugging/test-pressure-1.md +58 -0
  72. package/src/skills/systematic-debugging/test-pressure-2.md +68 -0
  73. package/src/skills/systematic-debugging/test-pressure-3.md +69 -0
  74. package/src/skills/ui-ux-pro-max/SKILL.md +386 -0
  75. package/src/skills/webhook-handler-patterns/SKILL.md +81 -0
  76. package/src/skills/webhook-handler-patterns/references/error-handling.md +299 -0
  77. package/src/skills/webhook-handler-patterns/references/frameworks/express.md +295 -0
  78. package/src/skills/webhook-handler-patterns/references/frameworks/fastapi.md +415 -0
  79. package/src/skills/webhook-handler-patterns/references/frameworks/nextjs.md +331 -0
  80. package/src/skills/webhook-handler-patterns/references/handler-sequence.md +51 -0
  81. package/src/skills/webhook-handler-patterns/references/idempotency.md +227 -0
  82. package/src/skills/webhook-handler-patterns/references/retry-logic.md +261 -0
  83. package/src/structure/00_Inbox/.gitkeep +0 -0
  84. package/src/structure/00_Inbox/Quick_Capture.md +5 -0
  85. package/src/structure/01_Projects/.gitkeep +0 -0
  86. package/src/structure/01_Projects/_Template Project/plan.md +55 -0
  87. package/src/structure/01_Projects/_Template Project/project_brief.md +45 -0
  88. package/src/structure/01_Projects/_Template Project/project_state.md +19 -0
  89. package/src/structure/02_Areas/Engine/Active_Context.md +126 -0
  90. package/src/structure/02_Areas/Engine/Auto_Learnings.md +36 -0
  91. package/src/structure/02_Areas/Engine/Dailies/.gitkeep +0 -0
  92. package/src/structure/02_Areas/Engine/Daily_Template.md +130 -0
  93. package/src/structure/02_Areas/Engine/Goals.md +65 -0
  94. package/src/structure/02_Areas/Engine/Identity_Prime_template.md +86 -0
  95. package/src/structure/02_Areas/Engine/Metrics_Log.md +45 -0
  96. package/src/structure/02_Areas/Engine/Monthly Reviews/.gitkeep +0 -0
  97. package/src/structure/02_Areas/Engine/Mover_Dossier.md +120 -0
  98. package/src/structure/02_Areas/Engine/Quarterly Reviews/.gitkeep +0 -0
  99. package/src/structure/02_Areas/Engine/Someday_Maybe.md +51 -0
  100. package/src/structure/02_Areas/Engine/Strategy_template.md +65 -0
  101. package/src/structure/02_Areas/Engine/Weekly Reviews/.gitkeep +0 -0
  102. package/src/structure/03_Library/Cheatsheets/.gitkeep +0 -0
  103. package/src/structure/03_Library/Entities/Decisions/_TEMPLATE.md +38 -0
  104. package/src/structure/03_Library/Entities/Entities MOC.md +49 -0
  105. package/src/structure/03_Library/Entities/Organizations/_TEMPLATE.md +28 -0
  106. package/src/structure/03_Library/Entities/People/_TEMPLATE.md +31 -0
  107. package/src/structure/03_Library/Entities/Places/_TEMPLATE.md +26 -0
  108. package/src/structure/03_Library/Inputs/.gitkeep +0 -0
  109. package/src/structure/03_Library/Inputs/Archive/.gitkeep +0 -0
  110. package/src/structure/03_Library/Inputs/Articles/.gitkeep +0 -0
  111. package/src/structure/03_Library/Inputs/Articles/_TEMPLATE.md +29 -0
  112. package/src/structure/03_Library/Inputs/Books/.gitkeep +0 -0
  113. package/src/structure/03_Library/Inputs/Books/_TEMPLATE.md +41 -0
  114. package/src/structure/03_Library/Inputs/Inputs MOC.md +40 -0
  115. package/src/structure/03_Library/Inputs/Videos/.gitkeep +0 -0
  116. package/src/structure/03_Library/Inputs/Videos/_TEMPLATE.md +29 -0
  117. package/src/structure/03_Library/MOCs/.gitkeep +0 -0
  118. package/src/structure/03_Library/Misc/.gitkeep +0 -0
  119. package/src/structure/03_Library/Principles/.gitkeep +0 -0
  120. package/src/structure/03_Library/Principles/Naval_Leverage.md +65 -0
  121. package/src/structure/03_Library/SOPs/Mover_OS_Architecture.md +74 -0
  122. package/src/structure/03_Library/SOPs/Tech_Doctrine.md +123 -0
  123. package/src/structure/03_Library/SOPs/Tech_Stack.md +55 -0
  124. package/src/structure/03_Library/SOPs/Zone_Operating.md +58 -0
  125. package/src/structure/04_Archives/.gitkeep +0 -0
  126. package/src/system/AI_INSTALL_MANIFEST.md +219 -0
  127. package/src/system/Mover_Global_Rules.md +646 -0
  128. package/src/system/V4_CONTEXT.md +223 -0
  129. package/src/workflows/analyse-day.md +376 -0
  130. package/src/workflows/context.md +24 -0
  131. package/src/workflows/debrief.md +199 -0
  132. package/src/workflows/debug-resistance.md +181 -0
  133. package/src/workflows/harvest.md +240 -0
  134. package/src/workflows/history.md +247 -0
  135. package/src/workflows/ignite.md +696 -0
  136. package/src/workflows/init-plan.md +16 -0
  137. package/src/workflows/log.md +314 -0
  138. package/src/workflows/morning.md +209 -0
  139. package/src/workflows/overview.md +203 -0
  140. package/src/workflows/pivot-strategy.md +218 -0
  141. package/src/workflows/plan-tomorrow.md +286 -0
  142. package/src/workflows/primer.md +209 -0
  143. package/src/workflows/project-notes.md +17 -0
  144. package/src/workflows/reboot.md +201 -0
  145. package/src/workflows/refactor-plan.md +135 -0
  146. package/src/workflows/review-week.md +537 -0
  147. package/src/workflows/setup.md +387 -0
  148. package/src/workflows/update.md +411 -0
  149. package/src/workflows/walkthrough.md +259 -0
@@ -0,0 +1,384 @@
1
+ ---
2
+ name: seo-audit
3
+ description: When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," or "SEO health check." For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema-markup.
4
+ ---
5
+
6
+ # SEO Audit
7
+
8
+ You are an expert in search engine optimization. Your goal is to identify SEO issues and provide actionable recommendations to improve organic search performance.
9
+
10
+ ## Initial Assessment
11
+
12
+ Before auditing, understand:
13
+
14
+ 1. **Site Context**
15
+ - What type of site? (SaaS, e-commerce, blog, etc.)
16
+ - What's the primary business goal for SEO?
17
+ - What keywords/topics are priorities?
18
+
19
+ 2. **Current State**
20
+ - Any known issues or concerns?
21
+ - Current organic traffic level?
22
+ - Recent changes or migrations?
23
+
24
+ 3. **Scope**
25
+ - Full site audit or specific pages?
26
+ - Technical + on-page, or one focus area?
27
+ - Access to Search Console / analytics?
28
+
29
+ ---
30
+
31
+ ## Audit Framework
32
+
33
+ ### Priority Order
34
+ 1. **Crawlability & Indexation** (can Google find and index it?)
35
+ 2. **Technical Foundations** (is the site fast and functional?)
36
+ 3. **On-Page Optimization** (is content optimized?)
37
+ 4. **Content Quality** (does it deserve to rank?)
38
+ 5. **Authority & Links** (does it have credibility?)
39
+
40
+ ---
41
+
42
+ ## Technical SEO Audit
43
+
44
+ ### Crawlability
45
+
46
+ **Robots.txt**
47
+ - Check for unintentional blocks
48
+ - Verify important pages allowed
49
+ - Check sitemap reference
50
+
51
+ **XML Sitemap**
52
+ - Exists and accessible
53
+ - Submitted to Search Console
54
+ - Contains only canonical, indexable URLs
55
+ - Updated regularly
56
+ - Proper formatting
57
+
58
+ **Site Architecture**
59
+ - Important pages within 3 clicks of homepage
60
+ - Logical hierarchy
61
+ - Internal linking structure
62
+ - No orphan pages
63
+
64
+ **Crawl Budget Issues** (for large sites)
65
+ - Parameterized URLs under control
66
+ - Faceted navigation handled properly
67
+ - Infinite scroll with pagination fallback
68
+ - Session IDs not in URLs
69
+
70
+ ### Indexation
71
+
72
+ **Index Status**
73
+ - site:domain.com check
74
+ - Search Console coverage report
75
+ - Compare indexed vs. expected
76
+
77
+ **Indexation Issues**
78
+ - Noindex tags on important pages
79
+ - Canonicals pointing wrong direction
80
+ - Redirect chains/loops
81
+ - Soft 404s
82
+ - Duplicate content without canonicals
83
+
84
+ **Canonicalization**
85
+ - All pages have canonical tags
86
+ - Self-referencing canonicals on unique pages
87
+ - HTTP → HTTPS canonicals
88
+ - www vs. non-www consistency
89
+ - Trailing slash consistency
90
+
91
+ ### Site Speed & Core Web Vitals
92
+
93
+ **Core Web Vitals**
94
+ - LCP (Largest Contentful Paint): < 2.5s
95
+ - INP (Interaction to Next Paint): < 200ms
96
+ - CLS (Cumulative Layout Shift): < 0.1
97
+
98
+ **Speed Factors**
99
+ - Server response time (TTFB)
100
+ - Image optimization
101
+ - JavaScript execution
102
+ - CSS delivery
103
+ - Caching headers
104
+ - CDN usage
105
+ - Font loading
106
+
107
+ **Tools**
108
+ - PageSpeed Insights
109
+ - WebPageTest
110
+ - Chrome DevTools
111
+ - Search Console Core Web Vitals report
112
+
113
+ ### Mobile-Friendliness
114
+
115
+ - Responsive design (not separate m. site)
116
+ - Tap target sizes
117
+ - Viewport configured
118
+ - No horizontal scroll
119
+ - Same content as desktop
120
+ - Mobile-first indexing readiness
121
+
122
+ ### Security & HTTPS
123
+
124
+ - HTTPS across entire site
125
+ - Valid SSL certificate
126
+ - No mixed content
127
+ - HTTP → HTTPS redirects
128
+ - HSTS header (bonus)
129
+
130
+ ### URL Structure
131
+
132
+ - Readable, descriptive URLs
133
+ - Keywords in URLs where natural
134
+ - Consistent structure
135
+ - No unnecessary parameters
136
+ - Lowercase and hyphen-separated
137
+
138
+ ---
139
+
140
+ ## On-Page SEO Audit
141
+
142
+ ### Title Tags
143
+
144
+ **Check for:**
145
+ - Unique titles for each page
146
+ - Primary keyword near beginning
147
+ - 50-60 characters (visible in SERP)
148
+ - Compelling and click-worthy
149
+ - Brand name placement (end, usually)
150
+
151
+ **Common issues:**
152
+ - Duplicate titles
153
+ - Too long (truncated)
154
+ - Too short (wasted opportunity)
155
+ - Keyword stuffing
156
+ - Missing entirely
157
+
158
+ ### Meta Descriptions
159
+
160
+ **Check for:**
161
+ - Unique descriptions per page
162
+ - 150-160 characters
163
+ - Includes primary keyword
164
+ - Clear value proposition
165
+ - Call to action
166
+
167
+ **Common issues:**
168
+ - Duplicate descriptions
169
+ - Auto-generated garbage
170
+ - Too long/short
171
+ - No compelling reason to click
172
+
173
+ ### Heading Structure
174
+
175
+ **Check for:**
176
+ - One H1 per page
177
+ - H1 contains primary keyword
178
+ - Logical hierarchy (H1 → H2 → H3)
179
+ - Headings describe content
180
+ - Not just for styling
181
+
182
+ **Common issues:**
183
+ - Multiple H1s
184
+ - Skip levels (H1 → H3)
185
+ - Headings used for styling only
186
+ - No H1 on page
187
+
188
+ ### Content Optimization
189
+
190
+ **Primary Page Content**
191
+ - Keyword in first 100 words
192
+ - Related keywords naturally used
193
+ - Sufficient depth/length for topic
194
+ - Answers search intent
195
+ - Better than competitors
196
+
197
+ **Thin Content Issues**
198
+ - Pages with little unique content
199
+ - Tag/category pages with no value
200
+ - Doorway pages
201
+ - Duplicate or near-duplicate content
202
+
203
+ ### Image Optimization
204
+
205
+ **Check for:**
206
+ - Descriptive file names
207
+ - Alt text on all images
208
+ - Alt text describes image
209
+ - Compressed file sizes
210
+ - Modern formats (WebP)
211
+ - Lazy loading implemented
212
+ - Responsive images
213
+
214
+ ### Internal Linking
215
+
216
+ **Check for:**
217
+ - Important pages well-linked
218
+ - Descriptive anchor text
219
+ - Logical link relationships
220
+ - No broken internal links
221
+ - Reasonable link count per page
222
+
223
+ **Common issues:**
224
+ - Orphan pages (no internal links)
225
+ - Over-optimized anchor text
226
+ - Important pages buried
227
+ - Excessive footer/sidebar links
228
+
229
+ ### Keyword Targeting
230
+
231
+ **Per Page**
232
+ - Clear primary keyword target
233
+ - Title, H1, URL aligned
234
+ - Content satisfies search intent
235
+ - Not competing with other pages (cannibalization)
236
+
237
+ **Site-Wide**
238
+ - Keyword mapping document
239
+ - No major gaps in coverage
240
+ - No keyword cannibalization
241
+ - Logical topical clusters
242
+
243
+ ---
244
+
245
+ ## Content Quality Assessment
246
+
247
+ ### E-E-A-T Signals
248
+
249
+ **Experience**
250
+ - First-hand experience demonstrated
251
+ - Original insights/data
252
+ - Real examples and case studies
253
+
254
+ **Expertise**
255
+ - Author credentials visible
256
+ - Accurate, detailed information
257
+ - Properly sourced claims
258
+
259
+ **Authoritativeness**
260
+ - Recognized in the space
261
+ - Cited by others
262
+ - Industry credentials
263
+
264
+ **Trustworthiness**
265
+ - Accurate information
266
+ - Transparent about business
267
+ - Contact information available
268
+ - Privacy policy, terms
269
+ - Secure site (HTTPS)
270
+
271
+ ### Content Depth
272
+
273
+ - Comprehensive coverage of topic
274
+ - Answers follow-up questions
275
+ - Better than top-ranking competitors
276
+ - Updated and current
277
+
278
+ ### User Engagement Signals
279
+
280
+ - Time on page
281
+ - Bounce rate in context
282
+ - Pages per session
283
+ - Return visits
284
+
285
+ ---
286
+
287
+ ## Common Issues by Site Type
288
+
289
+ ### SaaS/Product Sites
290
+ - Product pages lack content depth
291
+ - Blog not integrated with product pages
292
+ - Missing comparison/alternative pages
293
+ - Feature pages thin on content
294
+ - No glossary/educational content
295
+
296
+ ### E-commerce
297
+ - Thin category pages
298
+ - Duplicate product descriptions
299
+ - Missing product schema
300
+ - Faceted navigation creating duplicates
301
+ - Out-of-stock pages mishandled
302
+
303
+ ### Content/Blog Sites
304
+ - Outdated content not refreshed
305
+ - Keyword cannibalization
306
+ - No topical clustering
307
+ - Poor internal linking
308
+ - Missing author pages
309
+
310
+ ### Local Business
311
+ - Inconsistent NAP
312
+ - Missing local schema
313
+ - No Google Business Profile optimization
314
+ - Missing location pages
315
+ - No local content
316
+
317
+ ---
318
+
319
+ ## Output Format
320
+
321
+ ### Audit Report Structure
322
+
323
+ **Executive Summary**
324
+ - Overall health assessment
325
+ - Top 3-5 priority issues
326
+ - Quick wins identified
327
+
328
+ **Technical SEO Findings**
329
+ For each issue:
330
+ - **Issue**: What's wrong
331
+ - **Impact**: SEO impact (High/Medium/Low)
332
+ - **Evidence**: How you found it
333
+ - **Fix**: Specific recommendation
334
+ - **Priority**: 1-5 or High/Medium/Low
335
+
336
+ **On-Page SEO Findings**
337
+ Same format as above
338
+
339
+ **Content Findings**
340
+ Same format as above
341
+
342
+ **Prioritized Action Plan**
343
+ 1. Critical fixes (blocking indexation/ranking)
344
+ 2. High-impact improvements
345
+ 3. Quick wins (easy, immediate benefit)
346
+ 4. Long-term recommendations
347
+
348
+ ---
349
+
350
+ ## Tools Referenced
351
+
352
+ **Free Tools**
353
+ - Google Search Console (essential)
354
+ - Google PageSpeed Insights
355
+ - Bing Webmaster Tools
356
+ - Rich Results Test
357
+ - Mobile-Friendly Test
358
+ - Schema Validator
359
+
360
+ **Paid Tools** (if available)
361
+ - Screaming Frog
362
+ - Ahrefs / Semrush
363
+ - Sitebulb
364
+ - ContentKing
365
+
366
+ ---
367
+
368
+ ## Questions to Ask
369
+
370
+ If you need more context:
371
+ 1. What pages/keywords matter most?
372
+ 2. Do you have Search Console access?
373
+ 3. Any recent changes or migrations?
374
+ 4. Who are your top organic competitors?
375
+ 5. What's your current organic traffic baseline?
376
+
377
+ ---
378
+
379
+ ## Related Skills
380
+
381
+ - **programmatic-seo**: For building SEO pages at scale
382
+ - **schema-markup**: For implementing structured data
383
+ - **page-cro**: For optimizing pages for conversion (not just ranking)
384
+ - **analytics-tracking**: For measuring SEO performance