bobo-ai-cli 2.1.0 → 3.0.1

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 (260) hide show
  1. package/README.md +52 -9
  2. package/bundled-skills/CORE_SKILLS.txt +18 -0
  3. package/dist/agent.js +91 -51
  4. package/dist/agent.js.map +1 -1
  5. package/dist/agents/catalog.d.ts +40 -0
  6. package/dist/agents/catalog.js +172 -0
  7. package/dist/agents/catalog.js.map +1 -0
  8. package/dist/agents/index.d.ts +6 -0
  9. package/dist/agents/index.js +4 -0
  10. package/dist/agents/index.js.map +1 -0
  11. package/dist/agents/router.d.ts +43 -0
  12. package/dist/agents/router.js +87 -0
  13. package/dist/agents/router.js.map +1 -0
  14. package/dist/agents/spawn.d.ts +46 -0
  15. package/dist/agents/spawn.js +91 -0
  16. package/dist/agents/spawn.js.map +1 -0
  17. package/dist/autonomous.js +41 -1
  18. package/dist/autonomous.js.map +1 -1
  19. package/dist/cli.d.ts +8 -0
  20. package/dist/cli.js +669 -0
  21. package/dist/cli.js.map +1 -0
  22. package/dist/compactor.d.ts +49 -4
  23. package/dist/compactor.js +164 -17
  24. package/dist/compactor.js.map +1 -1
  25. package/dist/completer.js +2 -0
  26. package/dist/completer.js.map +1 -1
  27. package/dist/config.js +3 -2
  28. package/dist/config.js.map +1 -1
  29. package/dist/cost-tracker.js +36 -2
  30. package/dist/cost-tracker.js.map +1 -1
  31. package/dist/dream.d.ts +42 -0
  32. package/dist/dream.js +324 -0
  33. package/dist/dream.js.map +1 -0
  34. package/dist/hooks.d.ts +1 -1
  35. package/dist/hooks.js +7 -2
  36. package/dist/hooks.js.map +1 -1
  37. package/dist/index.js +10 -1136
  38. package/dist/index.js.map +1 -1
  39. package/dist/insight.js +4 -11
  40. package/dist/insight.js.map +1 -1
  41. package/dist/knowledge.d.ts +13 -0
  42. package/dist/knowledge.js +16 -4
  43. package/dist/knowledge.js.map +1 -1
  44. package/dist/mcp-client.js +59 -41
  45. package/dist/mcp-client.js.map +1 -1
  46. package/dist/memory.d.ts +4 -0
  47. package/dist/memory.js +30 -18
  48. package/dist/memory.js.map +1 -1
  49. package/dist/project.js +2 -1
  50. package/dist/project.js.map +1 -1
  51. package/dist/providers.js +1 -1
  52. package/dist/providers.js.map +1 -1
  53. package/dist/repl.d.ts +16 -0
  54. package/dist/repl.js +704 -0
  55. package/dist/repl.js.map +1 -0
  56. package/dist/sessions.js +59 -3
  57. package/dist/sessions.js.map +1 -1
  58. package/dist/skill-router.js +2 -2
  59. package/dist/skill-router.js.map +1 -1
  60. package/dist/skills/composer.d.ts +18 -0
  61. package/dist/skills/composer.js +59 -0
  62. package/dist/skills/composer.js.map +1 -0
  63. package/dist/skills/index.d.ts +3 -0
  64. package/dist/skills/index.js +3 -0
  65. package/dist/skills/index.js.map +1 -0
  66. package/dist/skills/loader.d.ts +12 -0
  67. package/dist/skills/loader.js +150 -0
  68. package/dist/skills/loader.js.map +1 -0
  69. package/dist/skills/types.d.ts +28 -0
  70. package/dist/skills/types.js +9 -0
  71. package/dist/skills/types.js.map +1 -0
  72. package/dist/skills.d.ts +1 -0
  73. package/dist/skills.js +10 -8
  74. package/dist/skills.js.map +1 -1
  75. package/dist/state/artifacts.d.ts +71 -0
  76. package/dist/state/artifacts.js +133 -0
  77. package/dist/state/artifacts.js.map +1 -0
  78. package/dist/state/index.d.ts +9 -0
  79. package/dist/state/index.js +7 -0
  80. package/dist/state/index.js.map +1 -0
  81. package/dist/state/manager.d.ts +89 -0
  82. package/dist/state/manager.js +132 -0
  83. package/dist/state/manager.js.map +1 -0
  84. package/dist/state/project-memory.d.ts +24 -0
  85. package/dist/state/project-memory.js +83 -0
  86. package/dist/state/project-memory.js.map +1 -0
  87. package/dist/state/recovery.d.ts +24 -0
  88. package/dist/state/recovery.js +95 -0
  89. package/dist/state/recovery.js.map +1 -0
  90. package/dist/statusbar.d.ts +1 -0
  91. package/dist/statusbar.js +12 -1
  92. package/dist/statusbar.js.map +1 -1
  93. package/dist/structured/loader.js +4 -2
  94. package/dist/structured/loader.js.map +1 -1
  95. package/dist/sub-agent-runner.d.ts +1 -0
  96. package/dist/sub-agent-runner.js +32 -5
  97. package/dist/sub-agent-runner.js.map +1 -1
  98. package/dist/sub-agents.d.ts +19 -1
  99. package/dist/sub-agents.js +142 -5
  100. package/dist/sub-agents.js.map +1 -1
  101. package/dist/tool-governance.d.ts +77 -0
  102. package/dist/tool-governance.js +366 -0
  103. package/dist/tool-governance.js.map +1 -0
  104. package/dist/tools/advanced.js +3 -2
  105. package/dist/tools/advanced.js.map +1 -1
  106. package/dist/tools/browser.js +2 -2
  107. package/dist/tools/browser.js.map +1 -1
  108. package/dist/tools/claude-code.js +2 -2
  109. package/dist/tools/claude-code.js.map +1 -1
  110. package/dist/tools/index.js +36 -12
  111. package/dist/tools/index.js.map +1 -1
  112. package/dist/tools/process-manager.js +2 -2
  113. package/dist/tools/process-manager.js.map +1 -1
  114. package/dist/ui/hud.d.ts +25 -0
  115. package/dist/ui/hud.js +67 -0
  116. package/dist/ui/hud.js.map +1 -0
  117. package/dist/verification-agent.d.ts +46 -0
  118. package/dist/verification-agent.js +533 -0
  119. package/dist/verification-agent.js.map +1 -0
  120. package/dist/watcher.js +2 -2
  121. package/dist/watcher.js.map +1 -1
  122. package/dist/web.js +1 -1
  123. package/dist/web.js.map +1 -1
  124. package/dist/workflows/ask.d.ts +13 -0
  125. package/dist/workflows/ask.js +66 -0
  126. package/dist/workflows/ask.js.map +1 -0
  127. package/dist/workflows/index.d.ts +5 -0
  128. package/dist/workflows/index.js +6 -0
  129. package/dist/workflows/index.js.map +1 -0
  130. package/dist/workflows/interview.d.ts +11 -0
  131. package/dist/workflows/interview.js +36 -0
  132. package/dist/workflows/interview.js.map +1 -0
  133. package/dist/workflows/plan.d.ts +13 -0
  134. package/dist/workflows/plan.js +34 -0
  135. package/dist/workflows/plan.js.map +1 -0
  136. package/dist/workflows/team.d.ts +17 -0
  137. package/dist/workflows/team.js +86 -0
  138. package/dist/workflows/team.js.map +1 -0
  139. package/dist/workflows/verify.d.ts +11 -0
  140. package/dist/workflows/verify.js +21 -0
  141. package/dist/workflows/verify.js.map +1 -0
  142. package/package.json +18 -5
  143. package/bundled-skills/Skill_Seekers/SKILL.md +0 -1722
  144. package/bundled-skills/ab-test-setup/SKILL.md +0 -557
  145. package/bundled-skills/adversarial-verification/SKILL.md +0 -95
  146. package/bundled-skills/agent-sdk-dev/SKILL.md +0 -238
  147. package/bundled-skills/agent-tools/SKILL.md +0 -136
  148. package/bundled-skills/analytics-tracking/SKILL.md +0 -597
  149. package/bundled-skills/artifacts-builder/SKILL.md +0 -89
  150. package/bundled-skills/asana/SKILL.md +0 -13
  151. package/bundled-skills/brand-voice/SKILL.md +0 -481
  152. package/bundled-skills/browser-use/SKILL.md +0 -419
  153. package/bundled-skills/cache-optimization-skill/SKILL.md +0 -179
  154. package/bundled-skills/canvas-design/SKILL.md +0 -147
  155. package/bundled-skills/citation-validator/SKILL.md +0 -203
  156. package/bundled-skills/clangd-lsp/SKILL.md +0 -52
  157. package/bundled-skills/code-simplifier/SKILL.md +0 -13
  158. package/bundled-skills/commit-commands/SKILL.md +0 -258
  159. package/bundled-skills/competitor-alternatives/SKILL.md +0 -795
  160. package/bundled-skills/content-atomizer/SKILL.md +0 -910
  161. package/bundled-skills/content-research-writer/SKILL.md +0 -605
  162. package/bundled-skills/context7/SKILL.md +0 -13
  163. package/bundled-skills/copy-editing/SKILL.md +0 -494
  164. package/bundled-skills/copywriting/SKILL.md +0 -510
  165. package/bundled-skills/csharp-lsp/SKILL.md +0 -40
  166. package/bundled-skills/decision-making-framework/SKILL.md +0 -154
  167. package/bundled-skills/deep-research/SKILL.md +0 -236
  168. package/bundled-skills/developer-growth-analysis/SKILL.md +0 -335
  169. package/bundled-skills/direct-response-copy/SKILL.md +0 -2336
  170. package/bundled-skills/docker-expert/SKILL.md +0 -229
  171. package/bundled-skills/document-skills/SKILL.md +0 -13
  172. package/bundled-skills/documentation-expert/SKILL.md +0 -126
  173. package/bundled-skills/email-sequence/SKILL.md +0 -1061
  174. package/bundled-skills/email-sequences/SKILL.md +0 -910
  175. package/bundled-skills/example-plugin/SKILL.md +0 -72
  176. package/bundled-skills/explanatory-output-style/SKILL.md +0 -82
  177. package/bundled-skills/feature-dev/SKILL.md +0 -458
  178. package/bundled-skills/file-organizer/SKILL.md +0 -466
  179. package/bundled-skills/firebase.disabled/SKILL.md +0 -13
  180. package/bundled-skills/form-cro/SKILL.md +0 -488
  181. package/bundled-skills/free-tool-strategy/SKILL.md +0 -636
  182. package/bundled-skills/frontend-design/SKILL.md +0 -41
  183. package/bundled-skills/frontend-design-offical/SKILL.md +0 -55
  184. package/bundled-skills/gitlab/SKILL.md +0 -13
  185. package/bundled-skills/gopls-lsp/SKILL.md +0 -32
  186. package/bundled-skills/got-controller/SKILL.md +0 -218
  187. package/bundled-skills/greptile/SKILL.md +0 -72
  188. package/bundled-skills/hookify/SKILL.md +0 -376
  189. package/bundled-skills/image-editor/SKILL.md +0 -189
  190. package/bundled-skills/image-enhancer/SKILL.md +0 -109
  191. package/bundled-skills/jdtls-lsp/SKILL.md +0 -49
  192. package/bundled-skills/json-canvas/SKILL.md +0 -654
  193. package/bundled-skills/keyword-research/SKILL.md +0 -559
  194. package/bundled-skills/kotlin-lsp/SKILL.md +0 -28
  195. package/bundled-skills/laravel-boost/SKILL.md +0 -13
  196. package/bundled-skills/launch-strategy/SKILL.md +0 -394
  197. package/bundled-skills/lead-magnet/SKILL.md +0 -393
  198. package/bundled-skills/learning-output-style/SKILL.md +0 -106
  199. package/bundled-skills/linear/SKILL.md +0 -13
  200. package/bundled-skills/lua-lsp/SKILL.md +0 -47
  201. package/bundled-skills/marketing-ideas/SKILL.md +0 -720
  202. package/bundled-skills/marketing-psychology/SKILL.md +0 -534
  203. package/bundled-skills/mcp-builder/SKILL.md +0 -369
  204. package/bundled-skills/meeting-insights-analyzer/SKILL.md +0 -347
  205. package/bundled-skills/memory-evolution-system/SKILL.md +0 -172
  206. package/bundled-skills/multi-lens-thinking/SKILL.md +0 -407
  207. package/bundled-skills/nano-banana-pro/SKILL.md +0 -116
  208. package/bundled-skills/newsletter/SKILL.md +0 -736
  209. package/bundled-skills/notebooklm/SKILL.md +0 -296
  210. package/bundled-skills/obsidian-bases/SKILL.md +0 -634
  211. package/bundled-skills/obsidian-markdown/SKILL.md +0 -651
  212. package/bundled-skills/onboarding-cro/SKILL.md +0 -494
  213. package/bundled-skills/page-cro/SKILL.md +0 -379
  214. package/bundled-skills/paid-ads/SKILL.md +0 -624
  215. package/bundled-skills/paywall-upgrade-cro/SKILL.md +0 -651
  216. package/bundled-skills/php-lsp/SKILL.md +0 -36
  217. package/bundled-skills/playwright/SKILL.md +0 -13
  218. package/bundled-skills/plugin-dev/SKILL.md +0 -434
  219. package/bundled-skills/popup-cro/SKILL.md +0 -520
  220. package/bundled-skills/positioning-angles/SKILL.md +0 -330
  221. package/bundled-skills/pr-review-toolkit/SKILL.md +0 -359
  222. package/bundled-skills/pricing-strategy/SKILL.md +0 -777
  223. package/bundled-skills/proactive-self-improving/SKILL.md +0 -435
  224. package/bundled-skills/programmatic-seo/SKILL.md +0 -714
  225. package/bundled-skills/pyright-lsp/SKILL.md +0 -43
  226. package/bundled-skills/quality-assurance-framework/SKILL.md +0 -168
  227. package/bundled-skills/question-refiner/SKILL.md +0 -160
  228. package/bundled-skills/ralph-loop/SKILL.md +0 -205
  229. package/bundled-skills/refactoring-expert/SKILL.md +0 -103
  230. package/bundled-skills/referral-program/SKILL.md +0 -668
  231. package/bundled-skills/research-executor/SKILL.md +0 -164
  232. package/bundled-skills/review-with-security/SKILL.md +0 -12
  233. package/bundled-skills/rust-analyzer-lsp/SKILL.md +0 -50
  234. package/bundled-skills/schema-markup/SKILL.md +0 -647
  235. package/bundled-skills/security-audit-expert/SKILL.md +0 -124
  236. package/bundled-skills/security-expert/SKILL.md +0 -140
  237. package/bundled-skills/security-guidance/SKILL.md +0 -13
  238. package/bundled-skills/seedance-prompt/SKILL.md +0 -139
  239. package/bundled-skills/self-evolution/SKILL.md +0 -1160
  240. package/bundled-skills/seo-audit/SKILL.md +0 -432
  241. package/bundled-skills/seo-content/SKILL.md +0 -787
  242. package/bundled-skills/serena/SKILL.md +0 -13
  243. package/bundled-skills/signup-flow-cro/SKILL.md +0 -409
  244. package/bundled-skills/skill-manager/SKILL.md +0 -226
  245. package/bundled-skills/skill-share/SKILL.md +0 -98
  246. package/bundled-skills/slack/SKILL.md +0 -13
  247. package/bundled-skills/social-content/SKILL.md +0 -878
  248. package/bundled-skills/spec-flow-skill/SKILL.md +0 -124
  249. package/bundled-skills/stripe/SKILL.md +0 -13
  250. package/bundled-skills/supabase/SKILL.md +0 -13
  251. package/bundled-skills/swift-lsp/SKILL.md +0 -40
  252. package/bundled-skills/synthesizer/SKILL.md +0 -236
  253. package/bundled-skills/template-skill/SKILL.md +0 -16
  254. package/bundled-skills/theme-factory/SKILL.md +0 -72
  255. package/bundled-skills/tiktok-research/SKILL.md +0 -208
  256. package/bundled-skills/typescript-lsp/SKILL.md +0 -36
  257. package/bundled-skills/ui-ux-pro-max/SKILL.md +0 -247
  258. package/bundled-skills/visual-prompt-engineer/SKILL.md +0 -102
  259. package/bundled-skills/webapp-testing/SKILL.md +0 -111
  260. package/bundled-skills/wide-research/SKILL.md +0 -191
@@ -1,651 +0,0 @@
1
- ---
2
- id: "obsidian-markdown"
3
- title: "Obsidian Flavored Markdown Skill"
4
- category: "knowledge"
5
- tags: ["overview", "basic formatting", "heading 1", "heading 2", "internal links (wikilinks)", "markdown-style links", "embeds", "callouts", "lists", "quotes"]
6
- triggers: []
7
- dependencies: []
8
- source: "E:/Bobo's Coding cache/.claude/skills/obsidian-markdown"
9
- ---
10
-
11
- ---
12
- name: obsidian-markdown
13
- description: Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
14
- ---
15
-
16
- # Obsidian Flavored Markdown Skill
17
-
18
- This skill enables Claude Code to create and edit valid Obsidian Flavored Markdown, including all Obsidian-specific syntax extensions.
19
-
20
- ## Overview
21
-
22
- Obsidian uses a combination of Markdown flavors:
23
-
24
- - [CommonMark](https://commonmark.org/)
25
- - [GitHub Flavored Markdown](https://github.github.com/gfm/)
26
- - [LaTeX](https://www.latex-project.org/) for math
27
- - Obsidian-specific extensions (wikilinks, callouts, embeds, etc.)
28
-
29
- ## Basic Formatting
30
-
31
- ### Paragraphs and Line Breaks
32
-
33
- ```markdown
34
- This is a paragraph.
35
-
36
- This is another paragraph (blank line between creates separate paragraphs).
37
-
38
- For a line break within a paragraph, add two spaces at the end
39
- or use Shift+Enter.
40
- ```
41
-
42
- ### Headings
43
-
44
- ```markdown
45
- # Heading 1
46
-
47
- ## Heading 2
48
-
49
- ### Heading 3
50
-
51
- #### Heading 4
52
-
53
- ##### Heading 5
54
-
55
- ###### Heading 6
56
- ```
57
-
58
- ### Text Formatting
59
-
60
- | Style | Syntax | Example | Output |
61
- | ------------- | ------------------------ | ----------------- | --------------- |
62
- | Bold | `**text**` or `__text__` | `**Bold**` | **Bold** |
63
- | Italic | `*text*` or `_text_` | `*Italic*` | _Italic_ |
64
- | Bold + Italic | `***text***` | `***Both***` | **_Both_** |
65
- | Strikethrough | `~~text~~` | `~~Striked~~` | ~~Striked~~ |
66
- | Highlight | `==text==` | `==Highlighted==` | ==Highlighted== |
67
- | Inline code | `` `code` `` | `` `code` `` | `code` |
68
-
69
- ### Escaping Formatting
70
-
71
- Use backslash to escape special characters:
72
-
73
- ```markdown
74
- \*This won't be italic\*
75
- \#This won't be a heading
76
- 1\. This won't be a list item
77
- ```
78
-
79
- Common characters to escape: `\*`, `\_`, `\#`, `` \` ``, `\|`, `\~`
80
-
81
- ## Internal Links (Wikilinks)
82
-
83
- ### Basic Links
84
-
85
- ```markdown
86
- [[Note Name]]
87
- [[Note Name.md]]
88
- [[Note Name|Display Text]]
89
- ```
90
-
91
- ### Link to Headings
92
-
93
- ```markdown
94
- [[Note Name#Heading]]
95
- [[Note Name#Heading|Custom Text]]
96
- [[#Heading in same note]]
97
- [[##Search all headings in vault]]
98
- ```
99
-
100
- ### Link to Blocks
101
-
102
- ```markdown
103
- [[Note Name#^block-id]]
104
- [[Note Name#^block-id|Custom Text]]
105
- ```
106
-
107
- Define a block ID by adding `^block-id` at the end of a paragraph:
108
-
109
- ```markdown
110
- This is a paragraph that can be linked to. ^my-block-id
111
- ```
112
-
113
- For lists and quotes, add the block ID on a separate line:
114
-
115
- ```markdown
116
- > This is a quote
117
- > With multiple lines
118
-
119
- ^quote-id
120
- ```
121
-
122
- ### Search Links
123
-
124
- ```markdown
125
- [[##heading]] Search for headings containing "heading"
126
- [[^^block]] Search for blocks containing "block"
127
- ```
128
-
129
- ## Markdown-Style Links
130
-
131
- ```markdown
132
- [Display Text](Note%20Name.md)
133
- [Display Text](Note%20Name.md#Heading)
134
- [Display Text](https://example.com)
135
- [Note](obsidian://open?vault=VaultName&file=Note.md)
136
- ```
137
-
138
- Note: Spaces must be URL-encoded as `%20` in Markdown links.
139
-
140
- ## Embeds
141
-
142
- ### Embed Notes
143
-
144
- ```markdown
145
- ![[Note Name]]
146
- ![[Note Name#Heading]]
147
- ![[Note Name#^block-id]]
148
- ```
149
-
150
- ### Embed Images
151
-
152
- ```markdown
153
- ![[image.png]]
154
- ![[image.png|640x480]] Width x Height
155
- ![[image.png|300]] Width only (maintains aspect ratio)
156
- ```
157
-
158
- ### External Images
159
-
160
- ```markdown
161
- ![Alt text](https://example.com/image.png)
162
- ![Alt text|300](https://example.com/image.png)
163
- ```
164
-
165
- ### Embed Audio
166
-
167
- ```markdown
168
- ![[audio.mp3]]
169
- ![[audio.ogg]]
170
- ```
171
-
172
- ### Embed PDF
173
-
174
- ```markdown
175
- ![[document.pdf]]
176
- ![[document.pdf#page=3]]
177
- ![[document.pdf#height=400]]
178
- ```
179
-
180
- ### Embed Lists
181
-
182
- ```markdown
183
- ![[Note#^list-id]]
184
- ```
185
-
186
- Where the list has been defined with a block ID:
187
-
188
- ```markdown
189
- - Item 1
190
- - Item 2
191
- - Item 3
192
-
193
- ^list-id
194
- ```
195
-
196
- ### Embed Search Results
197
-
198
- ````markdown
199
- ```query
200
- tag:#project status:done
201
- ```
202
- ````
203
-
204
- ## Callouts
205
-
206
- ### Basic Callout
207
-
208
- ```markdown
209
- > [!note]
210
- > This is a note callout.
211
-
212
- > [!info] Custom Title
213
- > This callout has a custom title.
214
-
215
- > [!tip] Title Only
216
- ```
217
-
218
- ### Foldable Callouts
219
-
220
- ```markdown
221
- > [!faq]- Collapsed by default
222
- > This content is hidden until expanded.
223
-
224
- > [!faq]+ Expanded by default
225
- > This content is visible but can be collapsed.
226
- ```
227
-
228
- ### Nested Callouts
229
-
230
- ```markdown
231
- > [!question] Outer callout
232
- >
233
- > > [!note] Inner callout
234
- > > Nested content
235
- ```
236
-
237
- ### Supported Callout Types
238
-
239
- | Type | Aliases | Description |
240
- | ---------- | ---------------------- | --------------------- |
241
- | `note` | - | Blue, pencil icon |
242
- | `abstract` | `summary`, `tldr` | Teal, clipboard icon |
243
- | `info` | - | Blue, info icon |
244
- | `todo` | - | Blue, checkbox icon |
245
- | `tip` | `hint`, `important` | Cyan, flame icon |
246
- | `success` | `check`, `done` | Green, checkmark icon |
247
- | `question` | `help`, `faq` | Yellow, question mark |
248
- | `warning` | `caution`, `attention` | Orange, warning icon |
249
- | `failure` | `fail`, `missing` | Red, X icon |
250
- | `danger` | `error` | Red, zap icon |
251
- | `bug` | - | Red, bug icon |
252
- | `example` | - | Purple, list icon |
253
- | `quote` | `cite` | Gray, quote icon |
254
-
255
- ### Custom Callouts (CSS)
256
-
257
- ```css
258
- .callout[data-callout='custom-type'] {
259
- --callout-color: 255, 0, 0;
260
- --callout-icon: lucide-alert-circle;
261
- }
262
- ```
263
-
264
- ## Lists
265
-
266
- ### Unordered Lists
267
-
268
- ```markdown
269
- - Item 1
270
- - Item 2
271
- - Nested item
272
- - Another nested
273
- - Item 3
274
-
275
- * Also works with asterisks
276
-
277
- - Or plus signs
278
- ```
279
-
280
- ### Ordered Lists
281
-
282
- ```markdown
283
- 1. First item
284
- 2. Second item
285
- 1. Nested numbered
286
- 2. Another nested
287
- 3. Third item
288
-
289
- 1) Alternative syntax
290
- 2) With parentheses
291
- ```
292
-
293
- ### Task Lists
294
-
295
- ```markdown
296
- - [ ] Incomplete task
297
- - [x] Completed task
298
- - [ ] Task with sub-tasks
299
- - [ ] Subtask 1
300
- - [x] Subtask 2
301
- ```
302
-
303
- ## Quotes
304
-
305
- ```markdown
306
- > This is a blockquote.
307
- > It can span multiple lines.
308
- >
309
- > And include multiple paragraphs.
310
- >
311
- > > Nested quotes work too.
312
- ```
313
-
314
- ## Code
315
-
316
- ### Inline Code
317
-
318
- ```markdown
319
- Use `backticks` for inline code.
320
- Use double backticks for ``code with a ` backtick inside``.
321
- ```
322
-
323
- ### Code Blocks
324
-
325
- ````markdown
326
- ```
327
- Plain code block
328
- ```
329
-
330
- ```javascript
331
- // Syntax highlighted code block
332
- function hello() {
333
- console.log('Hello, world!');
334
- }
335
- ```
336
-
337
- ```python
338
- # Python example
339
- def greet(name):
340
- print(f"Hello, {name}!")
341
- ```
342
- ````
343
-
344
- ### Nesting Code Blocks
345
-
346
- Use more backticks or tildes for the outer block:
347
-
348
- `````markdown
349
- ````markdown
350
- Here's how to create a code block:
351
-
352
- ```js
353
- console.log('Hello');
354
- ```
355
- ````
356
- `````
357
-
358
- ## Tables
359
-
360
- ```markdown
361
- | Header 1 | Header 2 | Header 3 |
362
- | -------- | -------- | -------- |
363
- | Cell 1 | Cell 2 | Cell 3 |
364
- | Cell 4 | Cell 5 | Cell 6 |
365
- ```
366
-
367
- ### Alignment
368
-
369
- ```markdown
370
- | Left | Center | Right |
371
- | :--- | :----: | ----: |
372
- | Left | Center | Right |
373
- ```
374
-
375
- ### Using Pipes in Tables
376
-
377
- Escape pipes with backslash:
378
-
379
- ```markdown
380
- | Column 1 | Column 2 |
381
- | ----------------- | --------------- |
382
- | [[Link\|Display]] | ![[Image\|100]] |
383
- ```
384
-
385
- ## Math (LaTeX)
386
-
387
- ### Inline Math
388
-
389
- ```markdown
390
- This is inline math: $e^{i\pi} + 1 = 0$
391
- ```
392
-
393
- ### Block Math
394
-
395
- ```markdown
396
- $$
397
- \begin{vmatrix}
398
- a & b \\
399
- c & d
400
- \end{vmatrix} = ad - bc
401
- $$
402
- ```
403
-
404
- ### Common Math Syntax
405
-
406
- ```markdown
407
- $x^2$ Superscript
408
- $x_i$ Subscript
409
- $\frac{a}{b}$ Fraction
410
- $\sqrt{x}$ Square root
411
- $\sum_{i=1}^{n}$ Summation
412
- $\int_a^b$ Integral
413
- $\alpha, \beta$ Greek letters
414
- ```
415
-
416
- ## Diagrams (Mermaid)
417
-
418
- ````markdown
419
- ```mermaid
420
- graph TD
421
- A[Start] --> B{Decision}
422
- B -->|Yes| C[Do this]
423
- B -->|No| D[Do that]
424
- C --> E[End]
425
- D --> E
426
- ```
427
- ````
428
-
429
- ### Sequence Diagrams
430
-
431
- ````markdown
432
- ```mermaid
433
- sequenceDiagram
434
- Alice->>Bob: Hello Bob
435
- Bob-->>Alice: Hi Alice
436
- ```
437
- ````
438
-
439
- ### Linking in Diagrams
440
-
441
- ````markdown
442
- ```mermaid
443
- graph TD
444
- A[Biology]
445
- B[Chemistry]
446
- A --> B
447
- class A,B internal-link;
448
- ```
449
- ````
450
-
451
- ## Footnotes
452
-
453
- ```markdown
454
- This sentence has a footnote[^1].
455
-
456
- [^1]: This is the footnote content.
457
-
458
- You can also use named footnotes[^note].
459
-
460
- [^note]: Named footnotes still appear as numbers.
461
-
462
- Inline footnotes are also supported.^[This is an inline footnote.]
463
- ```
464
-
465
- ## Comments
466
-
467
- ```markdown
468
- This is visible %%but this is hidden%% text.
469
-
470
- %%
471
- This entire block is hidden.
472
- It won't appear in reading view.
473
- %%
474
- ```
475
-
476
- ## Horizontal Rules
477
-
478
- ```markdown
479
- ---
480
- ---
481
-
482
- ---
483
-
484
- ---
485
-
486
- ---
487
- ```
488
-
489
- ## Properties (Frontmatter)
490
-
491
- Properties use YAML frontmatter at the start of a note:
492
-
493
- ```yaml
494
- ---
495
- title: My Note Title
496
- date: 2024-01-15
497
- tags:
498
- - project
499
- - important
500
- aliases:
501
- - My Note
502
- - Alternative Name
503
- cssclasses:
504
- - custom-class
505
- status: in-progress
506
- rating: 4.5
507
- completed: false
508
- due: 2024-02-01T14:30:00
509
- ---
510
- ```
511
-
512
- ### Property Types
513
-
514
- | Type | Example |
515
- | ----------- | ------------------------------- |
516
- | Text | `title: My Title` |
517
- | Number | `rating: 4.5` |
518
- | Checkbox | `completed: true` |
519
- | Date | `date: 2024-01-15` |
520
- | Date & Time | `due: 2024-01-15T14:30:00` |
521
- | List | `tags: [one, two]` or YAML list |
522
- | Links | `related: "[[Other Note]]"` |
523
-
524
- ### Default Properties
525
-
526
- - `tags` - Note tags
527
- - `aliases` - Alternative names for the note
528
- - `cssclasses` - CSS classes applied to the note
529
-
530
- ## Tags
531
-
532
- ```markdown
533
- #tag
534
- #nested/tag
535
- #tag-with-dashes
536
- #tag_with_underscores
537
-
538
- ## In frontmatter:
539
-
540
- tags:
541
-
542
- - tag1
543
- - nested/tag2
544
-
545
- ---
546
- ```
547
-
548
- Tags can contain:
549
-
550
- - Letters (any language)
551
- - Numbers (not as first character)
552
- - Underscores `_`
553
- - Hyphens `-`
554
- - Forward slashes `/` (for nesting)
555
-
556
- ## HTML Content
557
-
558
- Obsidian supports HTML within Markdown:
559
-
560
- ```markdown
561
- <div class="custom-container">
562
- <span style="color: red;">Colored text</span>
563
- </div>
564
-
565
- <details>
566
- <summary>Click to expand</summary>
567
- Hidden content here.
568
- </details>
569
-
570
- <kbd>Ctrl</kbd> + <kbd>C</kbd>
571
- ```
572
-
573
- ## Complete Example
574
-
575
- ````markdown
576
- ---
577
- title: Project Alpha
578
- date: 2024-01-15
579
- tags:
580
- - project
581
- - active
582
- status: in-progress
583
- priority: high
584
- ---
585
-
586
- # Project Alpha
587
-
588
- ## Overview
589
-
590
- This project aims to [[improve workflow]] using modern techniques.
591
-
592
- > [!important] Key Deadline
593
- > The first milestone is due on ==January 30th==.
594
-
595
- ## Tasks
596
-
597
- - [x] Initial planning
598
- - [x] Resource allocation
599
- - [ ] Development phase
600
- - [ ] Backend implementation
601
- - [ ] Frontend design
602
- - [ ] Testing
603
- - [ ] Deployment
604
-
605
- ## Technical Notes
606
-
607
- The main algorithm uses the formula $O(n \log n)$ for sorting.
608
-
609
- ```python
610
- def process_data(items):
611
- return sorted(items, key=lambda x: x.priority)
612
- ```
613
-
614
- ## Architecture
615
-
616
- ```mermaid
617
- graph LR
618
- A[Input] --> B[Process]
619
- B --> C[Output]
620
- B --> D[Cache]
621
- ```
622
-
623
- ## Related Documents
624
-
625
- - ![[Meeting Notes 2024-01-10#Decisions]]
626
- - [[Budget Allocation|Budget]]
627
- - [[Team Members]]
628
-
629
- ## References
630
-
631
- For more details, see the official documentation[^1].
632
-
633
- [^1]: https://example.com/docs
634
-
635
- %%
636
- Internal notes:
637
-
638
- - Review with team on Friday
639
- - Consider alternative approaches
640
- %%
641
- ````
642
-
643
- ## References
644
-
645
- - [Basic formatting syntax](https://help.obsidian.md/syntax)
646
- - [Advanced formatting syntax](https://help.obsidian.md/advanced-syntax)
647
- - [Obsidian Flavored Markdown](https://help.obsidian.md/obsidian-flavored-markdown)
648
- - [Internal links](https://help.obsidian.md/links)
649
- - [Embed files](https://help.obsidian.md/embeds)
650
- - [Callouts](https://help.obsidian.md/callouts)
651
- - [Properties](https://help.obsidian.md/properties)