obsidian

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Obsidian Integration

Obsidian 集成

Expert guidance for integrating Claude workflows with Obsidian vault, including note creation, task management, and knowledge organization using Obsidian's markdown-based system.
本指南提供将Claude工作流与Obsidian知识库集成的专业指导,包括使用Obsidian的Markdown系统创建笔记、管理任务和组织知识。

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
  • 在与Claude协作的开发会话中创建笔记
  • 在Obsidian中追踪任务和待办事项
  • 记录与Claude协作时做出的决策和找到的解决方案
  • 构建项目洞察知识库
  • 整理Claude会话中的研究成果
  • 创建会议笔记或会话摘要

Core Principles

核心原则

  1. Vault Location - Use
    $OBSIDIAN_CLAUDE
    environment variable for vault path
  2. Atomic Notes - Each note focuses on a single concept or topic
  3. Linking - Use wikilinks
    [[note-name]]
    to connect related ideas
  4. Tags - Organize with hierarchical tags like
    #project/feature
  5. Tasks - Use checkbox syntax for actionable items
  6. Timestamps - Include dates for temporal context
  1. 知识库位置 - 使用
    $OBSIDIAN_CLAUDE
    环境变量指定知识库路径
  2. 原子化笔记 - 每条笔记聚焦单个概念或主题
  3. 链接 - 使用维基链接
    [[note-name]]
    关联相关想法
  4. 标签 - 使用层级标签如
    #project/feature
    进行组织
  5. 任务 - 使用复选框语法标记可执行项
  6. 时间戳 - 包含日期以体现时间上下文

Vault Configuration

知识库配置

Environment Setup

环境设置

The Obsidian vault location is stored in the
$OBSIDIAN_CLAUDE
environment variable:
bash
undefined
Obsidian知识库位置存储在
$OBSIDIAN_CLAUDE
环境变量中:
bash
undefined

Check vault location

检查知识库位置

echo $OBSIDIAN_CLAUDE
echo $OBSIDIAN_CLAUDE

Should return something like:

应返回类似内容:

/Users/username/Documents/ObsidianVault

/Users/username/Documents/ObsidianVault


If not set, you'll need to configure it in your shell profile:

```bash

如果未设置该变量,需在Shell配置文件中进行配置:

```bash

Add to ~/.zshrc or ~/.bashrc

添加到~/.zshrc或~/.bashrc

export OBSIDIAN_CLAUDE="/path/to/your/vault"
undefined
export OBSIDIAN_CLAUDE="/path/to/your/vault"
undefined

Obsidian Markdown Syntax

Obsidian Markdown语法

Wikilinks (Internal Links)

维基链接(内部链接)

markdown
undefined
markdown
undefined

Link to another note

链接到另一篇笔记

[[Note Name]]
[[Note Name]]

Link with custom display text

带自定义显示文本的链接

[[Note Name|Display Text]]
[[Note Name|Display Text]]

Link to heading in another note

链接到另一篇笔记的标题

