obsidian-claude-pkm

by ballredVerified

A complete starter kit for an Obsidian + Claude Code personal knowledge management system.

1,845
Stars
125
Forks
Shell
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/ballred/obsidian-claude-pkm

Getting Started

Guides for using skills like obsidian-claude-pkm.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

📊 Take the quick poll - Help shape what gets built next!


Obsidian + Claude Code: AI Accountability System

Not another PKM starter kit. This is an execution system that connects your 3-year vision to what you do today — and holds you accountable with AI.

3-Year Vision ──→ Yearly Goals ──→ Projects ──→ Monthly Goals ──→ Weekly Review ──→ Daily Tasks
                                      ↑
                              /project new
                         (the bridge layer)

Every layer connects. /daily surfaces your ONE Big Thing from the weekly review. /weekly shows project progress. /monthly checks quarterly milestones. /goal-tracking knows which goals have no active project. Nothing falls through the cracks.

v3.1 · Zero dependencies · MIT License

The Cascade

The #1 reason people star this repo: "I want goals → projects → daily notes → tasks to actually connect."

LayerFileSkillWhat It Does
VisionGoals/0. Three Year Goals.md/goal-trackingLife areas, long-term direction
AnnualGoals/1. Yearly Goals.md/goal-trackingMeasurable objectives, quarterly milestones
ProjectsProjects/*/CLAUDE.md/projectActive initiatives linked to goals
MonthlyGoals/2. Monthly Goals.md/monthlyRoll up weekly reviews, check quarterly progress
WeeklyGoals/3. Weekly Review.md/weeklyReflect, realign, plan next week
DailyDaily Notes/YYYY-MM-DD.md/dailyMorning planning, evening reflection

How It Flows

Morning/daily creates today's note, shows your week's ONE Big Thing and active project next-actions. You pick your focus.

Evening/daily summarizes which goals and projects got attention today. Unlinked tasks get flagged.

Sunday/weekly reads all your daily notes, scans project status, calculates goal progress, and helps you plan next week. Optional agent team mode parallelizes the collection.

End of month/monthly rolls up the weekly reviews, checks quarterly milestones against yearly goals, and sets next month's priorities.

Ad hoc/project new creates a project linked to a goal. /project status shows a dashboard. /review auto-detects the right review type based on context.

Quick Start

Prerequisites

Setup

# Clone and set up
git clone https://github.com/ballred/obsidian-claude-pkm.git
cd obsidian-claude-pkm
chmod +x scripts/setup.sh && ./scripts/setup.sh

# Open vault in Obsidian, then start Claude Code:
cd ~/your-vault-location
claude

On first run, you'll see a welcome message with the cascade visualization. Run /onboard to personalize your vault — it asks your name, preferred review day, and goal areas, then configures everything.

Already have a vault?

You don't need to start from the template. Run /adopt from the root of your existing Obsidian vault — it scans your folder structure, detects your organization method (PARA, Zettelkasten, LYT, etc.), maps your folders interactively, and generates all config files scoped to your directory names. Your vault structure stays untouched.

cd ~/your-existing-vault
claude
# then type: /adopt

Windows

git clone https://github.com/ballred/obsidian-claude-pkm.git
cd obsidian-claude-pkm
scripts\setup.bat

Skills (Slash Commands)

SkillCommandPurpose
Daily/dailyMorning planning, midday check-in, evening reflection
Weekly/weekly30-min weekly review with project rollup
Monthly/monthlyMonthly review, quarterly milestone check
Project/projectCreate, track, archive projects linked to goals
Review/reviewSmart router — detects morning/Sunday/end-of-month context
Push/pushCommit and push vault changes to Git
Onboard/onboardInteractive setup + load vault context
Adopt/adoptScaffold onto an existing vault (BYOV)
Upgrade/upgradeUpdate to latest version, preserving your content
Goal Tracking(auto)Track progress across the full cascade
Vault Ops(auto)Read/write files, manage wiki-links

AI Agents

Four specialized agents with cross-session memory:

AgentWhat It Does
goal-alignerAudits daily activity against stated goals. Flags misalignment.
weekly-reviewerFacilitates the 3-phase weekly review. Learns your reflection style.
note-organizerFixes broken links, consolidates duplicates, maintains vault hygiene.
inbox-processorGTD-style inbox processing — categorize, clarify, organize.
claude "Use the goal-aligner agent to analyze my last 2 weeks"
claude "Use the inbox-processor agent to clear my inbox"

Agents use memory: project to learn your patterns across sessions — the goal-aligner remembers recurring misalignment patterns, the weekly-reviewer learns what reflection questions resonate.

Productivity Coach

An output style that transforms Claude into an accountability partner:

/output-style coach

The coach challenges assumptions, points out goal-action misalignment, asks powerful questions, and holds you to your commitments. Pairs naturally with /daily and /weekly.

Automation

Zero dependencies. Everything runs on bash and markdown.

  • Auto-commit — Every file write/edit triggers a Git commit via PostToolUse hook
  • Session init — Surfaces your ONE Big Thing, active project count, and days since last review
  • First-run welcome — New vaults get a guided onboarding experience
  • Skill discovery — Mention "skill" or "help" and available commands are listed automatically
  • Path-specific rules — Markdown standards, productivity workflow, and project management conventions loaded contextually

Structure

Your Vault/
├── CLAUDE.md                    # AI context and navigation
├── .claude/
│   ├── agents/                  # 4 specialized AI agents (with memory)
│   ├── skills/                  # 10 skills (8 listed above + 2 auto)
│   ├── hooks/                   # Auto-commit, session init, skill discovery
│   ├── rules/                   # Path-specific conventions
│   ├── output-styles/           # Productivity Coach
│   └── settings.json            # Permissions, env vars, hooks config
├── Daily Notes/                 # YYYY-MM-DD.md
├── Goals/                       # The cascade (3-year → weekly)
├── Projects/                    # Active projects with CLAUDE.md each
├── Templates/                   # Reusable note structures
├── Archives/                    # Completed/inactive content
└── Inbox/                       # Quick captures (optional)

Upgrading

Built-in upgrade (v3.1+)

/upgrade check    # Preview what's changed
/upgrade          # Interactive upgrade with backup

The upgrade skill creates a timestamped backup, shows diffs for each changed file, and never touches your content folders (Daily Notes, Goals, Projects, etc.).

Manual upgrade from v2.1

# Copy new skill directories
cp -r vault-template/.claude/skills/project your-vault/.claude/skills/
cp -r vault-template/.claude/skills/monthly your-vault/.claude/skills/
cp -r vault-template/.claude/skills/review your-vault/.claude/skills/
cp -r vault-template/.claude/skills/upgrade your-vault/.claude/skills/

# Update agents, hooks, settings
cp vault-template/.claude/agents/*.md your-vault/.claude/agents/
cp vault-template/.claude/hooks/* your-vault/.claude/hooks/
cp vault-template/.claude/settings.json your-vault/.claude/
chmod +x your-vault/.claude/hooks/*.sh

From v1.x

cp -r vault-template/.claude-plugin your-vault/
cp -r vault-template/.claude your-vault/
cp vault-template/CLAUDE.md your-vault/
chmod +x your-vault/.claude/hooks/*.sh

Documentation

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines. Good first issues are labeled — check the issues page.

License

MIT — Use this freely for your personal knowledge management journey.

Frequently Asked Questions

What is obsidian-claude-pkm?

obsidian-claude-pkm is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ballred. A complete starter kit for an Obsidian + Claude Code personal knowledge management system. It has 1,845 GitHub stars.

Is obsidian-claude-pkm safe to use?

Yes. obsidian-claude-pkm passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install obsidian-claude-pkm?

Clone the repository with "git clone https://github.com/ballred/obsidian-claude-pkm" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is obsidian-claude-pkm written in?

obsidian-claude-pkm is primarily written in Shell. It is open-source under ballred on GitHub, so you can review or fork the full source.

Are there alternatives to obsidian-claude-pkm?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh obsidian-claude-pkm against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details