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

obsidian-dev-skills

v1.1.4

Published

Agent skills for Obsidian plugin and theme development

Readme

Obsidian Development Skills

This repository contains centralized AI agent skills for Obsidian plugin and theme development. It provides a single source of truth for development guidance, patterns, and best practices.

Repository Structure

obsidian-dev-skills/
├── obsidian-dev/             # Plugin development skills
├── obsidian-theme-dev/       # Theme development skills
├── obsidian-ops/             # Operations & workflows
└── obsidian-ref/             # Technical references

Installation & Usage

This package can be used as a development dependency in your Obsidian project.

1. Install to your project

# Using pnpm (Recommended)
pnpm add -D obsidian-dev-skills

# Using npm
npm install --save-dev obsidian-dev-skills

# Using yarn
yarn add -D obsidian-dev-skills

2. Initialize localized skills

Run the initialization script to seed the .agent/skills/ folder and sync AGENTS.md. This also creates a project-specific skill template if one is missing.

# Using pnpm (Standard entry point)
pnpm obsidian-dev-skills

# Using npx (Universal entry point)
npx obsidian-dev-skills

# Manual execution
node node_modules/obsidian-dev-skills/scripts/init.mjs

Skills Overview

obsidian-dev

  • TypeScript/JavaScript development patterns
  • Obsidian API usage
  • Plugin lifecycle management
  • Command and settings implementation

obsidian-theme-dev

  • CSS/SCSS development patterns
  • Obsidian CSS variables
  • Responsive design
  • Dark/light mode support

obsidian-ops

  • Build and release workflows
  • Version management
  • Sync procedures
  • Testing and quality assurance

obsidian-ref

  • API documentation
  • Manifest requirements
  • File formats
  • UI/UX guidelines

Project-Specific Skills

Each project should also have a project/ skill in .agent/skills/project/ that contains:

  • Project-specific architecture details
  • Unique conventions and patterns
  • Maintenance tasks
  • Local workflow documentation

Maintenance

Updating Skills

When skills are updated in this repository, all linked projects automatically get the updates. No manual sync required.

Tracking Sync Status

Each project maintains its own sync-status.json file to track when reference materials were last updated.

Compatibility

  • AI Agents: Compatible with any AI agent supporting the Open Cognitive Skills (OCS) Specification
  • IDEs: Works across all development environments (VS Code, Cursor, JetBrains IDEs, etc.)
  • Specification: Compatible with the OpenSkills format

Contributing

Skills are maintained centrally to ensure consistency across all Obsidian projects. Updates should be made here and will automatically propagate to all linked projects.