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

your-second-mind

v0.1.0

Published

Scaffold a personalized, agent-ready second-brain Obsidian vault in seconds.

Readme

your-second-mind

Scaffold a personalized, agent-ready second brain Obsidian vault in under a minute.

npx your-second-mind@latest

What you get

A ready-to-open Obsidian vault structured around PARA + Zettelkasten:

00-Inbox/          ← capture anything here first
10-Daily/          ← daily notes
20-Projects/       ← active projects
30-Areas/          ← ongoing areas of responsibility
40-Resources/      ← reference material
50-Slipbox/        ← atomic, evergreen notes (Zettelkasten)
60-MOCs/           ← maps of content
70-People/         ← contact / relationship notes
80-Archive/        ← completed projects & inactive areas
90-Meta/           ← vault config: templates, AI sessions
  Templates/       ← 6 Obsidian note templates
  AI-Sessions/

raw/               ← raw source subfolders (papers, articles, …)
agents-workflow/   ← copy-paste commands for your AI agent
CLAUDE.md          ← Claude Code operating manual (if selected)
.cursorrules       ← Cursor rules (if selected)
AGENTS.md          ← Codex / OpenAI instructions (if selected)
README.md          ← this vault's README
index.md           ← vault index
log.md             ← running log
.gitignore         ← .obsidian/, .DS_Store

Each folder gets a _index.md with a Dataview query stub.

Quick start

# Interactive (recommended for first run)
npx your-second-mind@latest

# Non-interactive (CI / scripted)
npx your-second-mind@latest \
  --yes \
  --name "Alice" \
  --vault-path ~/second-brain \
  --agents claude-code,cursor \
  --areas engineering-craft,writing,health \
  --no-git

Flags

| Flag | Short | Description | |------|-------|-------------| | --yes | -y | Skip prompts; use defaults + any flags supplied | | --name <n> | | Your name (used in AI schema files) | | --role <r> | | Your role (default: software engineer) | | --vault-path <p> | | Destination directory (default: ~/second-brain) | | --agents <list> | | Comma-separated: claude-code, cursor, codex | | --areas <list> | | Comma-separated area names (prefixed with area-) | | --raw-sources <list> | | Comma-separated raw source folders under raw/ | | --no-git | | Skip git init | | --dry-run | | Preview what would be created; write nothing | | --force | | Overwrite existing files | | --help | -h | Show help | | --version | -V | Print version |

Multi-agent setup

Your vault ships with an agents-workflow/ directory containing ready-to-use slash commands:

  • Claude Code → copy weekly-review.md and monthly-lint.md to .claude/commands/
  • Cursor → copy to .cursor/commands/ (check Cursor docs for the exact path)
  • Codex / OpenAI → copy to your agent's commands directory
  • Other agents → see agents-workflow/README.md for generic instructions

After scaffolding

  1. Open Obsidian → Open folder as vault → select your vault path
  2. Install the Dataview plugin (used by _index.md files)
  3. Install Templater plugin and point it at 90-Meta/Templates/
  4. Copy agents-workflow/weekly-review.md to your agent's commands folder and run /weekly-review

Requirements

  • Node.js ≥ 20
  • npm ≥ 7 (ships with Node 16+)

License

MIT