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,656 @@
1
+ ---
2
+ name: json-canvas
3
+ description: Create and edit JSON Canvas files (.canvas) with nodes, edges, groups, and connections. Use when working with .canvas files, creating visual canvases, mind maps, flowcharts, or when the user mentions Canvas files in Obsidian.
4
+ ---
5
+
6
+ # JSON Canvas Skill
7
+
8
+ This skill enables skills-compatible agents to create and edit valid JSON Canvas files (`.canvas`) used in Obsidian and other applications.
9
+
10
+ ## Overview
11
+
12
+ JSON Canvas is an open file format for infinite canvas data. Canvas files use the `.canvas` extension and contain valid JSON following the [JSON Canvas Spec 1.0](https://jsoncanvas.org/spec/1.0/).
13
+
14
+ ## File Structure
15
+
16
+ A canvas file contains two top-level arrays:
17
+
18
+ ```json
19
+ {
20
+ "nodes": [],
21
+ "edges": []
22
+ }
23
+ ```
24
+
25
+ - `nodes` (optional): Array of node objects
26
+ - `edges` (optional): Array of edge objects connecting nodes
27
+
28
+ ## Nodes
29
+
30
+ Nodes are objects placed on the canvas. There are four node types:
31
+ - `text` - Text content with Markdown
32
+ - `file` - Reference to files/attachments
33
+ - `link` - External URL
34
+ - `group` - Visual container for other nodes
35
+
36
+ ### Z-Index Ordering
37
+
38
+ Nodes are ordered by z-index in the array:
39
+ - First node = bottom layer (displayed below others)
40
+ - Last node = top layer (displayed above others)
41
+
42
+ ### Generic Node Attributes
43
+
44
+ All nodes share these attributes:
45
+
46
+ | Attribute | Required | Type | Description |
47
+ |-----------|----------|------|-------------|
48
+ | `id` | Yes | string | Unique identifier for the node |
49
+ | `type` | Yes | string | Node type: `text`, `file`, `link`, or `group` |
50
+ | `x` | Yes | integer | X position in pixels |
51
+ | `y` | Yes | integer | Y position in pixels |
52
+ | `width` | Yes | integer | Width in pixels |
53
+ | `height` | Yes | integer | Height in pixels |
54
+ | `color` | No | canvasColor | Node color (see Color section) |
55
+
56
+ ### Text Nodes
57
+
58
+ Text nodes contain Markdown content.
59
+
60
+ ```json
61
+ {
62
+ "id": "6f0ad84f44ce9c17",
63
+ "type": "text",
64
+ "x": 0,
65
+ "y": 0,
66
+ "width": 400,
67
+ "height": 200,
68
+ "text": "# Hello World\n\nThis is **Markdown** content."
69
+ }
70
+ ```
71
+
72
+ #### Newline Escaping (Common Pitfall)
73
+
74
+ In JSON, newline characters inside strings **must** be represented as `\n`. Do **not** use the literal sequence `\\n` in a `.canvas` file—Obsidian will render it as the characters `\` and `n` instead of a line break.
75
+
76
+ Examples:
77
+
78
+ ```json
79
+ { "type": "text", "text": "Line 1\nLine 2" }
80
+ ```
81
+
82
+ ```json
83
+ { "type": "text", "text": "Line 1\\nLine 2" }
84
+ ```
85
+
86
+ | Attribute | Required | Type | Description |
87
+ |-----------|----------|------|-------------|
88
+ | `text` | Yes | string | Plain text with Markdown syntax |
89
+
90
+ ### File Nodes
91
+
92
+ File nodes reference files or attachments (images, videos, PDFs, notes, etc.).
93
+
94
+ ```json
95
+ {
96
+ "id": "a1b2c3d4e5f67890",
97
+ "type": "file",
98
+ "x": 500,
99
+ "y": 0,
100
+ "width": 400,
101
+ "height": 300,
102
+ "file": "Attachments/diagram.png"
103
+ }
104
+ ```
105
+
106
+ ```json
107
+ {
108
+ "id": "b2c3d4e5f6789012",
109
+ "type": "file",
110
+ "x": 500,
111
+ "y": 400,
112
+ "width": 400,
113
+ "height": 300,
114
+ "file": "Notes/Project Overview.md",
115
+ "subpath": "#Implementation"
116
+ }
117
+ ```
118
+
119
+ | Attribute | Required | Type | Description |
120
+ |-----------|----------|------|-------------|
121
+ | `file` | Yes | string | Path to file within the system |
122
+ | `subpath` | No | string | Link to heading or block (starts with `#`) |
123
+
124
+ ### Link Nodes
125
+
126
+ Link nodes display external URLs.
127
+
128
+ ```json
129
+ {
130
+ "id": "c3d4e5f678901234",
131
+ "type": "link",
132
+ "x": 1000,
133
+ "y": 0,
134
+ "width": 400,
135
+ "height": 200,
136
+ "url": "https://obsidian.md"
137
+ }
138
+ ```
139
+
140
+ | Attribute | Required | Type | Description |
141
+ |-----------|----------|------|-------------|
142
+ | `url` | Yes | string | External URL |
143
+
144
+ ### Group Nodes
145
+
146
+ Group nodes are visual containers for organizing other nodes.
147
+
148
+ ```json
149
+ {
150
+ "id": "d4e5f6789012345a",
151
+ "type": "group",
152
+ "x": -50,
153
+ "y": -50,
154
+ "width": 1000,
155
+ "height": 600,
156
+ "label": "Project Overview",
157
+ "color": "4"
158
+ }
159
+ ```
160
+
161
+ ```json
162
+ {
163
+ "id": "e5f67890123456ab",
164
+ "type": "group",
165
+ "x": 0,
166
+ "y": 700,
167
+ "width": 800,
168
+ "height": 500,
169
+ "label": "Resources",
170
+ "background": "Attachments/background.png",
171
+ "backgroundStyle": "cover"
172
+ }
173
+ ```
174
+
175
+ | Attribute | Required | Type | Description |
176
+ |-----------|----------|------|-------------|
177
+ | `label` | No | string | Text label for the group |
178
+ | `background` | No | string | Path to background image |
179
+ | `backgroundStyle` | No | string | Background rendering style |
180
+
181
+ #### Background Styles
182
+
183
+ | Value | Description |
184
+ |-------|-------------|
185
+ | `cover` | Fills entire width and height of node |
186
+ | `ratio` | Maintains aspect ratio of background image |
187
+ | `repeat` | Repeats image as pattern in both directions |
188
+
189
+ ## Edges
190
+
191
+ Edges are lines connecting nodes.
192
+
193
+ ```json
194
+ {
195
+ "id": "f67890123456789a",
196
+ "fromNode": "6f0ad84f44ce9c17",
197
+ "toNode": "a1b2c3d4e5f67890"
198
+ }
199
+ ```
200
+
201
+ ```json
202
+ {
203
+ "id": "0123456789abcdef",
204
+ "fromNode": "6f0ad84f44ce9c17",
205
+ "fromSide": "right",
206
+ "fromEnd": "none",
207
+ "toNode": "b2c3d4e5f6789012",
208
+ "toSide": "left",
209
+ "toEnd": "arrow",
210
+ "color": "1",
211
+ "label": "leads to"
212
+ }
213
+ ```
214
+
215
+ | Attribute | Required | Type | Default | Description |
216
+ |-----------|----------|------|---------|-------------|
217
+ | `id` | Yes | string | - | Unique identifier for the edge |
218
+ | `fromNode` | Yes | string | - | Node ID where connection starts |
219
+ | `fromSide` | No | string | - | Side where edge starts |
220
+ | `fromEnd` | No | string | `none` | Shape at edge start |
221
+ | `toNode` | Yes | string | - | Node ID where connection ends |
222
+ | `toSide` | No | string | - | Side where edge ends |
223
+ | `toEnd` | No | string | `arrow` | Shape at edge end |
224
+ | `color` | No | canvasColor | - | Line color |
225
+ | `label` | No | string | - | Text label for the edge |
226
+
227
+ ### Side Values
228
+
229
+ | Value | Description |
230
+ |-------|-------------|
231
+ | `top` | Top edge of node |
232
+ | `right` | Right edge of node |
233
+ | `bottom` | Bottom edge of node |
234
+ | `left` | Left edge of node |
235
+
236
+ ### End Shapes
237
+
238
+ | Value | Description |
239
+ |-------|-------------|
240
+ | `none` | No endpoint shape |
241
+ | `arrow` | Arrow endpoint |
242
+
243
+ ## Colors
244
+
245
+ The `canvasColor` type can be specified in two ways:
246
+
247
+ ### Hex Colors
248
+
249
+ ```json
250
+ {
251
+ "color": "#FF0000"
252
+ }
253
+ ```
254
+
255
+ ### Preset Colors
256
+
257
+ ```json
258
+ {
259
+ "color": "1"
260
+ }
261
+ ```
262
+
263
+ | Preset | Color |
264
+ |--------|-------|
265
+ | `"1"` | Red |
266
+ | `"2"` | Orange |
267
+ | `"3"` | Yellow |
268
+ | `"4"` | Green |
269
+ | `"5"` | Cyan |
270
+ | `"6"` | Purple |
271
+
272
+ Note: Specific color values for presets are intentionally undefined, allowing applications to use their own brand colors.
273
+
274
+ ## Complete Examples
275
+
276
+ ### Simple Canvas with Text and Connections
277
+
278
+ ```json
279
+ {
280
+ "nodes": [
281
+ {
282
+ "id": "8a9b0c1d2e3f4a5b",
283
+ "type": "text",
284
+ "x": 0,
285
+ "y": 0,
286
+ "width": 300,
287
+ "height": 150,
288
+ "text": "# Main Idea\n\nThis is the central concept."
289
+ },
290
+ {
291
+ "id": "1a2b3c4d5e6f7a8b",
292
+ "type": "text",
293
+ "x": 400,
294
+ "y": -100,
295
+ "width": 250,
296
+ "height": 100,
297
+ "text": "## Supporting Point A\n\nDetails here."
298
+ },
299
+ {
300
+ "id": "2b3c4d5e6f7a8b9c",
301
+ "type": "text",
302
+ "x": 400,
303
+ "y": 100,
304
+ "width": 250,
305
+ "height": 100,
306
+ "text": "## Supporting Point B\n\nMore details."
307
+ }
308
+ ],
309
+ "edges": [
310
+ {
311
+ "id": "3c4d5e6f7a8b9c0d",
312
+ "fromNode": "8a9b0c1d2e3f4a5b",
313
+ "fromSide": "right",
314
+ "toNode": "1a2b3c4d5e6f7a8b",
315
+ "toSide": "left"
316
+ },
317
+ {
318
+ "id": "4d5e6f7a8b9c0d1e",
319
+ "fromNode": "8a9b0c1d2e3f4a5b",
320
+ "fromSide": "right",
321
+ "toNode": "2b3c4d5e6f7a8b9c",
322
+ "toSide": "left"
323
+ }
324
+ ]
325
+ }
326
+ ```
327
+
328
+ ### Project Board with Groups
329
+
330
+ ```json
331
+ {
332
+ "nodes": [
333
+ {
334
+ "id": "5e6f7a8b9c0d1e2f",
335
+ "type": "group",
336
+ "x": 0,
337
+ "y": 0,
338
+ "width": 300,
339
+ "height": 500,
340
+ "label": "To Do",
341
+ "color": "1"
342
+ },
343
+ {
344
+ "id": "6f7a8b9c0d1e2f3a",
345
+ "type": "group",
346
+ "x": 350,
347
+ "y": 0,
348
+ "width": 300,
349
+ "height": 500,
350
+ "label": "In Progress",
351
+ "color": "3"
352
+ },
353
+ {
354
+ "id": "7a8b9c0d1e2f3a4b",
355
+ "type": "group",
356
+ "x": 700,
357
+ "y": 0,
358
+ "width": 300,
359
+ "height": 500,
360
+ "label": "Done",
361
+ "color": "4"
362
+ },
363
+ {
364
+ "id": "8b9c0d1e2f3a4b5c",
365
+ "type": "text",
366
+ "x": 20,
367
+ "y": 50,
368
+ "width": 260,
369
+ "height": 80,
370
+ "text": "## Task 1\n\nImplement feature X"
371
+ },
372
+ {
373
+ "id": "9c0d1e2f3a4b5c6d",
374
+ "type": "text",
375
+ "x": 370,
376
+ "y": 50,
377
+ "width": 260,
378
+ "height": 80,
379
+ "text": "## Task 2\n\nReview PR #123",
380
+ "color": "2"
381
+ },
382
+ {
383
+ "id": "0d1e2f3a4b5c6d7e",
384
+ "type": "text",
385
+ "x": 720,
386
+ "y": 50,
387
+ "width": 260,
388
+ "height": 80,
389
+ "text": "## Task 3\n\n~~Setup CI/CD~~"
390
+ }
391
+ ],
392
+ "edges": []
393
+ }
394
+ ```
395
+
396
+ ### Research Canvas with Files and Links
397
+
398
+ ```json
399
+ {
400
+ "nodes": [
401
+ {
402
+ "id": "1e2f3a4b5c6d7e8f",
403
+ "type": "text",
404
+ "x": 300,
405
+ "y": 200,
406
+ "width": 400,
407
+ "height": 200,
408
+ "text": "# Research Topic\n\n## Key Questions\n\n- How does X affect Y?\n- What are the implications?",
409
+ "color": "5"
410
+ },
411
+ {
412
+ "id": "2f3a4b5c6d7e8f9a",
413
+ "type": "file",
414
+ "x": 0,
415
+ "y": 0,
416
+ "width": 250,
417
+ "height": 150,
418
+ "file": "Literature/Paper A.pdf"
419
+ },
420
+ {
421
+ "id": "3a4b5c6d7e8f9a0b",
422
+ "type": "file",
423
+ "x": 0,
424
+ "y": 200,
425
+ "width": 250,
426
+ "height": 150,
427
+ "file": "Notes/Meeting Notes.md",
428
+ "subpath": "#Key Insights"
429
+ },
430
+ {
431
+ "id": "4b5c6d7e8f9a0b1c",
432
+ "type": "link",
433
+ "x": 0,
434
+ "y": 400,
435
+ "width": 250,
436
+ "height": 100,
437
+ "url": "https://example.com/research"
438
+ },
439
+ {
440
+ "id": "5c6d7e8f9a0b1c2d",
441
+ "type": "file",
442
+ "x": 750,
443
+ "y": 150,
444
+ "width": 300,
445
+ "height": 250,
446
+ "file": "Attachments/diagram.png"
447
+ }
448
+ ],
449
+ "edges": [
450
+ {
451
+ "id": "6d7e8f9a0b1c2d3e",
452
+ "fromNode": "2f3a4b5c6d7e8f9a",
453
+ "fromSide": "right",
454
+ "toNode": "1e2f3a4b5c6d7e8f",
455
+ "toSide": "left",
456
+ "label": "supports"
457
+ },
458
+ {
459
+ "id": "7e8f9a0b1c2d3e4f",
460
+ "fromNode": "3a4b5c6d7e8f9a0b",
461
+ "fromSide": "right",
462
+ "toNode": "1e2f3a4b5c6d7e8f",
463
+ "toSide": "left",
464
+ "label": "informs"
465
+ },
466
+ {
467
+ "id": "8f9a0b1c2d3e4f5a",
468
+ "fromNode": "4b5c6d7e8f9a0b1c",
469
+ "fromSide": "right",
470
+ "toNode": "1e2f3a4b5c6d7e8f",
471
+ "toSide": "left",
472
+ "toEnd": "arrow",
473
+ "color": "6"
474
+ },
475
+ {
476
+ "id": "9a0b1c2d3e4f5a6b",
477
+ "fromNode": "1e2f3a4b5c6d7e8f",
478
+ "fromSide": "right",
479
+ "toNode": "5c6d7e8f9a0b1c2d",
480
+ "toSide": "left",
481
+ "label": "visualized by"
482
+ }
483
+ ]
484
+ }
485
+ ```
486
+
487
+ ### Flowchart
488
+
489
+ ```json
490
+ {
491
+ "nodes": [
492
+ {
493
+ "id": "a0b1c2d3e4f5a6b7",
494
+ "type": "text",
495
+ "x": 200,
496
+ "y": 0,
497
+ "width": 150,
498
+ "height": 60,
499
+ "text": "**Start**",
500
+ "color": "4"
501
+ },
502
+ {
503
+ "id": "b1c2d3e4f5a6b7c8",
504
+ "type": "text",
505
+ "x": 200,
506
+ "y": 100,
507
+ "width": 150,
508
+ "height": 60,
509
+ "text": "Step 1:\nGather data"
510
+ },
511
+ {
512
+ "id": "c2d3e4f5a6b7c8d9",
513
+ "type": "text",
514
+ "x": 200,
515
+ "y": 200,
516
+ "width": 150,
517
+ "height": 80,
518
+ "text": "**Decision**\n\nIs data valid?",
519
+ "color": "3"
520
+ },
521
+ {
522
+ "id": "d3e4f5a6b7c8d9e0",
523
+ "type": "text",
524
+ "x": 400,
525
+ "y": 200,
526
+ "width": 150,
527
+ "height": 60,
528
+ "text": "Process data"
529
+ },
530
+ {
531
+ "id": "e4f5a6b7c8d9e0f1",
532
+ "type": "text",
533
+ "x": 0,
534
+ "y": 200,
535
+ "width": 150,
536
+ "height": 60,
537
+ "text": "Request new data",
538
+ "color": "1"
539
+ },
540
+ {
541
+ "id": "f5a6b7c8d9e0f1a2",
542
+ "type": "text",
543
+ "x": 400,
544
+ "y": 320,
545
+ "width": 150,
546
+ "height": 60,
547
+ "text": "**End**",
548
+ "color": "4"
549
+ }
550
+ ],
551
+ "edges": [
552
+ {
553
+ "id": "a6b7c8d9e0f1a2b3",
554
+ "fromNode": "a0b1c2d3e4f5a6b7",
555
+ "fromSide": "bottom",
556
+ "toNode": "b1c2d3e4f5a6b7c8",
557
+ "toSide": "top"
558
+ },
559
+ {
560
+ "id": "b7c8d9e0f1a2b3c4",
561
+ "fromNode": "b1c2d3e4f5a6b7c8",
562
+ "fromSide": "bottom",
563
+ "toNode": "c2d3e4f5a6b7c8d9",
564
+ "toSide": "top"
565
+ },
566
+ {
567
+ "id": "c8d9e0f1a2b3c4d5",
568
+ "fromNode": "c2d3e4f5a6b7c8d9",
569
+ "fromSide": "right",
570
+ "toNode": "d3e4f5a6b7c8d9e0",
571
+ "toSide": "left",
572
+ "label": "Yes",
573
+ "color": "4"
574
+ },
575
+ {
576
+ "id": "d9e0f1a2b3c4d5e6",
577
+ "fromNode": "c2d3e4f5a6b7c8d9",
578
+ "fromSide": "left",
579
+ "toNode": "e4f5a6b7c8d9e0f1",
580
+ "toSide": "right",
581
+ "label": "No",
582
+ "color": "1"
583
+ },
584
+ {
585
+ "id": "e0f1a2b3c4d5e6f7",
586
+ "fromNode": "e4f5a6b7c8d9e0f1",
587
+ "fromSide": "top",
588
+ "fromEnd": "none",
589
+ "toNode": "b1c2d3e4f5a6b7c8",
590
+ "toSide": "left",
591
+ "toEnd": "arrow"
592
+ },
593
+ {
594
+ "id": "f1a2b3c4d5e6f7a8",
595
+ "fromNode": "d3e4f5a6b7c8d9e0",
596
+ "fromSide": "bottom",
597
+ "toNode": "f5a6b7c8d9e0f1a2",
598
+ "toSide": "top"
599
+ }
600
+ ]
601
+ }
602
+ ```
603
+
604
+ ## ID Generation
605
+
606
+ Node and edge IDs must be unique strings. Obsidian generates 16-character hexadecimal IDs:
607
+
608
+ ```json
609
+ "id": "6f0ad84f44ce9c17"
610
+ "id": "a3b2c1d0e9f8g7h6"
611
+ "id": "1234567890abcdef"
612
+ ```
613
+
614
+ This format is a 16-character lowercase hex string (64-bit random value).
615
+
616
+ ## Layout Guidelines
617
+
618
+ ### Positioning
619
+
620
+ - Coordinates can be negative (canvas extends infinitely)
621
+ - `x` increases to the right
622
+ - `y` increases downward
623
+ - Position refers to top-left corner of node
624
+
625
+ ### Recommended Sizes
626
+
627
+ | Node Type | Suggested Width | Suggested Height |
628
+ |-----------|-----------------|------------------|
629
+ | Small text | 200-300 | 80-150 |
630
+ | Medium text | 300-450 | 150-300 |
631
+ | Large text | 400-600 | 300-500 |
632
+ | File preview | 300-500 | 200-400 |
633
+ | Link preview | 250-400 | 100-200 |
634
+ | Group | Varies | Varies |
635
+
636
+ ### Spacing
637
+
638
+ - Leave 20-50px padding inside groups
639
+ - Space nodes 50-100px apart for readability
640
+ - Align nodes to grid (multiples of 10 or 20) for cleaner layouts
641
+
642
+ ## Validation Rules
643
+
644
+ 1. All `id` values must be unique across nodes and edges
645
+ 2. `fromNode` and `toNode` must reference existing node IDs
646
+ 3. Required fields must be present for each node type
647
+ 4. `type` must be one of: `text`, `file`, `link`, `group`
648
+ 5. `backgroundStyle` must be one of: `cover`, `ratio`, `repeat`
649
+ 6. `fromSide`, `toSide` must be one of: `top`, `right`, `bottom`, `left`
650
+ 7. `fromEnd`, `toEnd` must be one of: `none`, `arrow`
651
+ 8. Color presets must be `"1"` through `"6"` or valid hex color
652
+
653
+ ## References
654
+
655
+ - [JSON Canvas Spec 1.0](https://jsoncanvas.org/spec/1.0/)
656
+ - [JSON Canvas GitHub](https://github.com/obsidianmd/jsoncanvas)
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "marketingskills",
3
+ "owner": {
4
+ "name": "Corey Haines",
5
+ "url": "https://corey.co"
6
+ },
7
+ "metadata": {
8
+ "description": "Marketing skills for Claude Code — conversion optimization, copywriting, SEO, paid ads, and growth",
9
+ "version": "1.0.0",
10
+ "repository": "https://github.com/coreyhaines31/marketingskills"
11
+ },
12
+ "plugins": [
13
+ {
14
+ "name": "marketing-skills",
15
+ "description": "23 marketing skills for technical marketers and founders: CRO, copywriting, SEO, paid ads, pricing strategy, referral programs, and more",
16
+ "source": "./",
17
+ "strict": false,
18
+ "skills": [
19
+ "./skills/ab-test-setup",
20
+ "./skills/analytics-tracking",
21
+ "./skills/competitor-alternatives",
22
+ "./skills/copy-editing",
23
+ "./skills/copywriting",
24
+ "./skills/email-sequence",
25
+ "./skills/form-cro",
26
+ "./skills/free-tool-strategy",
27
+ "./skills/launch-strategy",
28
+ "./skills/marketing-ideas",
29
+ "./skills/marketing-psychology",
30
+ "./skills/onboarding-cro",
31
+ "./skills/page-cro",
32
+ "./skills/paid-ads",
33
+ "./skills/paywall-upgrade-cro",
34
+ "./skills/popup-cro",
35
+ "./skills/pricing-strategy",
36
+ "./skills/programmatic-seo",
37
+ "./skills/referral-program",
38
+ "./skills/schema-markup",
39
+ "./skills/seo-audit",
40
+ "./skills/signup-flow-cro",
41
+ "./skills/social-content"
42
+ ]
43
+ }
44
+ ]
45
+ }