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

@ritual-ai/cli

v0.1.10

Published

Ritual — resolve ambiguity before coding. MCP server + CLI for AI-assisted feature development.

Readme

Ritual

License npm Node

Resolve ambiguity before coding.

Ritual surfaces the questions you should answer before writing code, then generates a risk-first Build Brief that your AI coding agent uses as its primary implementation guide. Works with Claude Code, Cursor, Kiro, Codex, GitHub Copilot, Gemini CLI, and Windsurf.


Install

npm install -g @ritual-ai/cli

That gives you the ritual CLI plus the skill files for every supported coding agent.

Quickstart

# Inside your project
ritual init                       # scaffold skills into .claude/, .cursor/, etc.
ritual login                      # authenticate to Ritual Cloud (optional — see modes below)

Then in your coding agent:

/ritual explore "Add multi-tenant RBAC"
/ritual brief
/ritual build "Add notification preferences"

Full command reference →

Two modes — pick what fits

| | Light mode | Cloud mode | |---|---|---| | Setup | ritual init | ritual init + ritual login | | Auth | None | Free Ritual Cloud account | | Discovery questions | Local — saved to RITUAL.md | Generated by AI pipeline, reviewed in app.ritual.work | | Knowledge sources | Local files | Uploaded + indexed for cross-exploration retrieval | | Recommendations | Inferred locally from codebase + RITUAL.md | Synthesized via the agentic pipeline | | Build Brief | Generated from RITUAL.md | Generated from accepted recommendations + requirement packages | | Collaboration | Solo only | Invite teammates to answer blocking questions |

Both modes work in any supported coding agent. Light mode is great for solo work or evaluating Ritual without an account. Cloud mode unlocks the team-collaboration loop.

What you'll see

A /ritual explore "..." run produces output like:

SCOPE BROKEN INTO SUB-PROBLEMS

  • Tenant boundaries
  • Role hierarchy & guards
  • Invite & join flow
  • Audit & ownership transfer

→ tackle what matters first

Then /ritual build walks you through reviewing recommendations one at a time:

─── recommendation 1 of 4 · epic: Authentication ───

  RECOMMENDATION
    Use Postgres RLS for tenant scoping

  WHAT IT DOES
    Enforces isolation at the data layer; application bugs can't leak rows.

  HOW TO BUILD IT
    • Add row-level security policies on each tenant-scoped table
    • Set tenant context via SET LOCAL in API request middleware
    • Verify with tenant-isolation integration tests

  TRADEOFF
    Migrations heavier; admin tooling needs SET LOCAL role.

  WHY THIS WINS
    Defense-in-depth survives application bugs that ACL-based isolation wouldn't.

Accept, edit, reject — your call. Ritual then generates a Build Brief leading with review-blocking items, and your coding agent implements against it.

About this repository

This is a public, source-available mirror of an internal Ritual repo, force-pushed on every release.

  • Most users don't need to clone it — install the CLI from npm above.
  • We welcome issues (bugs, feature requests, security via SECURITY.md).
  • We don't accept external pull requests — see CONTRIBUTING.md for the rationale.

The hosted MCP server runs at mcp.ritual.technology. Clients connect via the CLI; you don't run your own.

How it works

For the architecture, MCP protocol details, available tools, rate limits, and module layout, see docs/architecture.md.

For the outbound MCP client API (used internally to connect to Confluence / Drive / Jira / Slack), see docs/mcp-client-api.md.

For Claude Code-specific setup, see docs/claude-code-setup.md.

License

Apache 2.0 — see LICENSE.