.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/obsidian-skills/obsidian-markdown
home/skills/kepano/obsidian-skills/obsidian-markdown
kepano avatar

obsidian-markdown

bykepano· 5 skills

Installs

64k

Stars

43k

Forks

3.1k

Category

Documentation & Knowledge

View on GitHub

TL;DR

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.

How to install obsidian-markdown?

kepano/obsidian-skills/obsidian-markdown
$npx -y skills add kepano/obsidian-skills --skill obsidian-markdown

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/kepano/obsidian-skills" --skill "kepano/obsidian-skills/obsidian-markdown"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/kepano/obsidian-skills" that are relevant to the current task. Run `npx skills add "https://github.com/kepano/obsidian-skills"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Obsidian Flavored Markdown Skill
2 
3Create and edit valid Obsidian Flavored Markdown. Obsidian extends CommonMark and GFM with wikilinks, embeds, callouts, properties, comments, and other syntax. This skill covers only Obsidian-specific extensions -- standard Markdown (headings, bold, italic, lists, quotes, code blocks, tables) is assumed knowledge.
4 
5## Workflow: Creating an Obsidian Note
6 
71. **Add frontmatter** with properties (title, tags, aliases) at the top of the file. See [PROPERTIES.md](references/PROPERTIES.md) for all property types.
82. **Write content** using standard Markdown for structure, plus Obsidian-specific syntax below.
93. **Link related notes** using wikilinks (`[[Note]]`) for internal vault connections, or standard Markdown links for external URLs.
104. **Embed content** from other notes, images, or PDFs using the `![[embed]]` syntax. See [EMBEDS.md](references/EMBEDS.md) for all embed types.
115. **Add callouts** for highlighted information using `> [!type]` syntax. See [CALLOUTS.md](references/CALLOUTS.md) for all callout types.
126. **Verify** the note renders correctly in Obsidian's reading view.
13 
14> When choosing between wikilinks and Markdown links: use `[[wikilinks]]` for notes within the vault (Obsidian tracks renames automatically) and `[text](url)` for external URLs only.
15 
16## Internal Links (Wikilinks)
17 
18```markdown
19[[Note Name]] Link to note
20[[Note Name|Display Text]] Custom display text
21[[Note Name#Heading]] Link to heading
22[[Note Name#^block-id]] Link to block
23[[#Heading in same note]] Same-note heading link
24```
25 
26Define a block ID by appending `^block-id` to any paragraph:
27 
28```markdown
29This paragraph can be linked to. ^my-block-id
30```
31 
32For lists and quotes, place the block ID on a separate line after the block:
33 
34```markdown
35> A quote block
36 
37^quote-id
38```
39 
40## Embeds
41 
42Prefix any wikilink with `!` to embed its content inline:
43 
44```markdown
45![[Note Name]] Embed full note
46![[Note Name#Heading]] Embed section
47![[image.png]] Embed image
48![[image.png|300]] Embed image with width
49![[document.pdf#page=3]] Embed PDF page
50```
51 
52See [EMBEDS.md](references/EMBEDS.md) for audio, video, search embeds, and external images.
53 
54## Callouts
55 
56```markdown
57> [!note]
58> Basic callout.
59 
60> [!warning] Custom Title
61> Callout with a custom title.
62 
63> [!faq]- Collapsed by default
64> Foldable callout (- collapsed, + expanded).
65```
66 
67Common types: `note`, `tip`, `warning`, `info`, `example`, `quote`, `bug`, `danger`, `success`, `failure`, `question`, `abstract`, `todo`.
68 
69See [CALLOUTS.md](references/CALLOUTS.md) for the full list with aliases, nesting, and custom CSS callouts.
70 
71## Properties (Frontmatter)
72 
73```yaml
74---
75title: My Note
76date: 2024-01-15
77tags:
78 - project
79 - active
80aliases:
81 - Alternative Name
82cssclasses:
83 - custom-class
84---
85```
86 
87Default properties: `tags` (searchable labels), `aliases` (alternative note names for link suggestions), `cssclasses` (CSS classes for styling).
88 
89See [PROPERTIES.md](references/PROPERTIES.md) for all property types, tag syntax rules, and advanced usage.
90 
91## Tags
92 
93```markdown
94#tag Inline tag
95#nested/tag Nested tag with hierarchy
96```
97 
98Tags can contain letters, numbers (not first character), underscores, hyphens, and forward slashes. Tags can also be defined in frontmatter under the `tags` property.
99 
100## Comments
101 
102```markdown
103This is visible %%but this is hidden%% text.
104 
105%%
106This entire block is hidden in reading view.
107%%
108```
109 
110## Obsidian-Specific Formatting
111 
112```markdown
113==Highlighted text== Highlight syntax
114```
115 
116## Math (LaTeX)
117 
118```markdown
119Inline: $e^{i\pi} + 1 = 0$
120 
121Block:
122$$
123\frac{a}{b} = c
124$$
125```
126 
127## Diagrams (Mermaid)
128 
129````markdown
130```mermaid
131graph TD
132 A[Start] --> B{Decision}
133 B -->|Yes| C[Do this]
134 B -->|No| D[Do that]
135```
136````
137 
138To link Mermaid nodes to Obsidian notes, add `class NodeName internal-link;`.
139 
140## Footnotes
141 
142```markdown
143Text with a footnote[^1].
144 
145[^1]: Footnote content.
146 
147Inline footnote.^[This is inline.]
148```
149 
150## Complete Example
151 
152````markdown
153---
154title: Project Alpha
155date: 2024-01-15
156tags:
157 - project
158 - active
159status: in-progress
160---
161 
162# Project Alpha
163 
164This project aims to [[improve workflow]] using modern techniques.
165 
166> [!important] Key Deadline
167> The first milestone is due on ==January 30th==.
168 
169## Tasks
170 
171- [x] Initial planning
172- [ ] Development phase
173 - [ ] Backend implementation
174 - [ ] Frontend design
175 
176## Notes
177 
178The algorithm uses $O(n \log n)$ sorting. See [[Algorithm Notes#Sorting]] for details.
179 
180![[Architecture Diagram.png|600]]
181 
182Reviewed in [[Meeting Notes 2024-01-10#Decisions]].
183````
184 
185## References
186 
187- [Obsidian Flavored Markdown](https://help.obsidian.md/obsidian-flavored-markdown)
188- [Internal links](https://help.obsidian.md/links)
189- [Embed files](https://help.obsidian.md/embeds)
190- [Callouts](https://help.obsidian.md/callouts)
191- [Properties](https://help.obsidian.md/properties)

Security

Passed

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykpass
  • Runlayerpass
  • ZeroLeakspass

Preview

kepano/obsidian-skillskepano/obsidian-skills

$ npx -y skills add kepano/obsidian-skills --skill obsidian-markdown

▸ installing to .claude/skills…

✓ obsidian-markdown ready

Repokepano/obsidian-skills
TypeSkills
CategoryDocumentation & Knowledge
ForDeveloper
UpdatedJun 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatargrill-with-docsA relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.SkillsJul 2026585k189k
  2. larksuite avatarlark-doc飞书云文档(Docx / Wiki 文档):读取和编辑飞书文档内容。当用户给出文档 URL 或 token,或需要查看、创建、编辑文档、插入或下载文档图片附件时使用。文档中嵌入的电子表格、多维表格、画板,先用本 skill 提取 token 再切到对应 skill。当用户给出 doubao.com 的 /docx/…SkillsJul 2026393k16k
  3. larksuite avatarlark-wiki飞书知识库:管理知识空间、空间成员和文档节点。创建和查询知识空间、查看和管理空间成员、管理节点层级结构、在知识库中组织文档和快捷方式。当用户需要在知识库中查找或创建文档、浏览知识空间结构、查看或管理空间成员、移动或复制节点时使用。当用户给出 doubao.com 的 /wiki/ URL/token…SkillsJul 2026389k16k
  4. larksuite avatarlark-minutes飞书妙记:搜索妙记、查看妙记基础信息、下载/上传音视频、读取或编辑妙记的产物内容、改标题、替换说话人/关键词、申请妙记查看/编辑权限。当给出minute_token、本地音视频文件,要查/改/转妙记产物,或用户明确要主动申请妙记权限时使用;本地音视频转纪要/逐字稿优先走本 skill,不要用…SkillsJul 2026387k16k
  5. larksuite avatarlark-vc飞书视频会议:搜索历史会议记录、查询会议纪要(总结/待办/章节/逐字稿)、查询参会人快照。当用户查询已结束的会议、获取会议产物(纪要/妙记)、查看参会人时使用;查询未来日程走 lark-calendar。不负责:Agent 真实入会/离会、会中实时事件(走 lark-vc-agent)。SkillsJul 2026387k16k
  6. mattpocock avatarwriting-great-skillsReference for writing and editing skills well — the vocabulary and principles that make a skill predictable.SkillsJul 2026262k189k