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

obsidian-markdownObsidian Markdown 搜索

Agent Skill

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

总安装

1

周安装

17

GitHub Stars

公开资料未说明

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

obsidian-markdown 生成符合 Obsidian 插件规范的 Markdown 文档。

  • 支持 Frontmatter、标签命名、Callout 语法等个性化格式要求。
  • 可用于知识库构建、笔记整理或文档协作场景。
  • 输出前应核对用户本地 Obsidian 配置,避免格式冲突。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Obsidian Flavored Markdown Skill

This skill enables you to create and edit valid Obsidian Flavored Markdown that matches the user's personal conventions and patterns.

User's Obsidian Conventions

The user has specific patterns you should follow:

Frontmatter Structure:

  • Always include: created, modified, tags
  • Optional: aliases, cssclasses
  • Date format: YYYY-MM-DD (e.g., 2026-02-13)
  • Tags use kebab-case with hyphens (e.g., bug-bounty, llm-hacking, dev-tools)
  • Common cssclasses: medium (for medium-length content)

Callout Syntax:

  • Use ad- prefix for callouts (Admonition plugin syntax)
  • Common types: ad-info, ad-example, ad-cite, ad-note, ad-quote
  • Can include title after type: ad-cite with title: Source: URL

Content Style:

  • Mixed Vietnamese and English is normal and expected
  • Technical terms stay in English
  • Vietnamese for explanations and context
  • Code blocks always have language specifiers

Common Patterns:

  • Footnotes for references: [^1], [^2]
  • Tables for structured comparisons
  • Task lists with - [] and - [x]
  • Nested lists for hierarchical information
  • Wikilinks for internal references: [[Note Name]]

Overview

Obsidian uses a combination of Markdown flavors:

Basic Formatting

Paragraphs and Line Breaks

This is a paragraph.

This is another paragraph (blank line between creates separate paragraphs).

For a line break within a paragraph, add two spaces at the end
or use Shift+Enter.

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Text Formatting

StyleSyntaxExampleOutput
Bold**text** or __text__**Bold**Bold
Italic*text* or _text_*Italic**Italic*
Bold + Italic***text******Both****Both*
Strikethrough~~text~~~~Striked~~Striked
Highlight==text====Highlighted====Highlighted==
Inline code` code `` code `code

Escaping Formatting

Use backslash to escape special characters:

\*This won't be italic\*
\#This won't be a heading
1\. This won't be a list item

Common characters to escape: \*, \_, \#, ` \ `, \|, \~`

Internal Links (Wikilinks)

Basic Links

[[Note Name]]
[[Note Name.md]]
[[Note Name|Display Text]]

Link to Headings

[[Note Name#Heading]]
[[Note Name#Heading|Custom Text]]
[[#Heading in same note]]
[[##Search all headings in vault]]

Link to Blocks

[[Note Name#^block-id]]
[[Note Name#^block-id|Custom Text]]

Define a block ID by adding ^block-id at the end of a paragraph:

This is a paragraph that can be linked to. ^my-block-id

For lists and quotes, add the block ID on a separate line:

> This is a quote
> With multiple lines

^quote-id

Search Links

[[##heading]]     Search for headings containing "heading"
[[^^block]]       Search for blocks containing "block"

Markdown-Style Links

[Display Text](Note%20Name.md)
[Display Text](Note%20Name.md#Heading)
[Display Text](https://example.com)
[Note](obsidian://open?vault=VaultName&file=Note.md)

Note: Spaces must be URL-encoded as %20 in Markdown links.

Embeds

Embed Notes

![[Note Name]]
![[Note Name#Heading]]
![[Note Name#^block-id]]

Embed Images

![[image.png]]
![[image.png|640x480]]    Width x Height
![[image.png|300]]        Width only (maintains aspect ratio)

External Images

![Alt text](https://example.com/image.png)
![Alt text|300](https://example.com/image.png)

Embed Audio

![[audio.mp3]]
![[audio.ogg]]

Embed PDF

![[document.pdf]]
![[document.pdf#page=3]]
![[document.pdf#height=400]]

Embed Lists

![[Note#^list-id]]

Where the list has been defined with a block ID:

- Item 1
- Item 2
- Item 3

^list-id

Embed Search Results

tag:#project status:done

Callouts

The user uses Admonition plugin syntax with ad- prefix. This is different from standard Obsidian callouts.

User's Callout Syntax (Admonition Plugin)

This is a note callout using Admonition syntax.

Đây là thông tin quan trọng. Mixed language content is normal.

*"This is an example with quoted text"*

title: Source: https://example.com/article Content from external source with attribution.

Quoted text can be nested inside callouts. Multiple lines work fine.

Common Callout Types (User's Patterns)

Based on the user's notes, these are the most frequently used:

TypeUsageExample Context
ad-infoImportant information, clarificationsTechnical notes, warnings
ad-exampleCode examples, demonstrationsAttack payloads, SQL queries
ad-citeExternal references with sourcesBlog posts, documentation
ad-noteAdditional context, explanationsTechnical details, caveats
ad-quoteDirect quotes from sourcesTwitter threads, articles

Standard Obsidian Callouts (For Reference)

If the user specifically requests standard Obsidian syntax:

> [!note]
> Standard Obsidian callout syntax.

> [!info] Custom Title
> With a custom title.

But default to ad- prefix syntax unless told otherwise.

Lists

Unordered Lists

- Item 1
- Item 2
  - Nested item
  - Another nested
- Item 3

* Also works with asterisks
+ Or plus signs

Ordered Lists

1. First item
2. Second item
   1. Nested numbered
   2. Another nested
3. Third item

1) Alternative syntax
2) With parentheses

Task Lists

- [ ] Incomplete task
- [x] Completed task
- [ ] Task with sub-tasks
  - [ ] Subtask 1
  - [x] Subtask 2

Quotes

> This is a blockquote.
> It can span multiple lines.
>
> And include multiple paragraphs.
>
> > Nested quotes work too.

Code Blocks

Always specify the language for syntax highlighting:

def process_data(items): return sorted(items, key=lambda x: x.priority)

curl http://169.254.169.254/latest/meta-data/

SELECT * FROM users WHERE id = 1;

const result = await fetch('/api/data');

Common Languages in User's Notes

LanguageUsage
pythonScripts, exploits
bash / shShell commands
sqlDatabase queries
javascript / jsWeb code
cLow-level code, exploits
yaml / ymlConfiguration
jsonData structures
markdown / mdMeta examples

Nesting Code Blocks

Use more backticks for the outer block:

Here's how to create a code block:

console.log("Hello")

Tables

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |

Alignment

| Left     | Center   | Right    |
|:---------|:--------:|---------:|
| Left     | Center   | Right    |

Using Pipes in Tables

Escape pipes with backslash:

| Column 1 | Column 2 |
|----------|----------|
| [[Link\|Display]] | ![[Image\|100]] |

Math (LaTeX)

Inline Math

This is inline math: $e^{i\pi} + 1 = 0$

Block Math

$$
\begin{vmatrix}
a & b \\
c & d
\end{vmatrix} = ad - bc
$$

Common Math Syntax

$x^2$              Superscript
$x_i$              Subscript
$\frac{a}{b}$      Fraction
$\sqrt{x}$         Square root
$\sum_{i=1}^{n}$   Summation
$\int_a^b$         Integral
$\alpha, \beta$    Greek letters

Diagrams (Mermaid)

graph TD A[Start] --> B{Decision} B -->|Yes| C[Do this] B -->|No| D[Do that] C --> E[End] D --> E

Sequence Diagrams

sequenceDiagram Alice->>Bob: Hello Bob Bob-->>Alice: Hi Alice

Linking in Diagrams

graph TD A[Biology] B[Chemistry] A --> B class A,B internal-link;

Footnotes

The user frequently uses footnotes for references and citations:

This technique is documented in multiple sources[^1]. See also the blind detection method[^2].

[^1]: [SSRF Bible - HackTricks](https://book.hacktricks.xyz/pentesting-web/ssrf)
[^2]: [Blind SSRF Detection](https://portswigger.net/web-security/ssrf/blind)

Footnote Patterns

For external references:

Các kỹ thuật này được documented trong nhiều bug bounty reports[^1].

[^1]: [Article Title](https://example.com/article)

For additional context:

This requires specific permissions[^note].

[^note]: User must have lo_import, lo_export, and pg_reload_conf privileges.

Inline footnotes (less common):

This is supported in newer versions.^[PostgreSQL 14+]

Comments

This is visible %%but this is hidden%% text.

%%
This entire block is hidden.
It won't appear in reading view.
%%

Horizontal Rules

---
***
___
- - -
* * *

Properties (Frontmatter)

The user has a consistent frontmatter pattern. Always follow this structure:

User's Standard Frontmatter

---
created: 2026-02-13
modified: 2026-02-13
tags: [tag1, tag2, tag3]
---

With Optional Fields

---
created: 2026-02-13
modified: 2026-02-13
aliases: []
tags: [bug-bounty, fleeting, tips]
cssclasses:
  - medium
---

Frontmatter Rules

  1. Always include: created, modified, tags
  2. Date format: YYYY-MM-DD (no time component)
  3. Tags format: Inline array [tag1, tag2] or YAML list
  4. Tag naming: Use kebab-case with hyphens

- Good: bug-bounty, llm-hacking, dev-tools, active-directory - Avoid: bugBounty, llm_hacking, DevTools

  1. Common tags:

- fleeting - Quick notes, tips, snippets - evergreen - Comprehensive, maintained content - tips - Quick tips and tricks - Domain tags: AI, SQLi, SSRF, RCE, postgres, etc.

  1. cssclasses: Use medium for medium-length content
  2. aliases: Include empty array [] if no aliases

Example from User's Notes

---
created: 2025-09-10
modified: 2026-02-13
aliases: []
tags: [AI, evergreen, llm-hacking]
cssclasses:
  - medium
---

Tags

The user follows specific tag naming conventions:

Tag Format

#bug-bounty
#llm-hacking
#dev-tools
#active-directory

In Frontmatter (Preferred)

---
tags: [bug-bounty, fleeting, tips]
---

Or YAML list format:

---
tags:
  - AI
  - evergreen
  - llm-hacking
---

Tag Naming Conventions

Use kebab-case with hyphens:

  • bug-bounty, llm-hacking, dev-tools, active-directory
  • bugBounty, llm_hacking, DevTools, active_directory

Common tag categories:

CategoryExamples
Content typefleeting, evergreen
DomainAI, SQLi, SSRF, RCE, XSS
Technologypostgres, cli, terminal, tools
Activitybug-bounty, recon, tips

Tag meanings:

  • fleeting - Quick notes, tips, snippets (temporary or in-progress)
  • evergreen - Comprehensive, maintained content (permanent reference)
  • tips - Quick tips and tricks
  • tools - Tool documentation and usage

Tags can contain:

  • Letters (any language)
  • Numbers (not as first character)
  • Hyphens - (preferred separator)
  • Forward slashes / (for nesting, e.g., security/web/xss)

Writing Style and Tone

Vietnamese Pronouns

Use inclusive pronouns in Vietnamese:

  • ✅ Use: chúng ta, ta (we, us, inclusive)
  • ❌ Avoid: bạn, tôi, mình (you, me, exclusive)

Examples:

  • ✅ "Nếu chúng ta muốn debug..."
  • ✅ "Ta có thể tách concerns thành..."
  • ❌ "Nếu bạn muốn debug..."
  • ❌ "Tôi có thể tách concerns thành..."

Content Depth

Notes should be comprehensive with:

  • Detailed explanations of concepts
  • Technical references and links
  • Code examples with context
  • Architecture diagrams when helpful
  • Real-world use cases
  • Troubleshooting tips

Avoid superficial summaries - go deep into the technical details.

Heading Capitalization (Obsidian Linter Style)

Follow title case rules:

  • Capitalize: First word, last word, all major words
  • Lowercase: Articles (a, an, the), coordinating conjunctions (and, but, or), prepositions (to, from, in, on, at, by, for, with), "as", "if"

Examples:

  • ✅ "Core Concepts Step by Step"
  • ✅ "Props Are Context-Carriers"
  • ✅ "Data Pipeline from Input to Output"
  • ✅ "Error Model in the UI"
  • ❌ "Core concepts step by step"
  • ❌ "Props are context-carriers"
  • ❌ "Data Pipeline From Input To Output"

Complete Example (User's Style)

This example demonstrates the user's actual note-taking patterns:

---
created: 2026-02-13
modified: 2026-02-13
aliases: []
tags: [bug-bounty, SSRF, evergreen]
cssclasses:
  - medium
---

# SSRF Exploitation Techniques

## Overview

Server-Side Request Forgery (SSRF) cho phép attacker gửi requests từ server đến các internal services hoặc external systems.

SSRF có thể dẫn đến việc truy cập vào cloud metadata endpoints, internal APIs, và các services không được expose ra ngoài.


## Common Bypass Techniques

### IP Address Obfuscation

Mọi IP trong block `127.x.x.x` đều resolve về `127.0.0.1`:
  • 127.9.5.11
  • 127.250.251.252
  • 127.123.1.50

### URL Parsing Issues

| Technique | Example | Target |
|-----------|---------|--------|
| URL fragments | `https://evil.com#@internal.com` | Parser confusion |
| Credentials | `https://internal.com@evil.com` | Authority bypass |
| Decimal IP | `http://2130706433/` | `127.0.0.1` |

## Cloud Metadata Endpoints

### AWS

curl http://169.254.169.254/latest/meta-data/iam/security-credentials/

Newer AWS instances require IMDSv2 với session tokens, nhưng nhiều applications vẫn support IMDSv1.


## Attack Checklist

- [ ] Test localhost variations (`127.0.0.1`, `localhost`, `0.0.0.0`)
- [ ] Try cloud metadata endpoints
- [ ] Check for DNS rebinding vulnerabilities
- [ ] Test URL parser bypasses
- [x] Document successful payloads

## Related Techniques

- [[SSRF to RCE]]
- [[Cloud Metadata Exploitation]]
- [[DNS Rebinding]]

## Resources

Các kỹ thuật này được documented trong nhiều bug bounty reports[^1]. Xem thêm về blind SSRF detection[^2].

[^1]: [SSRF Bible - HackTricks](https://book.hacktricks.xyz/pentesting-web/ssrf-server-side-request-forgery)
[^2]: [Blind SSRF Detection](https://portswigger.net/web-security/ssrf/blind)

title: Source: https://x.com/Behi_Sec/status/1999079449741111606 Every IP inside the 127.x.x.x block resolves to 127.0.0.1.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.53%
按下载量换算50

Claude

30.77%
按下载量换算43

Cursor

18.68%
按下载量换算26

Gemini CLI

8.19%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/aleister1102/skills --skill obsidian-markdown 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills