Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

obsidianObsidian 知识库

Agent Skill

obsidian 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,689

周安装

69

GitHub Stars

12

下载量

541
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/delphine-l/claude_global --skill obsidian

简介

obsidian 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它提供 Obsidian 知识库集成指导,支持笔记创建、任务管理和知识组织,适用于个人知识管理场景。
  • 使用方式包括在开发会话中创建笔记、跟踪 TODO 任务和记录决策解决方案,支持会议纪要整理。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写等操作。
  • obsidian 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Obsidian Integration

Expert guidance for integrating Claude workflows with Obsidian vault, including note creation, task management, and knowledge organization using Obsidian's markdown-based system.

When to Use This Skill

  • Creating notes during development sessions with Claude
  • Tracking tasks and TODOs in Obsidian
  • Documenting decisions and solutions discovered with Claude
  • Building a knowledge base of project insights
  • Organizing research findings from Claude sessions
  • Creating meeting notes or session summaries

Supporting Files

This skill is split across several files. Load the relevant file when needed:

  • best-practices.md - MOCs, properties, organization philosophy, dump tag requirements
  • templates.md - Note templates: session, technical, task, analysis planning, thematic reference, TODO, HOME.md
  • organization-patterns.md - Home MOC, Project MOC, TODO consolidation, archive strategy, cross-project linking
  • vault-management.md - Vault reorganization, session consolidation, link management, project directory setup, brain dump handling
  • reference.md - Obsidian markdown syntax, bash helpers, plugins, Claude integration patterns, troubleshooting
  • cli-reference.md - Obsidian CLI (1.12+) command reference, replaces many bash patterns
  • changelog.md - Version history

Core Principles

  1. Prefer CLI - Use obsidian CLI commands (1.12+) over bash/cat patterns when possible. See cli-reference.md
  2. Vault Location - Use $OBSIDIAN_VAULT environment variable for direct file access; CLI uses vault=<name> option
  3. Always Ask User for Note Placement - Never decide where to save notes without asking the user first. Show vault structure, suggest options, and let the user choose.
  4. Atomic Notes - Each note focuses on a single concept or topic
  5. Linking - Use wikilinks [[note-name]] to connect related ideas
  6. Tags - Organize with hierarchical tags like #project/feature
  7. Tasks - Use checkbox syntax for actionable items
  8. Timestamps - Include dates for temporal context

Essential Rules

Rule 1: Never Assume Note Placement

CRITICAL: When creating ANY note in Obsidian, ALWAYS ask the user where they want it saved. Never decide the location yourself, even if it seems obvious.

Why: The user knows how their vault is organized. Assuming a location means they'll need to reorganize later.

Workflow for ANY note creation:

  1. Show current vault structure to help user decide
  2. Suggest options (root level, specific folder, custom path) -- do NOT decide
  3. Get user input before writing anything
  4. Create in chosen location

Only exception: Project session notes when .claude/project-config already specifies the location from a previous user choice.

Golden Rule: If you're about to write a file to the Obsidian vault, STOP and ask the user where it should go first.

Rule 2: Always Include Dump Tag in Session Notes

ALWAYS include the dump tag in session/daily notes. This is essential for:

  • Filtering all session notes across projects: tag:#dump
  • Archiving workflows with /consolidate-notes
  • Separating working notes from permanent documentation

Python template for new session files:

f.write("---\n")
f.write("type: session\n")
f.write(f"project: {PROJECT_NAME}\n")
f.write(f"date: {date_str}\n")
f.write("tags:\n")
f.write("  - session\n")
f.write("  - dump\n")  # REQUIRED
f.write("status: completed\n")
f.write("---\n\n")

Rule 3: Always Add Properties (Frontmatter)

Every note must have YAML frontmatter with at minimum:

---
type: session | planning | reference | todo | moc | development | analysis
project: project-name
status: active | in-progress | completed | archived
tags:
  - relevant-tags
