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

@antonio12761/claude-session-manager

v1.0.1

Published

Sistema automatico per gestione sessioni di sviluppo con Claude AI

Readme

🤖 Claude Session Manager

Sistema automatico per gestione sessioni di sviluppo con Claude AI

npm version License: MIT

🚀 Installazione

npm install -g @antonio12761/claude-session-manager

🎯 Quick Start

# In qualsiasi progetto
cs-init

# Avvia Claude con sessione automatica
cs

✨ Caratteristiche

  • 🔄 Sincronizzazione Git automatica - Pull automatico all'avvio
  • 📝 Tracciamento sessioni - SESSION_STATUS.md sempre aggiornato
  • 📊 Todo list integrata - Gestisci task direttamente da CLI
  • 🌍 Multi-lingua - Supporto italiano e inglese
  • 🔌 Estendibile - Sistema di plugin
  • 📈 Report e statistiche - Monitora la tua produttività

📖 Comandi Principali

cs              # Avvia Claude con sessione automatica
cs start        # Inizia sessione manualmente
cs end          # Termina sessione con salvataggio
cs sync         # Sincronizza stato progetto

cs work "Implementato feature X"    # Traccia lavoro completato
cs todo add "Fix bug Y" --priority high  # Aggiungi TODO
cs todo list    # Mostra TODO list

cs status       # Mostra stato attuale progetto
cs report       # Genera report attività

🛠 Configurazione

Il comando cs-init crea automaticamente:

progetto/
├── SESSION_STATUS.md    # Stato sessioni
├── CLAUDE.md           # Documentazione progetto
├── .cursorrules        # Regole per Claude/Cursor
└── .claude-session.json # Configurazione locale

Personalizzazione

Modifica .claude-session.json:

{
  "projectName": "mio-progetto",
  "language": "italiano",
  "features": ["session", "todo", "reports"],
  "hooks": {
    "preStart": "npm test",
    "postEnd": "git push"
  }
}

🔧 Workflow Consigliato

Inizio Giornata

cs start  # o semplicemente 'cs' per avviare Claude

Durante il Lavoro

cs work "Completata implementazione API"
cs todo add "Scrivere test per nuovo endpoint"
cs sync  # Sincronizza con team

Fine Giornata

cs end  # Salva stato e opzionalmente committa

🌐 Integrazione con Team

Setup Team

cs team init
cs team add [email protected]

Sincronizzazione

cs team sync  # Condividi stato con il team
cs team status  # Vedi stato di tutti i membri

🔌 Plugin

Installare Plugin

cs plugin install slack-notifier
cs plugin install jira-integration

Creare Plugin

// ~/.claude-session/plugins/my-plugin.js
module.exports = {
  name: 'my-plugin',
  commands: [{
    name: 'hello',
    action: () => console.log('Hello from plugin!')
  }]
};

📊 Report e Analytics

cs report daily   # Report giornaliero
cs report weekly  # Report settimanale
cs stats          # Statistiche generali
cs export pdf     # Esporta report in PDF

🐛 Troubleshooting

Claude non si avvia

cs doctor  # Diagnostica problemi

Conflitti Git

cs repair  # Ripara stato sessione

🤝 Contribuire

  1. Fork del repository
  2. Crea feature branch (git checkout -b feature/AmazingFeature)
  3. Commit modifiche (git commit -m 'Add AmazingFeature')
  4. Push al branch (git push origin feature/AmazingFeature)
  5. Apri Pull Request

📄 Licenza

Distribuito sotto licenza MIT. Vedi LICENSE per maggiori informazioni.

👤 Autore

Antonio Colaizzi

🙏 Ringraziamenti

  • Claude AI di Anthropic per l'ispirazione
  • La community open source

⭐ Se ti piace questo progetto, lascia una stella su GitHub!