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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@krishnaag23/gs-tool

v0.9.32

Published

A CLI runner for executing and validating tools in the Godspeed ecosystem.

Readme

@godspeedsystems/gs-tool

A CLI runner for executing and validating tools in the Godspeed ecosystem.


Prerequisites

  • Node.js 18+

Installation

You don't need to install this tool globally. Instead, run it directly with npx:

npx @godspeedsystems/gs-tool tool-name --option-1 value1 --option-2 value2

This command resolves and runs a tool located under tools/tool-name, handling validation and dependencies for you.


Description

gs-tool is a generic interface for executing any scaffolded tool in the monorepo. It performs schema-based input/output validation and ensures all prerequisites are met before the tool runs. This allows tool creators to focus on business logic while the runner handles safety, conformity, and dependency guarantees.


What this tool does

This tool is invoked using:

npx @godspeedsystems/gs-tool tool-name --option-1 types.ts --option-2 typescript

Here, tool-name refers to the specific tool you want to run, and the --option flags are passed directly to it.

When invoked, the tool:

  • Validates the input --option-* values against the input schema defined in tools/tool-name/specs.yaml
  • Executes the logic defined by the selected tool
  • Validates the output (output.data) using the output-json schema from specs.yaml
  • Parses the list of prerequisite packages from tools/tool-name/README.md and installs any missing ones into the user’s project
  • Returns the tool’s output after all validations and dependency handling are complete

This ensures schema-compliant input/output, auto-installation of missing dependencies, and a consistent tool execution experience across projects.

If you want to list the tools available in the Godspeed ecosystem

You can use the gs-tool list command to list all available tools:

npx @godspeedsystems/gs-tool list
Usage: gs-tool list [options]

Options:
  -l --long    Show long list
  -m --medium  Show medium list
  -s --short   Show short list
  -h, --help   display help for command

If you want to get more information about a specific tool

You can use the gs-tool tool-name --info command to get more information about a specific tool:

npx @godspeedsystems/gs-tool tool-name --info

If you want to run a tool with custom input

You can use the gs-tool tool-name --input-json '{"key": "value"}' command to run a tool with custom input:

npx @godspeedsystems/gs-tool tool-name --input-json '{"key": "value"}'

If you want to run a tool with custom input from a file

You can use the gs-tool tool-name --input-json input.json command to run a tool with custom input from a file:

npx @godspeedsystems/gs-tool tool-name --input-json input.json

What this tool does NOT do

  • It does not persist any state between runs (every execution is stateless)
  • It does not handle environment-specific configuration overrides
  • It does not support custom schema formats outside JSON Schema (as defined in specs.yaml)

Future Enhancements