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

@vibecli/core

v0.0.2

Published

Advanced AI agent that lives in your terminal with streaming responses and tool integration

Readme

VibeCli 🤖

Un agente AI avanzato che vive nel tuo terminale, progettato per aiutarti attivamente con i tuoi progetti di sviluppo.

✨ Caratteristiche Principali

  • 🚀 Streaming in Tempo Reale: Risposte AI con streaming per feedback immediato
  • 🛠️ Function Calling: Esecuzione automatica di operazioni su file, Git e shell
  • ⚙️ Setup Interattivo: Configurazione guidata per API keys (OpenAI, Anthropic, Google)
  • 🧠 Context Locale: Memoria persistente del progetto per conversazioni contestuali
  • 🔧 Tool Integration: Operazioni reali su file, Git, e comandi shell
  • 🌐 Multi-Provider: Supporto flessibile per diversi provider AI
  • 💻 Interfaccia CLI: Comandi intuitivi e facili da usare
  • 📝 Prompt Avanzati: Sistema di prompt ottimizzato per sviluppatori

📦 Installazione

Installazione Globale (Consigliata)

# Installa VibeCli globalmente da npm
npm install -g @vibecli/core

# Verifica l'installazione
vibe --version

Installazione da Sorgente

# Clona il repository
git clone https://github.com/yourusername/vibecli.git
cd vibecli

# Installa le dipendenze
npm install

# Compila il progetto
npm run build

# Installa globalmente
npm install -g .

Installazione con npx (Uso Temporaneo)

# Usa VibeCli senza installazione permanente
npx @vibecli/core setup
npx @vibecli/core chat

Setup Iniziale

Prima di utilizzare VibeCli, esegui il setup per configurare il tuo provider AI:

vibe setup

Il wizard ti guiderà attraverso:

  1. Selezione del provider AI (OpenAI, Anthropic, Google)
  2. Inserimento della API key
  3. Scelta del modello AI
  4. Validazione della configurazione

Utilizzo

Chat Interattivo

# Avvia una sessione di chat interattiva
vibe chat

# Invia un singolo messaggio
vibe chat -m "Aiutami a creare un componente React"

Gestione Context

# Mostra il context del progetto
vibe context --show

# Pulisci la cronologia messaggi
vibe context --clear

# Reset completo del context
vibe context --reset

Tools Disponibili

# Lista tutti i tool disponibili
vibe tools --list

# Mostra help sui tool
vibe tools

Struttura del Progetto

VibeCli/
├── src/
│   ├── cli/           # Comandi CLI
│   │   ├── setup.ts   # Wizard di setup
│   │   ├── chat.ts    # Gestione chat
│   │   ├── context.ts # Gestione context
│   │   └── tools.ts   # Gestione tools
│   ├── core/          # Logica principale
│   │   ├── config.ts  # Gestione configurazione
│   │   └── context.ts # Gestione memoria locale
│   ├── providers/     # Integrazioni AI
│   │   ├── ai-provider.ts # Provider unificato
│   │   └── validator.ts   # Validazione API keys
│   └── tools/         # Tool integrati
│       ├── file-tools.ts  # Operazioni file
│       ├── git-tools.ts   # Operazioni Git
│       └── shell-tools.ts # Comandi shell
├── bin/vibe           # Eseguibile principale
└── package.json

Context Locale

VibeCli crea un context locale in ogni progetto nella cartella .vibe/:

  • Memoria Conversazioni: Mantiene la cronologia delle chat
  • File Tracking: Tiene traccia dei file importanti del progetto
  • Git Integration: Informazioni su branch e commit
  • Project Metadata: Informazioni generali del progetto

Tool Integrati

File Operations

  • Lettura e scrittura file
  • Navigazione directory
  • Ricerca nel codice
  • Operazioni filesystem

Git Operations

  • Status e diff
  • Branch management
  • Commit e push/pull
  • Log e cronologia

Shell Commands

  • Esecuzione comandi
  • Gestione processi
  • Variabili ambiente
  • Informazioni sistema

Esempi di Utilizzo

# Setup iniziale
vibe setup

# Chat per aiuto con codice
vibe chat
> "Aiutami a creare un API endpoint in Express.js"

# Operazioni Git tramite chat
vibe chat -m "Mostra lo status git e crea un nuovo branch feature/auth"

# Gestione file tramite chat
vibe chat -m "Leggi il package.json e suggerisci miglioramenti"

# Verifica context del progetto
vibe context --show

Configurazione

La configurazione globale viene salvata in ~/.vibe/config.json. Il context del progetto viene salvato in .vibe/ nella directory del progetto.

Sviluppo

# Modalità sviluppo
npm run dev

# Build
npm run build

# Watch mode
npm run watch

Requisiti

  • Node.js >= 16.0.0
  • NPM o Yarn
  • API key per almeno uno dei provider supportati

Provider Supportati

  • OpenAI: GPT-4, GPT-3.5 Turbo
  • Anthropic: Claude 3 (Opus, Sonnet, Haiku)
  • Google: Gemini Pro, Gemini Pro Vision

Licenza

MIT License