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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nicepkg/gpt-runner-cli

v1.2.9

Published

GPT-Runner CLI helps manage AI presets and enables AI-driven conversations with your code, streamlining development workflows and boosting efficiency.

Downloads

71

Readme

English / 简体中文 🌏

npm CLI License GitHub stars

The GPT-Runner CLI is a powerful command-line tool that helps you manage your AI presets and engage in AI-powered conversations with your code to significantly boost your development efficiency. 💪

GPT-Runner CLI 是一款功能强大的命令行工具,可帮助您管理 AI 预设并与代码进行 AI 驱动的对话,从而显着提高您的开发效率。💪

GPT-Runner Intro

⚙️ Features

  • ⚡ Start GPT-Runner Server: Quickly start a local development server for GPT-Runner with a simple command.
  • 🔧 Customizable Server Port: Specify the server port
  • 🌍 Customizable Global Configuration: Specify the path to the global configuration file of GPT-Runner.
  • 🔄 Shareable Server Link: Share the running server through a temporal link.
  • 🐞 Debugging Support: Run the server in debug mode to facilitate troubleshooting.

📦 Installation

  1. Requirements NodeJS >= 16.15.0
    • To check your NodeJS version, run node -v in your terminal. If you need to install or update NodeJS, visit the official NodeJS website for download and installation instructions.
  2. Make sure you have an Open AI Key or a Anthropic Key. You can get it from Open AI or Anthropic.
  3. Slow installation is normal, because the package is a bit big.

To install the GPT-Runner CLI, use npm:

npm install -g gptr

# check version
gptr --version

# upgrade version
# npm i -g gptr

This command tells npm (Node.js package manager) to install GPT-Runner CLI globally. Among them, the -g option means global installation, which means you can run GPT-Runner CLI anywhere.

🚀 Quick Start

Go to your project folder and type the following command:

gptr

# it's equivalent to
# npx gptr

Or you can run specific root path

gptr ./src

# it's equivalent to
# npx gptr ./src

When you run gptr, it will retrieve the global config file gptr.config.json and *.gpt.md AI preset files in your current directory and the entire project valid files, and then open a web AI chat window in the browser.

You can now see the GPT-Runner's web in your browser at http://localhost:3003.

💡 CLI Commands

You can utilize the following options with GPT-Runner CLI:

  • -p, --port [port number]: This option allows you to specify the port number for the server to listen on. By default, the value is 3003. If you wish to modify this, simply append this option followed by the desired port number to your command. For example: --port 8080.

  • -c, --config [filepath]: This option allows you to specify the global configuration file path for GPT-Runner. If your configuration file is not in the default location, or if you have multiple configuration files, you can use this option to tell GPT-Runner which file to use. For example, if you have a configuration called gptr.config.json in the root of your project file, you can use this option as follows: --config ./gptr.config.json. Of course, we will detect gptr.config.json in the gptr running directory by default.

  • --share: This flag shares the link to the running server through a temporal link. It doesn't require a value, you can simple add it to enable the sharing feature. For example: gptr --share. Some dependencies need to be downloaded when sharing for the first time, so it will be slower.

  • --no-open: By default, the GPT-Runner CLI opens the user interface in your default web browser when you start the server. If you do not want this to happen, use this option. For example: gptr --no-open.

  • --debug: This flag runs the server in debug mode. In the debug mode, the CLI will output additional information that can be helpful for troubleshooting. To enable the debug mode, simple append this flag to your command. For example: gptr --debug.

Here is an example of using all options:

gptr --port 8080 --config ./gptr.config.json --share --no-open --debug

In this example, the GPT-Runner CLI will start a server available at port 8080, use the gptr.config.json configuration file, share the server link, not automatically open in the browser, and run in debug mode.

📖 Documentation

GPT-Runner Configs And AI Preset Files

For details about gptr.config.json configuration file, xxx.gpt.md AI preset file, .gpt-runner special directory, please refer to here:

Introduction to GPT-Runner Configs And AI Preset Files

GPT-Runner Ui Usage

Introduction to GPT-Runner Ui Usage

❓ FAQ

You can contact me via [email protected]

对 AI 提升开发效率感兴趣的,可以加我 wechat: qq2214962083 入群交流

要求:会科学上网,使用过 chatgpt

English > FAQ

💖 Sponsor

Waiting for you...

🤝 Contributor

You can check out our Contribution Guidelines

This project exists thanks to all the people who contribute:

📜 License

MIT License © 2023-PRESENT Jinming Yang