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

vibe-audit

v0.1.0

Published

Agent session auditor for vibe-coding - verifies intent alignment in real-time

Readme

1. Overview

Vibe Audit collects and analyzes work sessions from Claude Code, Gemini CLI, and Codex CLI to show:

  • whether the agent is still working within the context you intended
  • when a context shift (pivot) happens

Its purpose is to trace agent conversations and monitor context drift.

Why This Is Needed

In vibe coding, agents can drift from user intent during long sessions.

  • goals get subtly reinterpreted
  • prior context gets compressed, lost, or distorted
  • output looks fine, but unrequested work is still happening

Vibe Audit makes these moments visible so humans can step in at the right time. It helps you supervise the agent while keeping work aligned with intent.

Core Features

  • Baseline auto-generation from user intent
  • Phase-shift detection: continuation, new_phase, pivot
  • Alignment score with rationale ("Why this score")
  • Dual flag detection (rule-based + LLM-based)
  • Context Evolution / Event Log tracking
  • Automatic baseline version switch on pivot
  • DB backup/restore from the UI

2. Installation

Running with npx is recommended. At first launch, onboarding runs so you can configure hooks for your CLI setup.

npx vibe-audit

3. Settings

Open Settings in the top-right of the web app.

  • Set the LLM model used for baseline/alignment analysis
  • Add API keys (OpenAI / Gemini / Anthropic) as needed
  • Configure AI response language, interface language, and timezone
  • For custom models, use LiteLLM provider/model format (example: openai/gpt-5.2)

4. DB Manager

Open DB Manager in the top-right of the web app.

  • DB Download: exports the current SQLite backup
  • DB Upload: restores from a backup file and replaces current DB data
  • You can use it to migrate sessions across machines or recover local history
  • After upload, restart is recommended for a clean state refresh

5. Additional Commands

You can re-run onboarding or configure hooks manually:

# Run onboarding wizard
node bin/cli.js init

# Gemini hook (run in the target project)
# Re-run `setup-gemini` for each new project path.
node bin/cli.js setup-gemini

# Claude + Codex global hooks
node bin/cli.js setup-hooks

# Environment diagnostics
node bin/cli.js doctor

6. Data and Privacy

Vibe Audit runs 100% locally.

  • Runtime data: ~/.vibe-audit
  • Main DB: ~/.vibe-audit/vibe_audit.db
  • Settings: ~/.vibe-audit/settings.json

7. Current Limitations

Vibe Audit is currently in beta. You may see:

  • different outcomes across CLIs due to event-format differences
  • partial loss of the last turn if execution is force-stopped during streaming
  • boundary-case variation because alignment/phase classification includes LLM interpretation

License

MIT