Token导航 LogoToken导航TokenDH.com
开发权限需确认github未标认证来源可访问许可证需确认审计未展示

obsidian-second-brainObsidian second brain 搜索

Agent Skill

obsidian-second-brain 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

832

周安装

34

GitHub Stars

61

下载量

269
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/julianobarbosa/claude-code-skills --skill obsidian-second-brain

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • obsidian-second-brain 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
obsidian-second-brain
description
>-

Obsidian Second Brain + Claude Code Integration

Overview

Transform your Obsidian vault into an AI-powered second brain by integrating it with Claude Code. This skill covers multiple integration patterns from minimal setup to advanced self-evolving systems.

Key Insight: An Obsidian vault is essentially a codebase of markdown files. Claude Code is already excellent at navigating file structures and making surgical edits - no special plugin required.

Integration Patterns

Decision Tree

What integration level do you need?
├── Minimal (just works)?
│   └── Pattern A: Direct Access
│       └── Claude Code reads vault directly (no setup needed)
├── Enhanced discovery?
│   └── Pattern B: Manifest-Based
│       └── Add CLAUDE.md to vault root
├── Real-time bidirectional?
│   └── Pattern C: MCP Plugin
│       └── Install obsidian-claude-code-mcp
├── Self-evolving PKM?
│   └── Pattern D: COG Pattern
│       └── Git + automation + self-healing refs
└── Pre-configured structure?
    └── Pattern E: Claudesidian
        └── Adopt opinionated vault structure

Pattern A: Direct Access (Zero Setup)

Claude Code can already read and edit your vault. No configuration needed.

How It Works

# Claude Code navigates your vault like any codebase
cd /path/to/your/vault
claude

# Example interactions:
# "Read my daily note from today"
# "Find all notes mentioning project X"
# "Add backlinks to people mentioned in this note"

Best Practices

  • Open Claude Code from vault root directory
  • Use natural language to describe what you want
  • Reference files by name or topic, not exact paths

Use Cases

TaskClaude Code Capability
Read notesDirect file access
Edit notesSurgical markdown edits
Add backlinksFind references, insert wikilinks
Create notesWrite new files with proper frontmatter
Search contentGrep across all markdown files
Refactor structureMove files, update references

Pattern B: Manifest-Based (CLAUDE.md)

Add a project manifest to help Claude Code understand your vault's structure and conventions.

CLAUDE.md Template

Create CLAUDE.md at your vault root:

# Obsidian Vault Manifest

## Vault Overview
This is a personal knowledge management vault using [describe your system].

## Folder Structure
- `00 - Inbox/` - Quick capture, unsorted notes
- `01 - Projects/` - Active project notes
- `02 - Areas/` - Ongoing responsibilities
- `03 - Resources/` - Reference materials
- `04 - Archive/` - Completed/inactive content
- `Daily/` - Daily notes (YYYY/MM/DD.md format)
- `Templates/` - Note templates

## Conventions
- Frontmatter: Always include `created`, `updated`, `tags`
- Links: Use `[[wikilinks]]` not markdown links
- Tags: Hierarchical (e.g., `#project/client-name`)
- Dates: ISO 8601 format (YYYY-MM-DD)

## Important Files
- `_index.md` - Main dashboard/MOC
- `project-context.md` - Current project context

## When Creating Notes
1. Always add proper frontmatter
2. Include backlinks to related notes
3. Tag appropriately for discoverability
4. Place in correct folder based on type

## When Editing Notes
1. Update the `updated` timestamp
2. Maintain existing link structure
3. Preserve block references (^block-id)

See: templates/CLAUDE.md for full template.

Pattern C: MCP Plugin Integration

Real-time bidirectional communication via Model Context Protocol.

Installation

# Install the MCP plugin from Obsidian Community Plugins
# Plugin: obsidian-claude-code-mcp
# Repository: github.com/iansinnott/obsidian-claude-code-mcp

Configuration

  1. Enable plugin in Obsidian
  2. Default WebSocket port: 22360
  3. Claude Code auto-discovers running Obsidian instances

MCP Capabilities

CapabilityDescription
read_noteRead note content with metadata
write_noteCreate or update notes
searchSemantic search across vault
list_notesBrowse vault structure
get_backlinksFind notes linking to a file
get_outlinksFind notes a file links to
get_tagsList all tags in vault

Claude Code MCP Configuration

Add to your Claude Code settings if not auto-discovered:

{
  "mcpServers": {
    "obsidian": {
      "transport": "websocket",
      "url": "ws://localhost:22360"
    }
  }
}

Pattern D: COG Self-Evolving Pattern

Git-based self-evolving second brain with auto-organization.

Architecture

vault/
├── .git/                    # Version control
├── CLAUDE.md                # AI manifest
├── _meta/
│   ├── patterns.md          # Learned patterns
│   ├── conventions.md       # Auto-discovered rules
│   └── maintenance-log.md   # Self-healing log
├── notes/                   # Content
└── daily/                   # Journal

Self-Healing Features

  1. Auto cross-references: Updates links when notes are moved
  2. Pattern learning: Discovers and applies your conventions
  3. Orphan detection: Identifies unlinked notes
  4. Consistency checks: Validates frontmatter, tags

Git Hooks Setup

