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

@oalacea/ex-g-se

v0.6.3

Published

AI-powered shadow logging observability tool for Oalacea

Downloads

3,361

Readme

EX-G-SE v0.6.0

AI-powered shadow logging observability for development sessions

.--------------------------------------------------------------.
|  EX-G-SE  v0.5.3  |  GHOST OBSERVABILITY + AI ANALYSIS   |
'--------------------------------------------------------------'

What

EX-G-SE records your development session and automatically generates:

  • Session analysis with intent detection
  • Theater-play scripts with code notes and decisions
  • Video assets for content creation
  • Multiple export formats (JSON, Markdown, CSV)

Quick Start

# Install globally
npm install -g @oalacea/ex-g-se

# 1. Configure AI provider (one-time setup)
exg config

# 2. Start recording (press Ctrl+Shift+X to stop)
exg record

# That's it! Analysis is automatic.

🔐 Security

Your API keys are NEVER stored in plain text!

EX-G-SE uses military-grade encryption:

  • AES-256-GCM encryption
  • scrypt key derivation (memory-hard, resistant to GPU/ASIC attacks)
  • No keys stored on disk - derived from your master password

If you lose your master password: just run exg config again!

Configuration

Option 1: Interactive Config (Recommended)

exg config

Prompts:

  1. Choose AI provider (OpenAI, Anthropic, z.ai, custom)
  2. Enter API key (masked input)
  3. Create master password (min 12 characters)
  4. Done! Config saved to ~/.config/ex-g-se/settings.enc

Option 2: Environment Variables

export EX_G_SE_PROVIDER=openai
export EX_G_SE_API_KEY=sk-...
exg record

Platform Support

| Platform | Architecture | Status | |----------|-------------|--------| | macOS | Apple Silicon | ✅ Stable | | Windows | x64 | ✅ Stable | | Linux | x64 | ❌ Unsupported (system deps: libudev, wayland) |

Note: Linux support temporarily disabled. Contributions welcome!

Commands

# Configuration
exg config              Configure AI provider
exg config list         Show current configuration
exg config test         Test API connection

# Recording
exg record              Start recording session
exg record --label "Fixing bug #123"
exg record --duration 30                Auto-stop after 30 minutes
exg record --max-events 1000            Stop after 1000 events
exg record --tags bugfix,payment        Add tags to session

# Session Management
exg list                List all sessions
exg stats [session_id]  Show session statistics
exg search <query>      Search through sessions

# Export
exg export json         Export latest session as JSON
exg export markdown     Export as Markdown
exg export csv          Export as CSV

# Other
exg update              Update to latest version
exg                     Show help message

Features

📊 Live Progress Indicator

During recording, see live statistics every 30 seconds:

[EX-G-SE] Recording... (1m 30s | Events: 45 | FS: 12 | Clips: 3 | Shots: 2)

✅ Session Summary

Detailed summary when recording stops:

✅ SESSION SAVED SUCCESSFULLY!

📊 Session Summary:
   ⏱️  Duration: 5m 23s
   📁 Total Events: 127
   📋 Clipboard Changes: 8
   📂 File Changes: 95
   🖼️  Screenshots: 10

💾 Saved to: raw_logs.json
   Analysis will run automatically...

🏷️ Labels & Tags

Organize your sessions with labels and tags:

exg record --label "Refactoring payment module"
exg record --tags bugfix,payment,urgent

⏱️ Auto-Stop

Automatically stop recording after a duration or event count:

exg record --duration 30      # Stop after 30 minutes
exg record --max-events 1000  # Stop after 1000 events

🔍 Search

Search through all your sessions:

exg search "payment"
exg search "bugfix"

📤 Export

Export sessions in different formats:

exg export json       # JSON format
exg export markdown   # Markdown report
exg export csv        # CSV for data analysis

📋 Stats

View detailed statistics about a session:

exg stats              # Latest session stats
exg stats 2025-02-22_14-30-15_fixing_bug  # Specific session

Session Storage

Sessions are now stored in ~/.ex-g-se/sessions/ with timestamps:

~/.ex-g-se/sessions/
├── 2025-02-22_14-30-15_session.json
├── 2025-02-22_16-45-22_refactoring.json
└── 2025-02-22_18-20-00_bugfix.json

Each session includes:

  • Start/end timestamps
  • Label and tags
  • All events (clipboard, file changes, screenshots)
  • Metadata (event counts, duration)

What Gets Recorded

EX-G-SE records (in "Ghost Mode"):

  • File system changes (smart filtering: ignores node_modules, .git, target, dist, etc.)
  • Clipboard content (truncated to 500 chars)
  • Screenshots (every 30 seconds)
  • Global keyboard input (for Ctrl+Shift+X trigger detection)

Smart File Filtering

EX-G-SE automatically ignores common noise:

  • node_modules/, .git/, target/, dist/
  • .next/, coverage/
  • *.log, *.tmp files
  • Custom patterns via configuration

Output Files

After recording stops, EX-G-SE generates:

.ex-g-se/
├── session_analysis.json    # Intent detection, key moments
├── session_script.md        # Theater-play format
└── video_assets/
    └── scenes.json          # Video timeline with actions

Examples

Record a bug fix session

exg record --label "Fixing payment bug" --tags bugfix,payment --duration 60

Search all bug fix sessions

exg search "bugfix"

Export session for documentation

exg export markdown > bugfix_report.md

View session statistics

exg stats

Development

# Clone repo
git clone https://github.com/oalacea/ex-g-se.git
cd ex-g-se

# Install dependencies
npm install

# Build Rust core
npm run build:rust

# Run tests
npm test

# Lint
npm run lint

# Development mode
npm run dev

License

MIT

Support

  • Issues: https://github.com/oalacea/ex-g-se/issues
  • Docs: https://github.com/oalacea/ex-g-se/blob/main/README.md

Version: 4.0.0 | Maintainer: Oalacea