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 🙏

© 2025 – Pkg Stats / Ryan Hefner

rwsdk-claude

v1.0.0

Published

RWSDK knowledge base for Claude CLI - gives Claude comprehensive understanding of RedwoodSDK

Readme

rwsdk-claude

Give Claude CLI comprehensive understanding of RedwoodSDK (RWSDK).

What is this?

This package installs RWSDK documentation into Claude CLI's knowledge base, allowing Claude to help you build RWSDK applications with accurate, up-to-date information.

RWSDK is NOT RedwoodJS - it's a completely separate lightweight React framework for Cloudflare Workers.

Installation

# Global install (recommended)
npm install -g rwsdk-claude

# Or use npx
npx rwsdk-claude init

What gets installed

  1. Global RWSDK Documentation~/.claude/docs/rwsdk.md

    • Complete API reference
    • All guides (Tailwind, shadcn, auth, realtime, etc.)
    • Code patterns and examples
  2. Project TemplateCLAUDE.md

    • Quick reference for project-specific context
    • Core patterns and file structure

Commands

# Add CLAUDE.md to your RWSDK project
rwsdk-claude init

# Update global docs to latest version
rwsdk-claude update

# Open docs in your editor
rwsdk-claude docs

What Claude will know

After installation, Claude CLI understands:

  • Routing - defineApp, route, prefix, render, layout
  • React Server Components - Server vs Client components
  • Server Functions - "use server" pattern
  • Database - SQLite with Kysely, migrations, Durable Objects
  • Authentication - Sessions with Durable Objects
  • Realtime - WebSockets, live updates
  • Storage - R2 bucket uploads
  • Queues - Background job processing
  • Cron - Scheduled tasks
  • Email - Resend integration
  • Tailwind v4 - CSS-based config
  • shadcn/ui - Component aliases
  • Deployment - Cloudflare Workers

Example Usage

After installing, ask Claude:

"Create a new RWSDK route with authentication"
"Add a realtime chat feature"
"Set up R2 file uploads"
"Create a Kysely migration for users table"

Claude will provide accurate RWSDK-specific code, not generic React or RedwoodJS patterns.

Links