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

create-claude-stack

v1.0.0

Published

Scaffold a power-user Claude Code configuration with GSD workflow, safety hooks, and modular rules

Readme

Claude Power Stack

A power-user ~/.claude configuration for Claude Code — with GSD workflow, safety hooks, modular rules, and a fleet of specialized agents.

Install

# npm create (recommended — zero global install)
npm create claude-stack@latest

# or npx
npx create-claude-stack@latest

# or curl (macOS / Linux / WSL)
curl -fsSL https://raw.githubusercontent.com/nattechan/claude-power-stack/main/install.sh | bash

The installer is interactive: it asks where your projects live, whether you use Obsidian, and whether you want Discord notifications. Existing files are never silently overwritten — conflicts are shown with a diff and you choose what to do.

What's included

CLAUDE.md

Global instructions that load in every Claude Code session. Establishes the GSD workflow, tool hierarchy, confidence protocol, and session state pattern. Edit it to describe your stack.

rules/

Modular rule files loaded alongside CLAUDE.md:

| File | What it governs | |------|----------------| | cognitive.md | Think flags, PDCA loop, confidence protocol | | git-workflow.md | Branch model (nc{N}), commit format, PR flow | | code-standards.md | Language standards, TDD, file size limits | | agents.md | Which agent to reach for which task | | new-project.md | New project checklist, GSD customization |

hooks/

Lifecycle hooks that run automatically:

| Hook | When it runs | What it does | |------|-------------|--------------| | safety-guard.js | Before every Bash tool call | Blocks rm -rf /, fork bombs, DROP DATABASE, force push to main, etc. | | gsd-context-monitor.js | After every tool call | Warns the agent at 35% / 25% context remaining so it can wrap up before hitting limits | | discord-notify.sh | On session stop + notification | Posts a message to a Discord channel (optional — needs DISCORD_WEBHOOK_URL in .env) |

agents/

Specialized subagents dispatched with the Agent tool:

| Agent | Use for | |-------|---------| | engineer | Code implementation, debugging, TDD, PR review | | pm | GSD phase planning, roadmap, milestone management | | researcher | Web research, docs, library comparisons | | obsidian | Save findings to vault, query knowledge, daily logs |

mcp.json

Global MCP server configuration: filesystem, brave-search, firecrawl, repomix.

settings.json

Permissions (allow/ask/deny), hooks wiring, enabled plugins, and autoApprove list.

Prerequisites

  • Claude Code CLIinstall guide
  • Node.js 18+ — required for hooks and the installer
  • GSD plugin — install inside Claude Code: /install get-shit-done

Recommended plugins

Install these in Claude Code after setup:

superpowers          — writing plans, executing plans, brainstorming, debugging
everything-claude-code — 100+ skills: TDD, security review, code review, etc.
commit-commands      — /commit, /push, /pr in one shot
feature-dev          — feature planning and implementation workflow
frontend-design      — UI/UX implementation workflow

Optional integrations

Discord notifications

Add your webhook to ~/.claude/.env:

DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/your/webhook

Session-complete and attention-needed events post to your channel.

Obsidian vault

If you chose Obsidian during install, the obsidian agent knows your vault path. Install the obsidian plugin in Claude Code for /obsidian-daily-note, /obsidian-compress, etc.

Brave Search

Free tier at brave.com/search/api — 2 000 queries/month. Add BRAVE_API_KEY to ~/.claude/.env.

Customizing

  • CLAUDE.md — edit to describe your tech stack, preferred tools, and project domains
  • rules/ — each file is ≤ 100 lines; add or remove rule files as needed
  • agents/ — copy an existing agent as a template for domain-specific agents
  • hooks/ — edit safety-guard.js to add your own blocked command patterns
  • mcp.json — add project-specific MCP servers (n8n, Supabase, Sentry, etc.)

Project layout after install

~/.claude/
├── CLAUDE.md              ← Global instructions
├── mcp.json               ← MCP servers
├── settings.json          ← Permissions + hooks
├── .env.example           ← API key template (copy to .env)
├── rules/                 ← Modular rule files
├── hooks/                 ← Lifecycle hooks
├── agents/                ← Subagent definitions
└── tasks/
    └── lessons.md         ← Self-learning log

License

MIT