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

@meridiantoolkit/skills

v0.1.1

Published

Agent skills for the Meridian business-services platform (workflow, service catalog, requests, payments, i18n). Works as a pi package or a Claude Code plugin.

Readme

@meridiantoolkit/skills

Agent skills for the Meridian platform — user-facing skills for customers using Meridian through an API key (mrd_). Same SKILL.md files work as a pi Agent Skill package or a Claude Code plugin (.claude-plugin/plugin.json included) — no code, so nothing to port. Codex CLI has no skills concept; Codex users get the same coverage through the meridian MCP server's tool descriptions instead (see meridian-mcp).

Skills

| Skill | Trigger | |-------|---------| | meridian-api | API key, connect, authenticate, Bearer token, rate limits | | meridian-services | browse services, categories, requirements, form fields | | meridian-requests | create request, track status, chat, upload documents | | meridian-payments | quote, pay — Flouci (Tunisia, local) or Stripe (international), verify | | meridian-meetings | list/create meetings, RSVP, Teams join link |

All skills assume Authorization: Bearer mrd_… and MERIDIAN_API_URL. See meridian-api first to connect.

Install

pi:

pi install ./meridian-skills          # project-local
pi install /absolute/path/to/meridian-skills  # global
# or via npm after publish
pi install npm:@meridiantoolkit/skills

Or add to .pi/settings.json:

{ "skills": ["/absolute/path/to/meridian-skills/skills"] }

Claude Code:

/plugin marketplace add meridian-silkdev/meridian-plugin
/plugin install meridian-skills@meridian

Usage

Invocation syntax differs by host — the skill names themselves don't:

| Skill | pi | Claude Code | |-------|----|----| | meridian-api | /skill:meridian-api | /meridian-api | | meridian-services | /skill:meridian-services | /meridian-services | | meridian-requests | /skill:meridian-requests | /meridian-requests | | meridian-payments | /skill:meridian-payments | /meridian-payments | | meridian-meetings | /skill:meridian-meetings | /meridian-meetings |

Either host can also load a skill automatically when its description matches what you're asking for — you don't have to type the slash form.

CI/CD

  • .github/workflows/ci.yml — every push to main and every PR: installs the claude CLI and runs claude plugin validate ..
  • .github/workflows/publish.yml — fires on a published GitHub Release: validates, checks the release tag against both package.json and .claude-plugin/plugin.json versions, then npm publish --provenance via npm Trusted Publishing (OIDC) — no NPM_TOKEN secret needed. npm version <bump> keeps both version fields in sync automatically (see scripts/sync-plugin-version.mjs). Note this only covers the pi install npm:@meridiantoolkit/skills path — Claude Code installs straight from the git repo/tag and needs no publish step.

One-time setup after the first manual publish: npmjs.com → package settings → Trusted Publisher → GitHub Actions → meridian-silkdev/meridian-skills, workflow publish.yml.