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

forgeclaw

v0.1.0

Published

Seu comando central de IA pessoal — controle o Claude Code via Telegram e Dashboard Web.

Readme

forgeclaw (CLI)

CLI installer do ForgeClaw com onboarding interativo. Configura tudo: dependencias, config, harness, servico do sistema.

Instalacao

# Via npx (quando publicado)
npx forgeclaw install

# Desenvolvimento local
cd packages/cli
bun run dev install

Comandos

forgeclaw install

Onboarding interativo completo:

  1. Verifica dependencias (bun, claude CLI)
  2. Verifica autenticacao do Claude
  3. Pede token do bot Telegram
  4. Pede Telegram User ID
  5. Configura diretorio de projetos
  6. Configura Obsidian Vault (opcional)
  7. Configura provider de voz (Whisper / nenhum)
  8. Pede info do usuario (nome, empresa, role) para o harness
  9. Gera ~/.forgeclaw/forgeclaw.config.json
  10. Gera arquivos do Harness (SOUL.md, USER.md, AGENTS.md, TOOLS.md, MEMORY.md, STYLE.md)
  11. Detecta projetos existentes no diretorio
  12. Opcionalmente configura servico do sistema (systemd/launchd)

forgeclaw update

Re-roda o installer preservando valores existentes. Campos ja preenchidos aparecem como valor inicial.

forgeclaw status

Mostra status de todos os componentes:

  ForgeClaw Status

  ● Service: running
  ● Config: ~/.forgeclaw/forgeclaw.config.json
  ● Database: ~/.forgeclaw/db/forgeclaw.db
  ● Harness: 6/6 files
  ● Claude CLI: available

forgeclaw uninstall

Remove o ForgeClaw:

  1. Confirmacao dupla
  2. Para o servico
  3. Remove configuracao do servico (systemd/launchd)
  4. Opcionalmente remove dados (~/.forgeclaw/)

forgeclaw logs

Tail em tempo real do log do bot:

forgeclaw logs
# Equivale a: tail -f ~/.forgeclaw/logs/bot.log

Servico do Sistema

O installer configura o bot como servico:

Linux (systemd)

  • Unit file: /etc/systemd/system/forgeclaw.service
  • Auto-restart com RestartSec=5
  • Habilitado no boot (WantedBy=multi-user.target)

macOS (launchd)

  • Plist: ~/Library/LaunchAgents/com.forgeclaw.bot.plist
  • RunAtLoad e KeepAlive habilitados
  • Logs em ~/.forgeclaw/logs/bot.log e bot.err.log

Harness Templates

O installer gera 6 arquivos na primeira instalacao:

| Arquivo | Conteudo | |---------|----------| | SOUL.md | Identidade da IA, principios, estilo de comunicacao | | USER.md | Perfil do usuario (nome, empresa, role, preferencias) | | AGENTS.md | Agentes disponiveis e regras de routing | | TOOLS.md | Ferramentas built-in e integracoes | | MEMORY.md | Sistema de memoria (como funciona, formato) | | STYLE.md | Guia de estilo de comunicacao |

Na atualizacao (forgeclaw update), os arquivos existentes sao sobrescritos.

Estrutura

src/
  index.ts                  # Entry point -- CLI router
  commands/
    install.ts              # Onboarding interativo (@clack/prompts)
    uninstall.ts            # Remocao com confirmacao dupla
    status.ts               # Status de componentes
    logs.ts                 # Tail de logs
  templates/
    soul.ts                 # Template SOUL.md
    user.ts                 # Template USER.md (recebe nome/empresa/role)
    agents.ts               # Template AGENTS.md
    tools.ts                # Template TOOLS.md
    style.ts                # Template STYLE.md
    memory.ts               # Template MEMORY.md
  utils/
    service.ts              # Setup systemd/launchd

Dependencias

  • @clack/prompts -- UI interativa no terminal (spinners, inputs, selects, confirms)