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-ralph-engine-plugin

v0.2.0-alpha.2

Published

Plugin scaffolder for Ralph Engine — create community plugins with one command

Readme

create-ralph-engine-plugin

CI Sonar Quality Gate Coverage npx Node License: MIT Repository

Developer scaffolder for Ralph Engine plugins.

This package is the separate npx create-ralph-engine-plugin entrypoint so plugin authors can scaffold plugin projects without turning scaffold generation into a generic runtime concern.

The scaffolder only accepts plugin kinds and capabilities that already exist in the typed Ralph Engine contracts. Future surfaces stay rejected until the core runtime defines them explicitly.

Scaffolded plugin identifiers use the same dotted namespace contract as the runtime and official manifests, for example acme.jira-suite.

The generated manifest.yaml follows the versioned manifest contract shipped in schema/plugin-manifest.schema.json, and the scaffolder validates that manifest before writing it to disk.

The generated Rust crate keeps locale-aware plugin metadata under src/i18n/ so new plugin projects start with the same additive locale structure used by the runtime and official plugins.

What it gives you

  • namespaced plugin id scaffold such as acme.jira-suite
  • versioned manifest.yaml aligned with the runtime contract
  • typed contribution sections for templates, prompts, agents, checks, providers, and policies when capabilities require them
  • Rust crate with per-locale metadata catalogs in src/i18n/
  • generated runtime hooks based on reviewed capability contracts
  • validation before writing the scaffold to disk

Usage

npx create-ralph-engine-plugin plugin jira-suite --publisher acme

Interactive mode works when running in a TTY without --yes. Non-interactive mode is driven by flags and is suitable for automation.

The scaffolder resolves user-facing CLI text through locale catalogs and currently supports en plus pt-br via RALPH_ENGINE_LOCALE, falling back to English when an unsupported locale is requested. That locale resolution now follows the same typed shared locale contract owned by re-config, so runtime, official plugins, and scaffolded plugins add new locales on one canonical base.

Generated Rust plugin crates also start with per-locale catalog modules in src/i18n/, so localized names and summaries can grow by adding locale files instead of rewriting runtime-facing handlers.

Open Source Notes

  • this package is the only supported scaffold entrypoint for plugin creation
  • future plugin kinds or capabilities stay rejected until the core runtime defines them
  • locale growth is additive; en remains the fallback when a locale is missing
  • the generated manifest and crate layout are designed to stay compatible with the typed Rust contracts in the main repository