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

@cloudgrid-io/skills

v0.14.0

Published

Multi-agent skills for CloudGrid: login, claim, init, plug, logs, share, feedback, brain. Install in Claude Code, Codex, or Cursor.

Readme

CloudGrid Skills

Multi-agent skills for CloudGrid. Install them in Claude Code, Codex, or Cursor, and your agent can build, ship, and run things on CloudGrid through the cloudgrid CLI.

Why CloudGrid

Claude Code and Codex removed the wall around writing code. CloudGrid removes the wall around shipping it. A directory or a URL becomes a live, addressable thing in about 30 seconds. These skills are how your agent crosses that second wall on your behalf: scaffold, deploy, tail logs, share, read feedback. Everything here is free.

Install in 3 steps

  1. Install the CLI:

    npm install -g @cloudgrid-io/cli
  2. Log in:

    cloudgrid login
  3. Add the agent-core. In Claude Code (recommended):

    /plugin marketplace add cloudgrid-io/skills
    /plugin install cloudgrid@cloudgrid-skills

    One install wires up everything: the skills, the SessionStart orientation hook, and the CloudGrid MCP server (grid_start, grid_fetch, and the CLI-wrapping tools). The MCP auto-starts when the plugin is enabled — no separate claude mcp add needed.

    The skills show under /plugin and /skills as cloudgrid:plug, cloudgrid:login, … — or just say what you want ("share this HTML page as a link") and the right one triggers.

    Or install with the gh skill extension:

    gh skill install cloudgrid-io/skills

    Other agents (Cursor, Cline, Gemini CLI): npx skills add cloudgrid-io/skills. They install as plug, login, … — the CloudGrid brand comes from the plugin namespace, which those agents don't have.

    Claude Desktop, claude.ai, ChatGPT, and every route in one place: USAGE.md.

Share something in one step, no login

/cloudgrid:plug index.html

cloudgrid:plug publishes a single HTML page (or deploys a full app) and hands back a public URL. For a single page: no account, no CLI — the link lasts 7 days, and you can sign in later to keep it.

Skills

| Skill | Invoke | What it does | |---|---|---| | login | /cloudgrid:login | Sign in to CloudGrid, with or without the CLI. | | claim | /cloudgrid:claim | Claim an anonymous drop into your account after signing in. | | init | /cloudgrid:init | Scaffold a new app or agent. | | plug | /cloudgrid:plug | Share a single HTML page (login optional) or deploy a directory/URL. Get a public URL. | | logs | /cloudgrid:logs | Tail logs for an entity. | | share | /cloudgrid:share | Make an entity shareable and print its URL. | | feedback | /cloudgrid:feedback | Read the feedback feed. | | brain | /cloudgrid:brain | Refresh an entity's Grid Brain metadata. |

The canonical chain

init  ->  plug  ->  logs  ->  share  ->  feedback

That is the full "I built a thing and shipped it" loop. COOKBOOK.md walks through it end to end.

MCP server

The Claude Code plugin above already bundles the MCP server — installing cloudgrid@cloudgrid-skills starts it automatically. For every other client, the MCP server is published separately as @cloudgrid-io/mcp. It exposes the same actions as MCP tools, for agents that speak the Model Context Protocol. Install it with npx -y @cloudgrid-io/mcp, or point a remote-capable client at https://mcp.cloudgrid.io/mcp. See USAGE.md for per-client setup.

License

Apache 2.0. See LICENSE.