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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@kv2461/auto-retro

v0.1.3

Published

Automate retrospective creation on retrotool.io with custom templates and titles

Downloads

13

Readme

Auto Surf - Retro Automation Tool (Prototype)

A command-line tool that automates the creation of retrospectives on retrotool.io.

Quick Start

# Install dependencies
npm install

# Install browser binaries (Playwright)
npx playwright install

# Run the tool (default: Liked | Learned | Lacked template)
npm run create-retro

# Run with custom title
npm run create-retro title:"Team Sprint Retro"

# Run with different template
npm run create-retro template:madsadglad

# Run with both custom title and template
npm run create-retro title:"Copacetic Retro" template:madsadglad

# Run tests
npm test

Commands

| Command | Description | |---------|-------------| | npm run create-retro | Create a retrospective with default settings | | npm test | Run test suite with Jest | | npm run build | Compile TypeScript |

CLI Arguments

  • title:"Custom Title": Sets custom retro title (default: "Retro")
  • template:madsadglad: Uses Mad | Sad | Glad template instead of default

Note: Date is automatically appended in YYYY-MM-DD format (e.g., "Retro 2025-09-24")

Supported Templates

  • Default: Liked | Learned | Lacked
  • madsadglad: Mad | Sad | Glad

Examples

# Default retrospective (Liked | Learned | Lacked, title "Retro 2025-09-24")
npm run create-retro

# Custom title with default template
npm run create-retro title:"Sprint Review"
# Result: "Sprint Review 2025-09-24" with Liked | Learned | Lacked

# Mad | Sad | Glad template with default title
npm run create-retro template:madsadglad  
# Result: "Retro 2025-09-24" with Mad | Sad | Glad

# Both custom title and template
npm run create-retro title:"Team Retro" template:madsadglad
# Result: "Team Retro 2025-09-24" with Mad | Sad | Glad

Development Approach

This project follows strict Test-Driven Development (TDD):

  1. Write ONE failing test - Focus on a single behavior
  2. Run npm test - Confirm it fails (RED)
  3. Write minimal code - Just enough to pass the test
  4. Run npm test - Confirm it passes (GREEN)
  5. Refactor if needed - Improve code while keeping tests green
  6. Ask for next test - Get guidance on what to implement next

Commit Convention

Using Arlo's Commit Notation v2 with A prefix for AI commits:

  • A F - AI Feature
  • A d - AI Documentation
  • A R - AI Refactor
  • A B - AI Bug fix

Documentation

Project Status

This is a prototype focused on iterative development. Each major iteration is documented and preserved for reference.