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

gsd-hermes-caveman

v1.0.0

Published

GSD Hermes + Caveman - Spec-driven development with compressed communication. Inspired by get-shit-done (TÂCHES) and caveman (JuliusBrussee). ~75% token reduction + phase-based planning.

Readme

gsd-caveman-hermes

Spec-driven development + Compressed communication.

Inspirado e combinado de dois projetos excepcionais:

  • get-shit-done (GSD) by TÂCHES — Meta-prompting e spec-driven development
  • caveman by JuliusBrussee — Compressão de comunicação (~75% tokens)

O que é?

Este projeto combina o melhor dos dois mundos:

| Aspecto | get-shit-done | caveman | gsd-caveman-hermes | |---------|---------------|---------|-------------------| | Foco | Process | Communication | Both | | Método | Fases + Specs | Terseness | Fases + Specs + Terseness | | Tokens | Normal | ~75% less | ~75% less | | Skills | 83+ commands | 5 modes | 25+ commands | | Agentes | Claude Code | Multi-agent | Hermes-native |

Como funciona?

GSD Hermes — Spec-Driven Development

GSD organiza o trabalho em fases comspecs detalhadas:

Projeto
 └── Phase 1: Foundation
      ├── Plan 1: Setup
      ├── Plan 2: Core feature
      └── Plan 3: Tests
 └── Phase 2: Features
      └── ...

Cada fase: Plan → Build → Verify → Document

Caveman — Compressed Communication

Caveman corta o "fluff" da comunicação mantendo 100% da precisão técnica:

"The reason your React component is re-rendering is likely because you're creating a new object reference on each render cycle."

↓ Caveman ↓

"New obj ref each render. Inline obj prop = new ref = re-render. useMemo."

Mesmo resultado. 75% menos tokens. Precisão mantida.

Quick Start

# Install
npm install gsd-caveman-hermes
# GSD - Spec-driven development
/gsd-new-project           # Iniciar projeto
/gsd-plan-phase 1          # Planejar fase 1
/gsd-execute-phase 1      # Executar fase 1
/gsd-debug <bug>          # Debug sistemático

# Caveman - Comunicação compressa
/caveman                   # Ativar modo full (~75% tokens)
/caveman ultra            # Modo ultra (máxima compressão)
/caveman lite             # Modo lite (mínima compressão)
/caveman-commit           # Commit messages terse
/caveman-review           # Code review em 1 linha

Installation Automática

npm install gsd-caveman-hermes

O script postinstall executa automaticamente e configura tudo.

Ou manual:

git clone https://github.com/giovannimnz/gsd-caveman-hermes.git ~/gsd-caveman-hermes
cd ~/gsd-caveman-hermes
npm install

Estrutura

gsd-caveman-hermes/
├── skills/
│   ├── gsd/                    # Entry point GSD
│   ├── gsd-do/                # Dispatcher inteligente
│   ├── gsd-new-project/       # Inicialização
│   ├── gsd-plan-phase/        # Planejamento
│   ├── gsd-execute-phase/     # Execução
│   ├── gsd-debug/             # Debug
│   ├── gsd-spike/             # Experimentos
│   ├── gsd-sketch/            # Mockups
│   └── ... (mais 17)
│   ├── caveman/               # Modo caveman principal
│   ├── caveman-commit/        # Commit messages
│   ├── caveman-review/        # Code review
│   ├── caveman-help/          # Help card
│   └── compress/              # Ferramenta de compressão
├── agents/                     # 5 agentes especializados
├── workflows/                  # Workflows GSD
├── templates/                  # Templates de projeto
└── bin/install.js             # Instalador automático

Níveis de Caveman

| Modo | Compressão | Exemplo | |------|------------|---------| | lite | ~40% | "Your component re-renders because you create a new object reference each render." | | full | ~65% | "New object ref each render. Inline object prop = new ref = re-render." | | ultra | ~75% | "Inline obj prop → new ref → re-render. useMemo." | | wenyan-lite | ~50% | "組件頻重繪,以每繪新生對象參照故。" | | wenyan-full | ~70% | "物出新參照,致重繪。useMemo Wrap之。" | | wenyan-ultra | ~80% | "新參照→重繪。useMemo Wrap。" |

Créditos e Licenças

Este projeto não é afiliado oficialmente com get-shit-done ou caveman.

Este projeto combina e adapta ambos para o Hermes Agent, mantendo a compatibilidade com seus respectivos formatos e filosofias.

License

MIT — Same as source projects.