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

runbook-admin

v0.2.4

Published

Local GUI for running and managing Runn runbooks

Downloads

62

Readme

Runbook Admin

demo

A local web GUI tool for executing and managing Runn runbooks via browser. Distributed as an NPX package for instant execution.

Runbook Admin makes it easy to discover, execute, and manage Runn runbooks in your project with a beautiful web interface. Built with modern web technologies for a seamless developer experience.

✨ Key Features

  • 🔍 Auto-discovery: Automatically scans for runbooks using configurable patterns
  • 🎨 Beautiful Web UI: Modern, responsive interface with GitHub-like dark theme
  • ⚡ Real-time execution: Live output streaming with syntax highlighting
  • 📊 Execution history: Track results, timing, and execution status
  • 🔧 Variable management: Environment variables with secret masking support
  • ❤️ Favorites system: Bookmark frequently used runbooks
  • 📋 Preset configurations: Save and reuse execution options
  • 🚀 NPX ready: No installation required - run instantly via NPX

🚀 Quick Start

# Run in any project directory with runbooks
npx runbook-admin

# Browser opens automatically at http://localhost:3444
# Automatically scans for runbooks and displays them

📋 Requirements

  • Node.js 21.7.0+
  • Runn CLI installed and in PATH:
    go install github.com/k1LoW/runn/cmd/runn@latest

🔍 Runbook Detection

Automatically scans for runbooks by:

  1. File extension: Searches for all .yml and .yaml files
  2. Content validation: Checks if files contain steps, desc, or description fields
  3. Smart filtering: Excludes non-runbook YAML files (config files, etc.)

Supported runbook formats:

  • Standard runn runbooks with steps: section
  • Runbooks with description-only (for documentation)
  • Any YAML file with valid runbook structure

🛠️ Development

# Clone and install dependencies
git clone <repository>
cd runbook-admin
pnpm install

# Development server with hot reload
pnpm run dev

# Production build
pnpm run build

# Start production server
pnpm run start

# Testing
pnpm test              # Unit tests (184 tests)
pnpm test:run          # CI mode tests
pnpm test:e2e:list     # E2E tests

# Quality checks
pnpm typecheck         # TypeScript validation
pnpm check             # Biome linting
pnpm agentcheck        # Complete CI pipeline

🏗️ Architecture

Tech Stack

  • HonoX: File-based routing full-stack framework
  • TypeScript: Full type safety across the codebase
  • Vite: Build tooling with hot module replacement
  • Vitest: Unit and integration testing
  • Playwright: End-to-end testing
  • Biome: Fast linter and formatter

Project Structure

runbook-admin/
├── app/                    # HonoX application
│   ├── routes/            # File-based routing (API + pages)
│   ├── islands/           # Interactive client components
│   ├── components/        # Reusable UI components  
│   ├── services/          # Business logic layer
│   │   ├── runn.ts       # Runn CLI integration
│   │   ├── file-scanner.ts # Runbook discovery
│   │   └── *-manager.ts  # State management services
│   ├── utils/             # Utility functions
│   └── types/             # TypeScript definitions
├── src/bin/               # CLI entry point
├── tests/                 # Test suites
│   ├── unit/             # Unit tests
│   ├── integration/      # API integration tests
│   └── e2e/              # End-to-end tests
└── package.json

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes with proper TypeScript types
  4. Add tests for new functionality
  5. Ensure all tests pass: pnpm agentcheck
  6. Commit your changes (git commit -m 'Add amazing feature')
  7. Push to the branch (git push origin feature/amazing-feature)
  8. Open a Pull Request

Development Guidelines

  • Follow existing code patterns and conventions
  • Maintain 100% TypeScript coverage
  • Add comprehensive tests for new features
  • Use Biome for linting and formatting
  • Ensure pnpm agentcheck passes before submitting

📄 License

MIT License - see LICENSE file for details.