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

devdaily

v1.0.3

Published

CLI para gerar resumos da daily a partir de commits locais via IA

Downloads

67

Readme

devdaily

AI-powered CLI that turns your local Git commits into a ready-to-speak daily standup summary.

$ devdaily report

🔍 Analisando commits locais: 15/01/2026...
📦 Encontrados 3 commits.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📊 RESUMO: MY-PROJECT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

**Resumo Executivo**
Implementei o fluxo de login OAuth com GitHub e adicionei gerenciamento
de sessão baseado em JWT. Refatorei o serviço de análise para lidar com
múltiplos repositórios de forma concorrente.

**O que falar na Daily**
- "Ontem finalizei a integração OAuth com GitHub e configurei a estratégia JWT."
- "Também refatorei o serviço de análise — agora usa Promise.all para repos concorrentes."
- "Hoje vou continuar no módulo de relatórios e polir o dashboard."

**Classificação por tipo**
feat   · add GitHub OAuth strategy and callback route
feat   · add JWT strategy with user payload
refactor · analysis service now uses Promise.all for concurrent processing

**Possíveis Dúvidas**
- "A nova estratégia JWT substitui completamente o login atual ou vai rodar em paralelo?"
- "Com o uso de Promise.all, precisamos nos preocupar com rate limits da API nas chamadas concorrentes?"

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Install

npm install -g devdaily

Requires Node.js 18+.


Setup

On first run, configure your AI provider:

devdaily config

You'll be prompted to choose a provider, enter your API key, and pick a model. Config is stored locally and persists across sessions.


Usage

Non-interactive

# Today's summary
devdaily report

# Specific date
devdaily report --date 15/01/2026

# Short alias
devdaily r
devdaily r --date 15/01/2026

Interactive mode

devdaily

Starts a REPL with TAB autocomplete and command history (↑ ↓).

| Command | Description | |---|---| | /resume-day | Summary for today | | /resume-day DD/MM/AAAA | Summary for a specific date | | /r | Alias for /resume-day | | /model | Switch AI model (no API key required) | | /config | Reconfigure provider or API key | | /help | Show available commands | | /exit or /quit | Exit |

Other commands

devdaily model    # Change the active model without re-entering your API key
devdaily config   # Full reconfiguration wizard

Providers & models

| Provider | Models | |---|---| | Google Gemini (recommended — free tier) | gemini-flash-lite-latest · gemini-flash-latest · gemini-pro-latest · gemini-3.1-flash-lite-preview | | Anthropic Claude | claude-3-5-sonnet-latest · claude-3-5-haiku-latest · claude-3-haiku-latest | | OpenAI | gpt-4o-mini · gpt-4o |

You can also pass your API key via environment variable:

export API_KEY=your_key_here
devdaily report

Requirements

  • Git installed and initialized in the repository
  • Commits authored under your git config user.name
  • A valid API key for your chosen provider

License

MIT