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

complish

v0.2.2

Published

Complish - Generate auto-completion file for any CLI via chatGPT.

Downloads

13

Readme

complish

license release

English | 简体中文

Complish is a tool to generate completion file for any type of CLI, now supports zsh and fish.

The tool uses chatGPT API to parse the help page of a CLI (the text printed when executing cmd --help) and output structured information about the help page. And then generate a completion script for specific shell like zsh or fish.

Installing

npm i -g complish

Usage

complish [options] [cmd]

API key of OpenAI is necessary, and you can set the key either by setting an environment variable or using complish set-key like following:

export OPENAI_API_KEY=your_openai_api_key

or

complish set-key your_openai_api_key

If you have no the key, you can apply for one on OpenAI and remember to keep secret!

Example in fish

Generate a fish completion for a CLI named mycmd

complish mycmd --shell fish

And you will find mycmd.fish in your current directory when the script finished.

Note that the execution speed is limited by the response time of ChatGPT, so it may take 10 seconds to 1 minute or more to generate a completion file.

Then copy the fish script to the completions directory of fish shell for which the file can be automatically loaded. Other available fish completion directories can be seen here

cp ./croc.fish ~/.config/fish/completions/

It will work after you reopen the terminal and you will find the completion works when you press <TAB>

Example in zsh

Generate a zsh completion for a CLI named mycmd

complish mycmd --shell zsh

And you will find _mycmd file which is the format of zsh-completion file in your current directory when the script finished.

Then copy the zsh completion file to a directory that is in environment variable $fpath. You can check it by running echo $fpath for all valid directories in zsh.

cp ./_mycmd /Users/you/.zsh/functions

It will work after you reopen the terminal and you will find the completion works when you press <TAB>

Development

Clone this repo.

git clone https://github.com/werifu/complish.git

I use pnpm to manage dependencies:

Install dependencies:

pnpm i

Compile TypeScript code and run the compiled JavaScript:

pnpm build
./dist/index.js

or you can run it using ts-node directly:

pnpm dev

Contribute

Pull requests / issues are both welcome!

Please give me your suggestions or other feedback! 😊

TODO

  • [ ] Support bash completion (in planning)
  • [ ] Reduce API calling times (bottle neck of this tool)
  • [ ] More detail arguments completion