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

@abstractframework/observer

v0.1.6

Published

Gateway-only observability UI for AbstractFramework - connect to a Run Gateway, replay/stream the ledger, and submit durable commands

Readme

AbstractObserver

Gateway-only observability UI (Web/PWA) for AbstractFramework runs.

What it does (implemented in src/ui/app.tsx + src/lib/gateway_client.ts):

  • Discover workflows/bundles exposed by an AbstractGateway
  • Launch or schedule runs (durable)
  • Observe runs by replaying + streaming the durable ledger (replay-first + SSE)
  • Control runs via durable commands (pause/resume/cancel/resume-wait)

Quickstart (npm)

Prereqs:

  • Node.js >=18
  • An AbstractGateway that exposes the endpoints listed in docs/api.md

Run the UI server:

npx abstractobserver

Open http://localhost:3001, then go to Settings and configure:

  • Gateway URL (usually your gateway base URL, e.g. http://localhost:8081)
    • Leave it blank only for same-origin deployments (reverse proxy routes /api) or when using npm run dev (Vite /api proxy).
  • optional Auth token, then click Connect

Install options

Global install

npm install -g abstractobserver
abstractobserver

Pin a version (recommended for deployments)

npx [email protected]

CLI configuration

The CLI is a static file server implemented in bin/cli.js.

  • PORT (default 3001)
  • HOST (default 0.0.0.0)
  • --monitor-gpu or ABSTRACTOBSERVER_MONITOR_GPU=on (enables the optional GPU widget)

Features (UI pages)

All pages share the same gateway connection settings.

  • Observe: ledger, graph, digest, attachments, chat
  • Launch: start runs, schedule runs, bundle upload/reload
  • Mindmap: knowledge-graph query UI (requires POST /api/gateway/kg/query)
  • Backlog / Inbox (reports + email) / Processes: maintainer tooling (high trust; requires additional gateway endpoints)

Documentation

  • Start here: docs/getting-started.md
  • Docs index: docs/README.md
  • FAQ: docs/faq.md
  • Architecture (with diagrams): docs/architecture.md
  • Configuration & deployment: docs/configuration.md
  • API (gateway endpoints used): docs/api.md
  • Development: docs/development.md
  • Security & trust boundaries: docs/security.md

Project

  • Changelog: CHANGELOG.md
  • Contributing: CONTRIBUTING.md
  • Security policy (vulnerability reporting): SECURITY.md
  • Acknowledments: ACKNOWLEDMENTS.md

Development (from source)

npm install
npm run dev

Important: dev/build expects sibling “AbstractUIC” source packages because vite.config.ts aliases imports to ../abstractuic/*/src. See docs/development.md for details.