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

@auto-log/changelog

v0.2.3

Published

Embeddable changelog, release notes, and widget UI powered by AutoLog

Readme

@auto-log/changelog

Embeddable changelog, release notes, documentation, and roadmap tools powered by AutoLogs.

Built for vibe coders — non-traditional builders using Lovable, Bolt, Replit, Base44, and similar platforms.

Quick Start

npm install @auto-log/changelog

Then run the CLI to scaffold everything:

npx @auto-log/changelog init --slug your-project-slug --docs --roadmap

The CLI will:

  1. Detect your framework (Next.js or React/Vite)
  2. Create the appropriate changelog page component
  3. Scaffold .autologs/docs/ and .autologs/roadmap/ folders
  4. Ask your platform and generate the right AI instruction files
  5. Print Knowledge tab rules you can paste into your AI platform's settings

Features

Changelog Page

A clean, filterable changelog page. Entries are auto-generated from your GitHub commits.

React Router / Vite:

import { AutologChangelog } from "@auto-log/changelog/react";
import "@auto-log/changelog/style.css";

<Route path="/changelog" element={<AutologChangelog slug="your-slug" />} />

Next.js App Router:

// app/changelog/page.tsx
import { ChangelogPage } from "@auto-log/changelog/next";
import "@auto-log/changelog/style.css";

export default function Page() {
  return <ChangelogPage slug="your-slug" />;
}

Release Notes

A rich release notes page with search, emoji reactions, and email subscriptions.

import { AutologReleaseNotes } from "@auto-log/changelog/react";
import "@auto-log/changelog/style.css";

<Route path="/release-notes" element={<AutologReleaseNotes slug="your-slug" />} />

Widget

A floating popup button with an unread badge. Users see recent updates without leaving the page. Add it to your app's layout:

import { AutologWidget } from "@auto-log/changelog/react";
import "@auto-log/changelog/style.css";

<AutologWidget slug="your-slug" />

Documentation & Roadmap

Unlike changelogs and release notes (which are auto-generated from GitHub webhooks), documentation and roadmap content lives in your project as markdown files. The CLI scaffolds these for you:

.autologs/
├── INSTRUCTIONS.md          # AI guidelines for maintaining these files
├── docs/
│   ├── getting-started.md   # Quick-start guide
│   ├── how-to-articles.md   # Task-based guides
│   ├── reference.md         # Settings & features reference
│   └── concepts.md          # Key ideas explained
└── roadmap/
    ├── q2-2026.md           # Current quarter
    └── q3-2026.md           # Next quarter

Your AI coding assistant updates these files as you build. AutoLogs reads them via your GitHub webhook to generate documentation pages and roadmap views.

CLI Reference

npx @auto-log/changelog init --slug <slug> [options]

Options:
  --slug <slug>           Your AutoLog project slug (required)
  --mode <mode>           Embed mode: changelog (default), release-notes, or widget
  --docs                  Scaffold .autologs/docs/ documentation files
  --roadmap               Scaffold .autologs/roadmap/ quarterly files
  --platform <platform>   Your coding platform: lovable, bolt, replit, base44,
                          cursor, claude, windsurf, or other
  --copilot               Also generate AGENTS.md for GitHub Copilot
  --help                  Show help

Component Props

AutologChangelog

| Prop | Type | Default | Description | |------|------|---------|-------------| | slug | string | — | Your AutoLog project slug (required) | | apiUrl | string | AutoLog API | Custom API endpoint |

AutologReleaseNotes

| Prop | Type | Default | Description | |------|------|---------|-------------| | slug | string | — | Your AutoLog project slug (required) | | apiUrl | string | AutoLog API | Custom API endpoint | | showReactions | boolean | true | Show emoji reactions | | showSubscribe | boolean | true | Show email subscription form | | showSearch | boolean | true | Show search bar | | title | string | "Release Notes" | Custom hero title | | description | string | — | Custom hero description |

AutologWidget

| Prop | Type | Default | Description | |------|------|---------|-------------| | slug | string | — | Your AutoLog project slug (required) | | apiUrl | string | AutoLog API | Custom API endpoint | | maxAgeDays | number | 90 | Max age in days for entries shown | | maxEntries | number | 5 | Max entries to display | | position | string | "bottom-right" | Widget position: bottom-right, bottom-left, top-right, top-left | | triggerLabel | string | "What's New" | Button label | | showBadge | boolean | true | Show unread count badge | | filterType | string | — | Filter: new_release, improvement, or retired |

Platform Support

The CLI generates the right AI instruction files based on your platform:

| Platform | Generated Files | |----------|----------------| | Lovable | .autologs/INSTRUCTIONS.md + Knowledge tab text | | Bolt | .autologs/INSTRUCTIONS.md + Knowledge tab text | | Replit | .autologs/INSTRUCTIONS.md + Knowledge tab text | | Base44 | .autologs/INSTRUCTIONS.md + Knowledge tab text | | Cursor | .autologs/INSTRUCTIONS.md + .cursorrules | | Claude Code | .autologs/INSTRUCTIONS.md + CLAUDE.md | | Windsurf | .autologs/INSTRUCTIONS.md + .windsurfrules | | GitHub Copilot | AGENTS.md (use --copilot flag) |

All platforms also receive Knowledge tab instructions printed to the terminal.

How It Works

  1. Install the package and run npx @auto-log/changelog init
  2. Connect your GitHub repo to AutoLogs at autologs.io
  3. Push code — AutoLogs automatically generates changelogs and release notes from your commits
  4. Your AI assistant updates the .autologs/docs/ and .autologs/roadmap/ files as you build
  5. AutoLogs reads everything via your GitHub webhook to power your public changelog, release notes, docs, and roadmap pages

No API key needed. The embedded components fetch data from the AutoLog public API automatically.

Links

License

MIT