# .git/hooks/post-commit
#!/bin/bash
# Trigger Claude Code maintenance after commits

claude --print "Check for broken links and orphan notes in the vault.
Fix any issues and update _meta/maintenance-log.md with actions taken."

Maintenance Commands

# Ask Claude Code to perform maintenance
claude "Analyze my vault for orphan notes and suggest connections"
claude "Find notes without proper frontmatter and fix them"
claude "Update all daily notes with missing navigation links"

Pattern E: Claudesidian Structure

Adopt a pre-configured vault structure optimized for AI interaction.

Folder Structure

vault/
├── CLAUDE.md                # Manifest (required)
├── Inbox/                   # Quick capture
├── Projects/                # Active work
├── Knowledge/               # Permanent notes
├── Journal/                 # Daily reflection
├── Templates/               # Note templates
└── _meta/                   # System files
    ├── prompts/             # Saved prompts
    ├── contexts/            # Context files
    └── exports/             # Generated outputs

Key Conventions

  • Every note has frontmatter with id, created, updated
  • Tags follow hierarchy: #type/subtype
  • Daily notes link to previous/next
  • Templates include Claude Code prompts

Common Workflows

Auto-Linking People, Places, Books

User: "Read my journal entry from today and add backlinks to all
people, places, and books mentioned"

Claude Code:
1. Reads today's daily note
2. Extracts entity mentions
3. Searches vault for existing notes
4. Creates new notes if needed
5. Inserts [[wikilinks]] throughout

Knowledge Graph Maintenance

User: "Find orphan notes and suggest connections"

Claude Code:
1. Identifies notes with no incoming/outgoing links
2. Analyzes content for potential connections
3. Suggests or creates links
4. Updates MOCs (Maps of Content)

Research Synthesis

User: "Synthesize all my notes on [topic] into a summary note"

Claude Code:
1. Searches for relevant notes
2. Extracts key insights
3. Creates structured summary
4. Links back to source notes

Daily Note Enhancement

User: "Review today's note and add structure"

Claude Code:
1. Reads raw capture
2. Adds proper frontmatter
3. Identifies tasks → adds checkboxes
4. Identifies mentions → adds links
5. Suggests tags based on content

Best Practices

For All Patterns

  1. Keep vault in version control - Git enables rollback and change tracking
  2. Use consistent frontmatter - Helps Claude Code understand note types
  3. Maintain a manifest - CLAUDE.md provides context and conventions
  4. Regular maintenance - Ask Claude Code to check for issues periodically

For MCP Integration

  1. Keep Obsidian running - MCP requires active connection
  2. Use semantic search - Leverage MCP's search capabilities
  3. Handle conflicts - Be aware of simultaneous edits

For Self-Evolving Systems

  1. Review AI changes - Check git diff before committing
  2. Train on preferences - Correct mistakes to improve patterns
  3. Document exceptions - Update manifest with edge cases

Troubleshooting

Claude Code Not Finding Notes

# Ensure you're in the vault directory
pwd  # Should show vault path

# Check file permissions
ls -la *.md

# Verify markdown extension
find . -name "*.md" | head -20

MCP Connection Failed

# Check Obsidian is running
pgrep -l Obsidian

# Verify plugin is enabled
# Settings → Community Plugins → obsidian-claude-code-mcp

# Check port availability
lsof -i :22360

# Test WebSocket connection
websocat ws://localhost:22360

Broken Wikilinks After Edits

# Ask Claude Code to fix
claude "Find all broken wikilinks in the vault and fix them"

# Or use grep to find issues
grep -r "\[\[" --include="*.md" | grep -v "\.obsidian"

Integration Comparison

FeatureDirectManifestMCPCOGClaudesidian
Setup RequiredNoneMinimalPluginGit + hooksStructure
Real-time SyncNoNoYesNoNo
Semantic SearchBasicBasicYesBasicBasic
Self-HealingNoNoNoYesPartial
Vendor Lock-inNoneNoneLowNoneStructure
Best ForSimpleOrganizedPower usersAutomationNew vaults

Resources

References

Templates

External Resources

Quick Start

Fastest Path (Pattern A + B)

# 1. Navigate to your vault
cd /path/to/your/obsidian/vault

# 2. Create a minimal manifest
cat > CLAUDE.md << 'EOF'
# Vault Manifest

This is my Obsidian vault. Key conventions:
- Daily notes in `Daily/YYYY/MM/DD.md`
- Use `[[wikilinks]]` for internal links
- Frontmatter with `created`, `updated`, `tags`
EOF

# 3. Start using Claude Code
claude "What notes do I have about [topic]?"

Full Integration (Pattern C)

  1. Install obsidian-claude-code-mcp plugin
  2. Create CLAUDE.md manifest
  3. Enable plugin in Obsidian settings
  4. Claude Code auto-connects via WebSocket

Self-Evolving Setup (Pattern D)

  1. Initialize git in vault
  2. Create CLAUDE.md manifest
  3. Add git hooks for maintenance
  4. Schedule periodic Claude Code reviews

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

35.7%
按下载量换算96

Claude

30.49%
按下载量换算82

Cursor

19.8%
按下载量换算53

Gemini CLI

9.59%
按下载量换算26

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills