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

@usemeridian/agent-skills

v0.1.3

Published

Cross-vendor agent skills for Meridian, built against Anthropic's Agent Skills spec. Walks Claude through the visa-readiness loop: corridor rules → application + trip details → documents → readiness check → Meridian Computer submission → appointment booki

Readme

@usemeridian/agent-skills

Cross-vendor agent skills for Meridian. Drops the Meridian visa-readiness loop into any agent that consumes the SKILL.md format — Claude Code, Claude.ai web, Cursor, Codex CLI, Goose.

Install

npx -y @usemeridian/agent-skills install

Installs all bundled skills into ~/.claude/skills/. The -y flag skips the npm install-confirmation prompt on first run; drop it if you want to confirm before npx fetches the package. Restart your agent — the skill activates the next time a relevant message lands (the skill's frontmatter description is what the agent matches on).

Other agents

npx -y @usemeridian/agent-skills install --agent=cursor   # ~/.cursor/skills
npx -y @usemeridian/agent-skills install --agent=codex    # ~/.codex/skills
npx -y @usemeridian/agent-skills install --agent=goose    # ~/.goose/skills

Custom path

npx -y @usemeridian/agent-skills install --target=./.skills

Pick a skill

npx -y @usemeridian/agent-skills install meridian-visa

Global install (optional)

npm install -g @usemeridian/agent-skills
agent-skills install
agent-skills list

What's in the box

npx -y @usemeridian/agent-skills list

Today, one skill:

  • visa-readiness — the Meridian visa loop. Look up corridor rules, file the application, fill trip details + documents, run a readiness check, dispatch Meridian Computer to fill the consulate's portal, book the appointment, record the outcome. Anonymous tools (requirements_lookup, requirements_evaluate, requirements_submit_feedback) work without login; user-scoped tools prompt for OAuth via Meridian on first call.

More skills land here as the surface grows.

Pair with

  • MCP serverhttps://usemeridian.app/mcp (Streamable HTTP, OAuth 2.0). Drop into Claude, ChatGPT, Cursor, or any MCP-aware client.
  • CLInpm install -g @usemeridian/cli for the same tools from your terminal.
  • API referencehttps://usemeridian.app/docs (OpenAPI 3.1).

Why a skill?

The MCP server gives an assistant the tools. The skill tells it when to use them and in what order. Same tools, much better answers, no every-time prompt engineering.

Layout

skills/
└── meridian-visa/
    ├── SKILL.md            # frontmatter (name + description) + the loop
    └── references/
        ├── checklist.md    # universal document checklist
        └── corridors.md    # corridor-specific notes

Each skill is a folder. The installer copies the folder into your agent's skills directory; no symlinks, no telemetry, no daemon. Source: https://github.com/usemeridian-app/agent-skills.

License

MIT. See LICENSE.