npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@claudeautopm/plugin-obsidian

v1.0.0

Published

Obsidian vault integration plugin for ClaudeAutoPM — sync, Dataview, Mermaid, and Excalidraw support

Readme

@claudeautopm/plugin-obsidian

Obsidian Vault Integration Plugin for ClaudeAutoPM Framework

License: MIT

Overview

@claudeautopm/plugin-obsidian creates a read-only Obsidian vault mirror of your ClaudeAutoPM project. It syncs project markdown (agents, commands, rules, epics, PRDs, issues) to an Obsidian vault where Dataview, Mermaid, Excalidraw, and canonical frontmatter work out of the box.

Sync is unidirectional: project to vault. Never edit files in the Obsidian vault directly.

Package Information

  • Package Name: @claudeautopm/plugin-obsidian
  • Category: Integration
  • Schema Version: 2.0

Features

  • Vault Sync -- Unidirectional project-to-vault sync via rsync (one-shot, watch, dry-run, safe-mode)
  • Setup Wizard -- Interactive configuration for vault path, prefix, watch mode, and environment detection (WSL2, macOS, Linux)
  • Doctor -- Five-check diagnostic for common integration issues (missing tools, unreachable vault, dotfolder visibility, Dataview prefix, broken symlinks)
  • Templates -- MOC, Dashboard, Dataview queries, Mermaid diagrams, and Excalidraw canvas
  • Canonical Frontmatter -- Schema for Dataview + Breadcrumbs compatibility across all synced files
  • Cross-Platform -- Supports WSL2, macOS, and Linux-native environments

Installation

# Install via scenario
autopm install --scenario=obsidian

# Or add to existing installation (scenario 7)
autopm install

Prerequisites

  • rsync (required)
  • inotify-tools (Linux/WSL, optional for --watch mode)
  • fswatch (macOS, optional for --watch mode)
  • Obsidian desktop app

Commands

Available from your terminal via autopm obsidian <command> and as /obsidian:<command> slash commands inside Claude Code.

autopm obsidian setup

Configure your Obsidian vault. Run once after install:

autopm obsidian setup --vault-path "/path/to/your vault" --prefix my-project

# WSL:   --vault-path "/mnt/c/Users/You/Documents/My Vault"
# macOS: --vault-path "/Users/you/Documents/My Vault"
# Linux: --vault-path "/home/you/Obsidian/My Vault"

autopm obsidian sync

Sync project files to the Obsidian vault.

autopm obsidian sync              # One-shot sync
autopm obsidian sync --watch      # Continuous sync on file changes
autopm obsidian sync --check      # Dry-run (show what would sync)
autopm obsidian sync --safe-mode  # Don't delete vault files

/obsidian:init (Claude Code)

Generate project-aware vault files by reading your actual project structure. Unlike generic templates, this reads your real issues, epics, agents, and code to create tailored MOC, Dashboard, diagrams, and templates.

/obsidian:init          # Generate vault files
/obsidian:init --force  # Overwrite existing files

autopm obsidian doctor

Diagnose common integration problems:

  1. Missing rsync / inotify-tools / fswatch
  2. Unreachable or non-writable vault path
  3. Issues under .claude/issues/ (invisible to Dataview)
  4. Wrong Dataview FROM prefix
  5. Broken symlink between .claude/issues and issues/

Configuration

Settings are stored in .claude/config.json:

{
  "obsidian": {
    "vault_path": "/path/to/vault",
    "vault_prefix": "my-project",
    "watch": false,
    "environment": "wsl"
  }
}

Sync Mapping

| Project Path | Vault Path | |--------------|------------| | .claude/agents/ | {vault}/{prefix}/agents/ | | .claude/commands/ | {vault}/{prefix}/commands/ | | .claude/rules/ | {vault}/{prefix}/rules/ | | .claude/epics/ | {vault}/{prefix}/epics/ | | .claude/prds/ | {vault}/{prefix}/prds/ | | issues/ | {vault}/{prefix}/issues/ | | *.md (root) | {vault}/{prefix}/ |


Documentation

Full user guide: docs/plugins/obsidian.md


Peer Dependencies

  • @claudeautopm/plugin-core (^2.0.0) -- Core framework plugin (REQUIRED)

License

MIT