created: YYYY-MM-DD
---

For the full property schema, see best-practices.md.

Rule 4: Use MOCs Over Deep Folders

  • Keep folder structure flat (2-3 levels max)
  • Use Maps of Content (MOC) notes as navigation hubs
  • Keep MOCs under 25 items
  • Create sub-MOCs when sections grow too large
  • Use properties and tags for topic categorization, not folders

For detailed MOC guidance, see best-practices.md.

Vault Configuration

Environment Setup

# Check vault location
echo $OBSIDIAN_VAULT
# Should return something like: /Users/username/Documents/Notes

# If not set, add to ~/.zshrc or ~/.bashrc
export OBSIDIAN_VAULT="/path/to/your/vault"

Obsidian CLI (1.12+)

Obsidian now ships with a native CLI (obsidian). Prefer CLI commands over bash patterns for creating, reading, appending, and searching notes.

# Verify CLI is available
obsidian version

# List vaults
obsidian vaults verbose

# Target a specific vault
obsidian files vault="My Vault"

For the full CLI command reference, see cli-reference.md.

Key Workflows

Creating a Note

  1. Check vault is accessible (obsidian vault or echo $OBSIDIAN_VAULT)
  2. Show vault structure to user (obsidian folders or obsidian files)
  3. Ask where to save the note
  4. Create with proper frontmatter (type, project, tags, created date)
  5. Include dump tag if it's a session note
  6. Add wikilinks to related notes

Using CLI:

obsidian create name="my-note" path="projects/my-note.md" template="session" open
# Or with inline content:
obsidian create name="my-note" content="---\ntype: session\ntags:\n  - dump\n---\n\n# Content"

Using bash (for complex multi-line content):

cat > "$OBSIDIAN_VAULT/projects/my-note.md" <<'EOF'
---
type: session
tags:
  - dump
---
# Content
EOF

For note templates, see templates.md.

Creating a Session Summary

Used by /safe-exit and /safe-clear commands:

  1. Read project config from .claude/project-config for vault path
  2. Create note in project's session-saves/ directory
  3. Include frontmatter with type: session, dump tag
  4. Document: context, summary, decisions, action items, code references
  5. Link to related notes

Consolidating Session Notes

When session folder has 5+ notes or at project milestones:

  1. Review all session notes, identify themes
  2. Create thematic reference notes (by topic, not date)
  3. Extract TODOs to project TO-DOS.md
  4. Archive processed sessions to archived/daily/
  5. Update project HOME.md and MOCs

For the full consolidation workflow, see vault-management.md.

Vault Reorganization

When restructuring the vault:

  1. Document target structure
  2. Create new folders first
  3. Move files and folders
  4. Update all links systematically
  5. Run broken link detection
  6. Verify with tree command

For detailed reorganization steps, see vault-management.md.

Standard Project Structure

project-name/
├── TO-DOS.md
├── session-saves/
├── archived/
│   ├── daily/
│   └── monthly/
└── [project-specific folders]

Obsidian Syntax Quick Reference

[[Note Name]]              # Wikilink
[[Note Name|Display Text]] # Wikilink with alias
[[Note#Heading]]           # Link to heading
#tag  #project/feature     # Tags
- [ ] Task to do           # Task
- [x] Completed task       # Done task
> [!note]                  # Callout
> Content here

For full syntax reference, see reference.md.

Integration with Other Skills

  • folder-organization - Vault structure standards
  • managing-environments - Development workflow
  • claude-collaboration - Team knowledge sharing

Remember: The goal is to build a searchable, linked knowledge base that grows with each Claude session. Start simple, add structure as needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

32.48%
按下载量换算176

windsurf

22.92%
按下载量换算124

OpenCode

16.59%
按下载量换算90

Codex

12.26%
按下载量换算66

Antigravity

7.91%
按下载量换算43

Gemini CLI

3.22%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills