Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

obsidian-markdownObsidian Markdown 搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

1,402

周安装

59

GitHub Stars

3,734

下载量

491
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:obsidian-markdown(Obsidian Markdown 搜索)
来源仓库:https://github.com/agricidaniel/claude-obsidian
仓库路径:skills/obsidian-markdown
安装命令:
npx skills add https://github.com/agricidaniel/claude-obsidian --skill obsidian-markdown
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/agricidaniel/claude-obsidian --skill obsidian-markdown

简介

辅助 Obsidian Markdown 文档的结构化整理与格式校验。

  • 支持 frontmatter 规则、标签系统和 wikilink 语法。
  • 适用于笔记规范化、知识库维护和内容一致性检查。
  • 安装命令:npx skills add https://github.com/agricidaniel/claude-obsidian --skill obsidian-markdown。
  • 日期格式须为 YYYY-MM-DD,禁止嵌套 YAML 对象。

SKILL.md

obsidian-markdown: Obsidian Flavored Markdown

Reference this skill when writing any wiki page. Obsidian extends standard Markdown with wikilinks, embeds, callouts, and properties. Getting syntax wrong causes broken links, invisible callouts, or malformed frontmatter.

Cross-reference: If the kepano/obsidian-skills plugin is installed, prefer its canonical obsidian-markdown skill for authoritative Obsidian syntax reference. Otherwise, use the reference below. See also github.com/kepano/obsidian-skills.


Wikilinks

Internal links use double brackets. The filename without extension.

SyntaxWhat it does
[[Note Name]]Basic link
`[[Note Name\Display Text]]`Aliased link (shows "Display Text")
[[Note Name#Heading]]Link to a specific heading
[[Note Name#^block-id]]Link to a specific block

Rules:

  • Case-sensitive on some systems. Match the exact filename.
  • No path needed: Obsidian resolves by filename uniqueness.
  • If two files have the same name, use [[Folder/Note Name]] to disambiguate.

Embeds

Embeds use ! before the wikilink. They display the content inline.

SyntaxWhat it does
![[Note Name]]Embed a full note
![[Note Name#Heading]]Embed a section
![[image.png]]Embed an image
`![[image.png\300]]`Embed image with width 300px
![[document.pdf]]Embed a PDF (Obsidian renders natively)
![[audio.mp3]]Embed audio

Callouts

Callouts are blockquotes with a type keyword. They render as styled alert boxes.

> [!note]
> Default informational callout.

> [!note] Custom Title
> Callout with a custom title.

> [!note]- Collapsible (closed by default)
> Click to expand.

> [!note]+ Collapsible (open by default)
> Click to collapse.

All callout types

TypeAliasesUse for
note:General notes
abstractsummary, tldrSummaries
info:Information
todo:Action items
tiphint, importantTips and highlights
successcheck, donePositive outcomes
questionhelp, faqOpen questions
warningcaution, attentionWarnings
failurefail, missingErrors or failures
dangererrorCritical issues
bug:Known bugs
example:Examples
quoteciteQuotations
contradiction:Conflicting information (wiki convention)

Properties (Frontmatter)

Obsidian renders YAML frontmatter as a Properties panel. Rules:

---
type: concept                    # plain string
title: "Note Title"              # quoted if it contains special chars
created: 2026-04-08              # date as YYYY-MM-DD (not ISO datetime)
updated: 2026-04-08
tags:
  - tag-one                      # list items use - format
  - tag-two
status: developing
related:
  - "[[Other Note]]"             # wikilinks must be quoted in YAML
sources:
  - "[[source-page]]"
---

Rules:

  • Flat YAML only. Never nest objects.
  • Dates as YYYY-MM-DD, not 2026-04-08T00:00:00.
  • Lists as - item, not inline [a, b, c].
  • Wikilinks in YAML must be quoted: "[[Page]]".
  • tags field: Obsidian reads this as the tag list, searchable in vault.

Tags

Two valid forms:

#tag-name             : inline tag anywhere in the body
#parent/child-tag     : nested tag (shows hierarchy in tag pane)

In frontmatter:

tags:
  - research
  - ai/obsidian

Do not use # inside frontmatter tag lists. Just the tag name.


Text Formatting

Standard Markdown plus Obsidian extensions:

SyntaxResult
**bold**Bold
*italic*Italic
~~strikethrough~~Strikethrough
==highlight==Highlighted text (yellow in Obsidian)
` inline code `Inline code

Math

Obsidian uses MathJax/KaTeX:

Inline math:

$E = mc^2$

Block math:

$$
\int_0^\infty e^{-x} dx = 1
$$

Code Blocks

Standard fenced code blocks. Obsidian highlights all common languages:

def hello(): return "world"


Tables

Standard Markdown tables:

| Column A | Column B | Column C |
|----------|----------|----------|
| Value    | Value    | Value    |
| Value    | Value    | Value    |

Obsidian renders tables natively. No plugin needed.


Mermaid Diagrams

Obsidian renders Mermaid natively:

graph TD A[Start] --> B{Decision} B -->|Yes| C[End] B -->|No| D[Loop] D --> A

Supported: graph, sequenceDiagram, gantt, classDiagram, pie, flowchart.


Footnotes

This sentence has a footnote.[^1]

[^1]: The footnote text goes here.

What NOT to Do

  • Do not use [link text](path/to/note.md) for internal links: use [[Note Name]] instead.
  • Do not use HTML inside callouts: stick to Markdown.
  • Do not use ## inside a callout body: headings don't render inside callouts.
  • Do not write tags: [a, b, c] inline in frontmatter: Obsidian prefers the list format.
  • Do not write ISO datetimes in frontmatter (2026-04-08T00:00:00Z): use 2026-04-08.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.9%
按下载量换算166

Claude

32.87%
按下载量换算161

Cursor

17.68%
按下载量换算87

Gemini CLI

10.63%
按下载量换算52

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills