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

@manzdev/cligpt

v1.0.1

Published

Command-line tool that utilizes the GPT (Generative Pre-trained Transformer) language model to return Linux commands that perform the specified action in natural language.

Downloads

1

Readme

CLIGPT (cligpt) 🖥️

CLIGPT (cligpt) es una herramienta de línea de comandos que utiliza el modelo de lenguaje GPT (Generative Pre-trained Transformer) para devolverte comandos de Linux que realicen la acción especificada en lenguaje natural.

Instalación 🛠️

Para instalar cligpt, asegúrate de tener Node 18+ instalado en tu sistema y luego ejecuta el siguiente comando:

npm install -g @manzdev/cligpt

Esto instalará cligpt globalmente en tu sistema, lo que te permitirá acceder al comando desde cualquier lugar en tu terminal.

Configuración ⚙️

Para utilizar cligpt necesitas una key de OpenAI. Es un servicio de pago, pero el coste es muy reducido, práctico y cómodo.

Necesitarás crear un fichero ~/.env, es decir, en tu carpeta raíz de usuario. Dicho fichero, debe tener la key de OpenAI en este formato:

OPENAI_KEY=sk__________________

El comando cligpt detectará automáticamente esa key y la utilizará cada vez que se llame. Por seguridad, se aconseja establecer un límite para no superarlo por error, si se diera el caso.

Uso 🚀

Para usar cligpt, simplemente ejecuta el comando cligpt seguido de lo que quieres que haga el comando. Puedes añadir esa información entre comillas para mayor claridad. Por ejemplo:

cligpt "borrar todos los archivos en un directorio"

Esto te devolverá un comando de Linux que realizará la acción especificada. El comando devuelto no se ejecutará, lo mostrará por pantalla, ya que el objetivo es que el usuario aprenda nuevos comandos y forma de trabajar con ellos.

Si no instalas cligpt como global con -g, recuerda escribir npx antes del comando.

Ejemplos 📝

A continuación, algunos ejemplos de acciones que puedes especificar y los comandos de Linux que cligpt podría devolver:

  • Comprimir un directorio y su contenido en ZIP:

    cligpt "comprimir el directorio 'proyecto' en un archivo zip"
     » zip -r proyecto.zip proyecto
  • Buscar y reemplazar texto en varios archivos:

    cligpt "buscar la cadena 'error' y reemplazarla por 'excepción' en todos los archivos .txt en el directorio actual"
     » sed -i 's/error/excepción/g' *.txt
  • Edición de videos:

    cligpt "recortar un fragmento de video desde el segundo 30 hasta el 45 y guardarlo en mp4"
     » ffmpeg -i input.mp4 -ss 00:00:30 -to 00:00:45 -c copy output.mp4

Contribuir 🤝

¡Si deseas contribuir a cligpt, estamos abiertos a tus ideas y sugerencias! Si encuentras un error o tienes una mejora, por favor, abre un issue en el repositorio de GitHub o envía una PR.

Licencia

Este proyecto está licenciado bajo la Licencia MIT.