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

snow-flow

v10.0.19

Published

Snow-Flow - ServiceNow Multi-Agent Development Framework powered by AI

Readme


Install

npm i -g snow-flow@latest
bun i -g snow-flow@latest                              # Bun
pnpm i -g snow-flow@latest                             # pnpm
yarn global add snow-flow@latest                       # Yarn
curl -fsSL https://snow-flow.dev/install | bash            # Install script
brew install groeimetai/tap/snow-flow                      # macOS / Linux
scoop install snow-flow                                    # Windows

Quick Start

snow-flow

That's it. Snow-Flow will prompt you to configure an AI provider on first launch.

Or pre-configure in snow-flow.jsonc:

{
  "$schema": "https://snow-flow.dev/config.json",
  "provider": {
    "anthropic": {}
  }
}

Why Snow-Flow?

ServiceNow-Native 200+ MCP tools and 54 domain skills built for ServiceNow development, deployment, and automation.

Any AI Provider 20+ providers: Anthropic, OpenAI, Google, AWS Bedrock, Azure, Groq, xAI, OpenRouter, and more.

Multi-Agent Built-in build & plan agents. Custom agents with per-agent models, permissions, and temperature.

Extensible MCP ecosystem support (stdio, SSE, HTTP). Plugin system via npm or local packages.

Supported Providers

Built-in Tools

 File Operations    Shell              Web                 Dev
 ───────────────    ─────              ───                 ───
 read               bash (streaming,   webfetch            plan (enter/exit)
 write              pty support)       websearch           task management
 edit                                  codesearch          LSP (experimental)
 glob                                                      skill invocation
 grep, ls
 apply_patch

ServiceNow MCP Tools

Connect to your ServiceNow instance and access 200+ tools:

{
  "mcp": {
    "servicenow": {
      "type": "local",
      "command": ["snow-flow", "mcp", "start"],
      "environment": {
        "SERVICENOW_INSTANCE_URL": "https://your-instance.service-now.com",
        "SERVICENOW_CLIENT_ID": "...",
        "SERVICENOW_CLIENT_SECRET": "..."
      }
    }
  }
}

Agents

| Agent | Description | |:------|:------------| | build | Full access agent for development work | | plan | Read-only agent for analysis — denies edits, asks before bash | | general | Subagent for complex multi-step tasks (@general) |

CLI

snow-flow                        # Start TUI
snow-flow serve                  # Headless API server (port 4096)
snow-flow web                    # Server + web interface
snow-flow attach <url>           # Attach to remote server
snow-flow auth                   # Configure authentication
snow-flow models                 # List available models
snow-flow stats                  # Usage statistics
snow-flow export                 # Export session data
snow-flow pr                     # Pull request automation

Configuration

Config is loaded from (in priority order):

| Priority | Source | |:---------|:-------| | 1 | Remote/well-known organization configs | | 2 | Global config (~/.snow-flow/) | | 3 | SNOW_FLOW_CONFIG env variable | | 4 | Project config (snow-flow.jsonc) | | 5 | SNOW_FLOW_CONFIG_CONTENT inline |

{
  "mcp": {
    "my-server": { "type": "local", "command": ["node", "./server.js"] },
    "remote":    { "type": "remote", "url": "https://example.com/mcp" }
  }
}

Supports stdio, SSE, and streamable HTTP with OAuth.

{
  "plugin": ["my-snow-flow-plugin", "file://./local-plugin"]
}
{
  "permission": {
    "bash": "ask",
    "write": "allow",
    "read": "allow",
    "external_directory": "deny"
  }
}

Glob patterns, per-agent rulesets, and env file protection included.

Links

License

MIT — see LICENSE.