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

cuntext

v0.1.5

Published

A terminal observatory for Claude Code — browse workspaces, sessions, signals, and behavioral patterns from your AI sessions.

Downloads

289

Readme

clobserve

A terminal observatory for Claude Code. Browse every workspace, session, and conversation Claude Code has touched on your machine — and surface behavioral patterns across sessions.

What it does

Claude Code writes every conversation, tool call, error, and interrupt to structured JSONL files in ~/.claude/projects/. clobserve reads those files locally and gives you:

  • Workspace list — all projects Claude Code has touched, sorted by recent activity
  • Session browser — pick a session and read the conversation or browse raw events
  • Aggregate stats — message counts, tool call rates, error rates, session durations
  • Signal analysis — automated detection of behavioral anti-patterns across sessions:
    • Edit thrashing (same file edited 5+ times)
    • Error loops (consecutive tool failures)
    • Excessive exploration (high read-to-edit ratio)
    • Correction-heavy sessions (user repeatedly saying "no", "wrong")
    • Keep-going loops (user nudging Claude because it stops early)
    • Repeated instructions (Claude didn't act on something the first time)
    • Negative sentiment drift (conversation tone worsens over a session)
    • Rapid corrections (user responds in under 10 seconds)
    • High abandonment rate (many very short sessions)
    • Restart clusters (multiple sessions started within 30 minutes)

Nothing is sent anywhere. clobserve is purely local and read-only.

Requirements

  • Node.js 18+
  • Claude Code installed (provides the session transcripts at ~/.claude/projects/)

Usage

Run without installing:

npx clobserve

Install globally:

npm install -g clobserve
clobserve

Navigation

Workspace list
  ↑↓ / j k        Navigate
  Enter            Select workspace
  type # + Enter   Jump to item by number
  q                Quit

Project menu
  ↑↓ / Enter       Select option
  q                Back

Session browser
  ↑↓ / j k        Navigate
  Enter            Open session
  q                Back

Conversation reader (inside a session)
  ↑↓ / j k        Scroll line by line
  PgUp / PgDn      Scroll fast
  g / G            Jump to top / bottom
  t                Toggle thinking blocks
  q                Back

Event pager (inside a session)
  ↑↓ / j k        Navigate events
  ← → / p n       Previous / next page
  Enter            Open focused event detail
  r                Switch to conversation reader
  f                Show files touched in session
  e                Toggle errors-only view
  s                Session summary
  type # + Enter   Jump to event number
  q                Back

Focused event detail
  ← → / p n       Previous / next event
  t                Toggle thinking expansion
  q                Back to page

Signal severity

| Badge | Meaning | |----------|------------------------------------------------| | [CRIT] | Severe pattern, likely causing major friction | | [HIGH] | Significant pattern worth investigating | | [MED ] | Moderate signal, monitor if it recurs | | [LOW ] | Mild signal, context-dependent |

Development

# Install dependencies
npm install

# Build once
npm run build

# Build in watch mode
npm run dev

# Run the built CLI
node dist/cli.js

The entry point is src/cli.ts. Signal detectors live in src/signals/. The indexer that scans ~/.claude/projects/ is src/indexer.ts.

Publishing

npm publish

The prepublishOnly script runs npm run build automatically.