[[Note Name#Heading]]
[[Note Name#Heading]]

Link to block

链接到块

[[Note Name#^block-id]]
undefined
[[Note Name#^block-id]]
undefined

Tags

标签

markdown
undefined
markdown
undefined

Simple tags

简单标签

#tag
#tag

Hierarchical tags

层级标签

#project/feature #status/in-progress #type/note #type/task
#project/feature #status/in-progress #type/note #type/task

Tags in YAML frontmatter

YAML前置元数据中的标签


tags:
  • project/feature
  • status/active

undefined

tags:
  • project/feature
  • status/active

undefined

Tasks

任务

markdown
undefined
markdown
undefined

Basic task

基础任务

  • Task to do
  • 待完成任务

Completed task

已完成任务

  • Completed task
  • 已完成任务

Task with priority

带优先级的任务

  • High priority task ⚠️
  • Medium priority task 🔸
  • Low priority task 🔹
  • 高优先级任务 ⚠️
  • 中优先级任务 🔸
  • 低优先级任务 🔹

Task with date (if using Obsidian Tasks plugin)

带日期的任务(需使用Obsidian Tasks插件)

  • Task 📅 2026-01-23
  • Task ⏳ 2026-01-30
  • Task ✅ 2026-01-20
  • 任务 📅 2026-01-23
  • 任务 ⏳ 2026-01-30
  • 任务 ✅ 2026-01-20

Task with metadata

带元数据的任务

  • Implement feature #coding #high-priority @claude-session
undefined
  • 实现功能 #coding #high-priority @claude-session
undefined

Callouts (Obsidian-specific)

提示框(Obsidian专属)

markdown
> [!note]
> This is a note callout

> [!tip]
> Helpful tip here

> [!warning]
> Important warning

> [!todo]
> Task to complete

> [!example]
> Example code or content

> [!quote]
> Quote or citation
markdown
> [!note]
> 这是一条提示笔记

> [!tip]
> 实用技巧

> [!warning]
> 重要警告

> [!todo]
> 待完成任务

> [!example]
> 示例代码或内容

> [!quote]
> 引用或引文

Note Templates

笔记模板

Session Note Template

会话笔记模板

markdown
---
date: {{date}}
type: session-note
tags:
  - claude-session
  - project/{{project-name}}
---
markdown
---
date: {{date}}
type: session-note
tags:
  - claude-session
  - project/{{project-name}}
---

Session: {{topic}} - {{date}}

会话:{{topic}} - {{date}}

Context

上下文

What we're working on and why
我们正在开展的工作及原因

Summary

摘要

Key points and outcomes from this session
本次会话的要点和成果

Decisions

决策

  • Decision 1
  • Decision 2
  • 决策1
  • 决策2

Action Items

行动项

  • Task 1
  • Task 2
  • 任务1
  • 任务2

Links

链接

  • [[Related Note 1]]
  • [[Related Note 2]]
  • [[相关笔记1]]
  • [[相关笔记2]]

Code References

代码参考

  • file.py:123
    - Description of code location

Session with: Claude Duration: {{duration}}
undefined
  • file.py:123
    - 代码位置说明

会话对象:Claude 时长:{{duration}}
undefined

Technical Note Template

技术笔记模板

markdown
---
date: {{date}}
type: technical-note
tags:
  - technical
  - {{topic}}
---
markdown
---
date: {{date}}
type: technical-note
tags:
  - technical
  - {{topic}}
---

{{Title}}

{{标题}}

Problem

问题

Description of the issue or topic
问题或主题描述

Solution

解决方案

How it was resolved or implemented
问题的解决或实现方式

Implementation Details

实现细节

language
code example
language
代码示例

Related Concepts

相关概念

  • [[Concept 1]]
  • [[Concept 2]]
  • [[概念1]]
  • [[概念2]]

References

参考资料

  • External links or documentation
  • 外部链接或文档

Notes

补充说明

Additional thoughts or considerations
undefined
额外的想法或注意事项
undefined

Task Note Template

任务笔记模板

markdown
---
date: {{date}}
type: task
tags:
  - task
  - status/pending
project: {{project-name}}
---
markdown
---
date: {{date}}
type: task
tags:
  - task
  - status/pending
project: {{project-name}}
---

Task: {{task-name}}

任务:{{task-name}}

Description

描述

What needs to be done
需要完成的工作内容

Requirements

需求

  • Requirement 1
  • Requirement 2
  • 需求1
  • 需求2

Checklist

检查清单

  • Step 1
  • Step 2
  • Step 3
  • 步骤1
  • 步骤2
  • 步骤3

Dependencies

依赖项

  • [[Related Task 1]]
  • [[Related Task 2]]
  • [[相关任务1]]
  • [[相关任务2]]

Notes

补充说明

Additional context or considerations
额外的上下文或注意事项

Completion

完成情况

Status: Pending Priority: Medium Due: {{date}}
undefined
状态:待处理 优先级:中等 截止日期:{{date}}
undefined

Working with Claude: Common Patterns

与Claude协作的常见模式

Pattern 1: Creating a Session Note

模式1:创建会话笔记

When starting a work session with Claude:
bash
undefined
在与Claude开始工作会话时:
bash
undefined

Create new session note in Obsidian vault

在Obsidian知识库中创建新的会话笔记

cat > "$OBSIDIAN_CLAUDE/Sessions/$(date +%Y-%m-%d)-session.md" <<EOF

date: $(date +%Y-%m-%d) type: session-note tags:
  • claude-session

cat > "$OBSIDIAN_CLAUDE/Sessions/$(date +%Y-%m-%d)-session.md" <<EOF

date: $(date +%Y-%m-%d) type: session-note tags:
  • claude-session

Session: $(date +%Y-%m-%d)

会话:$(date +%Y-%m-%d)

Context

上下文

Summary

摘要

Action Items

行动项

  • [ ]
  • [ ]

Links

链接

EOF
undefined
EOF
undefined

Pattern 2: Adding Quick Notes

模式2:添加快速笔记

For quick insights during development:
bash
undefined
在开发过程中记录快速见解:
bash
undefined

Append to daily note

追加到每日笔记

echo "## $(date +%H:%M) - Quick Note
Content here
" >> "$OBSIDIAN_CLAUDE/Daily/$(date +%Y-%m-%d).md"
undefined
echo "## $(date +%H:%M) - 快速笔记
内容
" >> "$OBSIDIAN_CLAUDE/Daily/$(date +%Y-%m-%d).md"
undefined

Pattern 3: Creating Task from Claude Session

模式3:从Claude会话创建任务

bash
undefined
bash
undefined

Create task file

创建任务文件

TASK_NAME="implement-feature-x" cat > "$OBSIDIAN_CLAUDE/Tasks/$TASK_NAME.md" <<EOF

date: $(date +%Y-%m-%d) type: task tags:
  • task
  • status/pending

TASK_NAME="implement-feature-x" cat > "$OBSIDIAN_CLAUDE/Tasks/$TASK_NAME.md" <<EOF

date: $(date +%Y-%m-%d) type: task tags:
  • task
  • status/pending

Task: $TASK_NAME

任务:$TASK_NAME

Description

描述

Checklist

检查清单

  • [ ]
  • [ ]

Created by

创建来源

Claude session on $(date +%Y-%m-%d) EOF
undefined
Claude会话 $(date +%Y-%m-%d) EOF
undefined

Pattern 4: Documenting Code Solutions

模式4:记录代码解决方案

bash
undefined
bash
undefined

Create solution note

创建解决方案笔记

SOLUTION_NAME="fix-api-error" cat > "$OBSIDIAN_CLAUDE/Solutions/$SOLUTION_NAME.md" <<EOF

date: $(date +%Y-%m-%d) type: solution tags:
  • solution
  • coding

SOLUTION_NAME="fix-api-error" cat > "$OBSIDIAN_CLAUDE/Solutions/$SOLUTION_NAME.md" <<EOF

date: $(date +%Y-%m-%d) type: solution tags:
  • solution
  • coding

Solution: $SOLUTION_NAME

解决方案:$SOLUTION_NAME

Problem

问题

Solution

解决方案

Code

代码

```language code here ```
```language 代码内容 ```

Related

相关内容

  • [[Related Note]] EOF
undefined
  • [[相关笔记]] EOF
undefined

Folder Organization for Claude Integration

Claude集成的文件夹组织

Recommended folder structure within Obsidian vault:
$OBSIDIAN_CLAUDE/
├── Daily/                      # Daily notes
│   └── YYYY-MM-DD.md
├── Sessions/                   # Claude session notes
│   └── YYYY-MM-DD-topic.md
├── Tasks/                      # Task tracking
│   ├── active/
│   └── completed/
├── Projects/                   # Project documentation
│   └── project-name/
│       ├── index.md
│       ├── architecture.md
│       └── decisions.md
├── Solutions/                  # Code solutions and fixes
│   └── solution-name.md
├── Research/                   # Research notes
│   └── topic.md
├── Knowledge/                  # Permanent notes
│   └── concept.md
└── Templates/                  # Note templates
    ├── session.md
    ├── task.md
    └── solution.md
Obsidian知识库内推荐的文件夹结构:
$OBSIDIAN_CLAUDE/
├── Daily/                      # 每日笔记
│   └── YYYY-MM-DD.md
├── Sessions/                   # Claude会话笔记
│   └── YYYY-MM-DD-topic.md
├── Tasks/                      # 任务追踪
│   ├── active/
│   └── completed/
├── Projects/                   # 项目文档
│   └── project-name/
│       ├── index.md
│       ├── architecture.md
│       └── decisions.md
├── Solutions/                  # 代码解决方案与修复
│   └── solution-name.md
├── Research/                   # 研究笔记
│   └── topic.md
├── Knowledge/                  # 永久笔记
│   └── concept.md
└── Templates/                  # 笔记模板
    ├── session.md
    ├── task.md
    └── solution.md

Helper Functions for Obsidian Integration

Obsidian集成的辅助函数

Bash Helper Functions

Bash辅助函数

Add these to your shell profile for easy integration:
bash
undefined
将以下函数添加到你的Shell配置文件中,以便快速集成:
bash
undefined

Create new session note in Obsidian

在Obsidian中创建新的会话笔记

obs-session() { local topic="${1:-general}" local date=$(date +%Y-%m-%d) local file="$OBSIDIAN_CLAUDE/Sessions/${date}-${topic}.md"
cat > "$file" <<EOF

date: $date type: session-note tags:
  • claude-session
  • project/$topic

obs-session() { local topic="${1:-general}" local date=$(date +%Y-%m-%d) local file="$OBSIDIAN_CLAUDE/Sessions/${date}-${topic}.md"
cat > "$file" <<EOF

date: $date type: session-note tags:
  • claude-session
  • project/$topic

Session: $topic - $date

会话:$topic - $date

Context

上下文

Summary

摘要

Action Items

行动项

  • [ ]
  • [ ]

Links

链接

EOF
echo "Created session note: $file"
}
EOF
echo "已创建会话笔记:$file"
}

Create task in Obsidian

在Obsidian中创建任务

obs-task() { local task_name="$1" local date=$(date +%Y-%m-%d) local file="$OBSIDIAN_CLAUDE/Tasks/${task_name}.md"
cat > "$file" <<EOF

date: $date type: task tags:
  • task
  • status/pending

obs-task() { local task_name="$1" local date=$(date +%Y-%m-%d) local file="$OBSIDIAN_CLAUDE/Tasks/${task_name}.md"
cat > "$file" <<EOF

date: $date type: task tags:
  • task
  • status/pending

Task: $task_name

任务:$task_name

Description

描述

Checklist

检查清单

  • [ ]
  • [ ]

Created

创建时间

$date via Claude session EOF
echo "Created task: $file"
}
$date 来自Claude会话 EOF
echo "已创建任务:$file"
}

Append to daily note

追加到每日笔记

obs-note() { local date=$(date +%Y-%m-%d) local time=$(date +%H:%M) local daily_note="$OBSIDIAN_CLAUDE/Daily/${date}.md"
# Create daily note if doesn't exist
if [ ! -f "$daily_note" ]; then
    cat > "$daily_note" <<EOF

date: $date type: daily-note

obs-note() { local date=$(date +%Y-%m-%d) local time=$(date +%H:%M) local daily_note="$OBSIDIAN_CLAUDE/Daily/${date}.md"
# 如果每日笔记不存在则创建
if [ ! -f "$daily_note" ]; then
    cat > "$daily_note" <<EOF

date: $date type: daily-note

$date

$date

EOF fi
# Append note
cat >> "$daily_note" <<EOF
EOF fi
# 追加笔记内容
cat >> "$daily_note" <<EOF

$time

$time

EOF
echo "Added entry to daily note: $daily_note"
}
EOF
echo "已添加内容到每日笔记:$daily_note"
}

Quick search in Obsidian vault

在Obsidian知识库中快速搜索

obs-search() { grep -r "$1" "$OBSIDIAN_CLAUDE" --include="*.md" }
undefined
obs-search() { grep -r "$1" "$OBSIDIAN_CLAUDE" --include="*.md" }
undefined

Integration Workflow with Claude

与Claude的集成工作流

Before Session

会话前

  1. Set up environment
    bash
    echo $OBSIDIAN_CLAUDE  # Verify vault location
  2. Create session note (optional)
    bash
    obs-session "feature-implementation"
  1. 设置环境
    bash
    echo $OBSIDIAN_CLAUDE  # 验证知识库位置
  2. 创建会话笔记(可选)
    bash
    obs-session "feature-implementation"

During Session

会话中

  1. Add notes as you go
    • Use Claude to create notes for important insights
    • Document decisions and reasoning
    • Track code locations with
      file.py:line
      references
  2. Create tasks for follow-ups
    bash
    obs-task "refactor-authentication"
  3. Link to existing notes
    • Reference related documentation
    • Build knowledge graph through links
  1. 随时添加笔记
    • 使用Claude记录重要见解
    • 记录决策和推理过程
    • 使用
      file.py:line
      格式标记代码位置
  2. 为后续工作创建任务
    bash
    obs-task "refactor-authentication"
  3. 关联现有笔记
    • 引用相关文档
    • 通过链接构建知识图谱

After Session

会话后

  1. Review and organize
    • Add tags to notes
    • Create links between related notes
    • Update project index
  2. Update task status
    • Mark completed tasks
    • Add new discovered tasks
  3. Archive session notes
    • Move to appropriate project folder if needed
    • Link from project index
  1. 回顾与整理
    • 为笔记添加标签
    • 在相关笔记间创建链接
    • 更新项目索引
  2. 更新任务状态
    • 标记已完成任务
    • 添加新发现的任务
  3. 归档会话笔记
    • 如有需要,移动到对应项目文件夹
    • 在项目索引中添加链接

Best Practices

最佳实践

Note Creation

笔记创建

DO:
  • ✅ Create notes during the session, not after
  • ✅ Use descriptive file names (kebab-case)
  • ✅ Include YAML frontmatter with metadata
  • ✅ Link to related notes and concepts
  • ✅ Add relevant tags for organization
  • ✅ Include timestamps for temporal context
DON'T:
  • ❌ Create huge monolithic notes
  • ❌ Forget to link related concepts
  • ❌ Skip metadata and tags
  • ❌ Use unclear or generic titles
  • ❌ Duplicate information across notes
建议
  • ✅ 在会话过程中创建笔记,而非事后补充
  • ✅ 使用描述性文件名(短横线分隔格式)
  • ✅ 包含YAML前置元数据
  • ✅ 关联相关笔记和概念
  • ✅ 添加相关标签用于组织
  • ✅ 包含时间戳体现时间上下文
避免
  • ❌ 创建冗长的单体笔记
  • ❌ 忘记关联相关概念
  • ❌ 忽略元数据和标签
  • ❌ 使用模糊或通用标题
  • ❌ 在多个笔记中重复信息

Task Management

任务管理

DO:
  • ✅ Use checkbox syntax
    - [ ]
    for tasks
  • ✅ Add priority indicators
  • ✅ Link tasks to relevant notes
  • ✅ Include context in task description
  • ✅ Break down large tasks into subtasks
DON'T:
  • ❌ Create tasks without context
  • ❌ Leave tasks orphaned (unlinked)
  • ❌ Forget to update task status
  • ❌ Mix tasks and notes in disorganized way
建议
  • ✅ 使用复选框语法
    - [ ]
    标记任务
  • ✅ 添加优先级标识
  • ✅ 将任务与相关笔记关联
  • ✅ 在任务描述中包含上下文
  • ✅ 将大型任务拆分为子任务
避免
  • ❌ 创建无上下文的任务
  • ❌ 孤立任务(不添加链接)
  • ❌ 忘记更新任务状态
  • ❌ 混乱地混合任务和笔记

Linking and Tags

链接与标签

DO:
  • ✅ Use wikilinks
    [[note]]
    liberally
  • ✅ Create hierarchical tags
    #project/area/topic
  • ✅ Link bidirectionally when relevant
  • ✅ Tag by type, status, and project
  • ✅ Build a web of knowledge
DON'T:
  • ❌ Over-tag (diminishing returns)
  • ❌ Use inconsistent tag hierarchies
  • ❌ Create links without purpose
  • ❌ Forget to use tag search features
建议
  • ✅ 大量使用维基链接
    [[note]]
  • ✅ 创建层级标签
    #project/area/topic
  • ✅ 在相关内容间创建双向链接
  • ✅ 按类型、状态和项目添加标签
  • ✅ 构建互联的知识网络
避免
  • ❌ 过度添加标签(收益递减)
  • ❌ 使用不一致的标签层级
  • ❌ 创建无意义的链接
  • ❌ 忽略标签搜索功能

Obsidian Plugins for Claude Integration

用于Claude集成的Obsidian插件

Recommended Plugins

推荐插件

  1. Templater - Advanced templates with dynamic content
  2. Dataview - Query and display notes dynamically
  3. Tasks - Enhanced task management
  4. Calendar - Visual daily note navigation
  5. Git - Version control for vault (if using)
  6. Quick Add - Rapid note creation with macros
  1. Templater - 支持动态内容的高级模板插件
  2. Dataview - 动态查询和展示笔记
  3. Tasks - 增强型任务管理插件
  4. Calendar - 可视化每日笔记导航
  5. Git - 知识库版本控制(如需使用)
  6. Quick Add - 通过宏快速创建笔记

Dataview Examples for Claude Sessions

用于Claude会话的Dataview示例

dataview
undefined
dataview
undefined

Recent Claude sessions

近期Claude会话

TABLE date, summary FROM #claude-session SORT date DESC LIMIT 10

```dataview
TABLE date, summary FROM #claude-session SORT date DESC LIMIT 10

```dataview

Pending tasks from sessions

会话中的待处理任务

TASK FROM #claude-session WHERE !completed
undefined
TASK FROM #claude-session WHERE !completed
undefined

Troubleshooting

故障排除

Issue 1: $OBSIDIAN_CLAUDE not set

问题1:$OBSIDIAN_CLAUDE未设置

Problem: Environment variable not defined
Solution:
bash
undefined
问题:环境变量未定义
解决方案:
bash
undefined

Add to shell profile

添加到Shell配置文件

echo 'export OBSIDIAN_CLAUDE="/path/to/vault"' >> ~/.zshrc source ~/.zshrc
undefined
echo 'export OBSIDIAN_CLAUDE="/path/to/vault"' >> ~/.zshrc source ~/.zshrc
undefined

Issue 2: Note not appearing in Obsidian

问题2:笔记未在Obsidian中显示

Problem: File created but not visible
Solution:
  • Ensure file has
    .md
    extension
  • Check file permissions
  • Verify path is within vault
  • Refresh Obsidian file list
问题:已创建文件但不可见
解决方案:
  • 确保文件具有
    .md
    扩展名
  • 检查文件权限
  • 验证路径是否在知识库范围内
  • 刷新Obsidian文件列表

Issue 3: Links not working

问题3:链接无法正常工作

Problem: Wikilinks don't navigate correctly
Solution:
  • Ensure exact note name match (case-sensitive)
  • Check for file extension in link (shouldn't include
    .md
    )
  • Verify linked note exists
  • Use Obsidian's link autocomplete
问题:维基链接无法正确跳转
解决方案:
  • 确保笔记名称完全匹配(区分大小写)
  • 检查链接中是否包含文件扩展名(不应包含
    .md
  • 验证被链接的笔记是否存在
  • 使用Obsidian的链接自动完成功能

Issue 4: Frontmatter rendering in preview

快速参考

使用Claude创建笔记

Problem: YAML frontmatter shows as text
Solution:
  • Ensure frontmatter is first thing in file
  • Use proper YAML syntax (three dashes before and after)
  • Check for trailing spaces
bash
undefined

Quick Reference

会话笔记

Creating Notes with Claude

bash
undefined

cat > "$OBSIDIAN_CLAUDE/Sessions/$(date +%Y-%m-%d)-topic.md" <<'EOF'

date: 2026-01-23 type: session-note tags: [claude-session]

Session note

内容

cat > "$OBSIDIAN_CLAUDE/Sessions/$(date +%Y-%m-%d)-topic.md" <<'EOF'

date: 2026-01-23 type: session-note tags: [claude-session]

EOF

Content here

任务笔记

EOF

cat > "$OBSIDIAN_CLAUDE/Tasks/task-name.md" <<'EOF'

date: 2026-01-23 type: task tags: [task, status/pending]

Task note

任务:task-name

cat > "$OBSIDIAN_CLAUDE/Tasks/task-name.md" <<'EOF'

date: 2026-01-23 type: task tags: [task, status/pending]

  • 步骤1 EOF

Task: task-name

快速追加到每日笔记

  • Step 1 EOF
echo "## 笔记
内容" >> "$OBSIDIAN_CLAUDE/Daily/$(date +%Y-%m-%d).md"
undefined

Quick append to daily

核心Obsidian语法

echo "## Note
Content" >> "$OBSIDIAN_CLAUDE/Daily/$(date +%Y-%m-%d).md"
undefined
markdown
undefined

Essential Obsidian Syntax

维基链接

markdown
undefined
[[笔记名称]] [[笔记#标题]] [[笔记|显示文本]]

Wikilinks

标签

[[Note Name]] [[Note#Heading]] [[Note|Display Text]]
#tag #层级/标签

Tags

任务

#tag #hierarchical/tag
  • 待处理
  • 已完成

Tasks

提示框

  • Pending
  • Done
[!note] 内容

Callouts

块引用

[!note] Content
^block-id [[笔记#^block-id]]
undefined

Block references

与其他技能的集成

^block-id [[Note#^block-id]]
undefined
本技能可与以下技能配合使用:
  • folder-organization - 知识库结构标准
  • managing-environments - 开发工作流
  • claude-collaboration - 团队知识共享

Integration with Other Skills

参考资料与资源

This skill works well with:
  • folder-organization - Vault structure standards
  • managing-environments - Development workflow
  • claude-collaboration - Team knowledge sharing

记住:我们的目标是构建一个可搜索、互联的知识库,使其随每次Claude会话不断成长。从简单开始,根据需要逐步添加结构。

References and Resources


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