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

@sflueckiger/specboard

v1.1.2

Published

Dashboard to monitor OpenSpec progress across (Conductor) workspaces

Readme

Specboard

A web-based dashboard for monitoring OpenSpec progress across multiple workspaces. Track features, tasks, and artifacts with a real-time kanban-style interface.

Specboard Screenshot

Features

  • Live Kanban View: See all active features as swimlanes with tasks organized in Todo/In Progress/Done columns
  • Real-time Updates: File changes are detected automatically via filesystem watching
  • Artifact Viewer: Browse proposal, specification, design, and plan documents with collapsible sections
  • Interactive Manual QA: Toggle completion status for "Manual QA" subtasks directly from the UI
  • Quick Actions: Open worktrees in Finder, VS Code, or Terminal with one click
  • Persistent Navigation: URL-based routing preserves your location across page refreshes
  • Multi-Repository Support: Switch between different repositories and worktrees

Prerequisites

  • Bun runtime (v1.0 or later)
  • OpenSpec for spec-driven development
  • Conductor optional to manage workspaces, worktrees automatically
  • VS Code with code CLI (optional, for "Open in VS Code" feature)

Installation

Run without installing (recommended)

# Using bunx (requires Bun)
bunx @sflueckiger/specboard

# Using npx (requires Bun to be installed)
npx @sflueckiger/specboard

Install globally

# Using Bun
bun install -g @sflueckiger/specboard

# Using npm
npm install -g @sflueckiger/specboard

# Then run from anywhere
specboard

From source (for development)

git clone https://github.com/sflueckiger/specboard.git
cd specboard

# Development mode (with hot reload)
bun run dev

CLI Usage

specboard [path] [options]

Arguments:
  path          Root path to watch (default: current directory)

Options:
  -p, --port    Port to run on (default: 3456)
  -o, --open    Open browser after starting
  -h, --help    Show help message
  -v, --version Show version number

Examples

# Watch current directory on default port
specboard

# Watch a specific directory
specboard ~/workspaces

# Custom port and auto-open browser
specboard --port 8080 --open

# Combine all options
specboard /path/to/workspaces -p 9000 -o

The dashboard will be available at http://localhost:3456 (or your custom port)

Configure Your Workspace Path

  1. Click "Change Path" in the header
  2. Navigate to your workspaces root directory
  3. Click "Select This Directory"

Expected Directory Structure

Specboard expects an OpenSpec-compatible directory structure:

workspaces/
├── repository-name/
│   ├── worktree-1/
│   │   └── openspec/
│   │       └── changes/
│   │           ├── feature-name/
│   │           │   ├── proposal.md      # Feature proposal
│   │           │   ├── design.md        # Technical design
│   │           │   ├── spec.md          # Specification (or specs/ dir)
│   │           │   └── tasks.md         # Implementation tasks
│   │           └── archive/             # Completed features
│   └── worktree-2/
│       └── ...
└── another-repo/
    └── ...

Task File Format

The tasks.md file should follow this format:

## 1. Task Title

- [x] 1.1 Completed subtask description
- [ ] 1.2 Pending subtask description
- [ ] 1.3 Manual QA: This subtask can be toggled from the UI

## 2. Another Task

- [ ] 2.1 Subtask description

Tasks with "Manual QA" prefix in their subtask titles become interactive checkboxes in the dashboard.

Views

Live View

The default view showing all active features as horizontal swimlanes. Each feature displays:

  • Feature name and available artifacts (Proposal, Spec, Design, Plan)
  • Worktree name with quick-action buttons
  • Kanban board with tasks in Todo/In Progress/Done columns
  • Task cards with progress indicators

Click on a task card to view its subtasks in a sidebar panel.

Features View

A list-based view for browsing features and their artifacts:

  • Click a feature to view its documents
  • Switch between Proposal, Specification, Design, and Plan tabs
  • Design documents are split into collapsible sections by H2 headers
  • Plan documents show tasks with interactive subtask checkboxes

API Endpoints

| Endpoint | Method | Description | |----------|--------|-------------| | /api/config | GET | Get current workspace root path | | /api/config | POST | Set workspace root path | | /api/repositories | GET | List all repositories | | /api/repositories/:name | GET | Get features for a repository | | /api/artifact | GET | Fetch artifact content (proposal, design, spec, plan) | | /api/subtask/toggle | POST | Toggle a Manual QA subtask completion | | /api/open/finder | POST | Open path in Finder/Explorer | | /api/open/vscode | POST | Open path in VS Code | | /api/open/terminal | POST | Open path in Terminal | | /api/browse | GET | Browse directories for path selection | | /api/events | GET | SSE endpoint for real-time updates |

Configuration

Settings are persisted in browser localStorage:

  • specboard_rootPath: Workspace root directory
  • specboard_repo: Last selected repository

Tech Stack

  • Runtime: Bun - Fast JavaScript runtime with built-in bundler
  • Backend: TypeScript with Bun's native HTTP server
  • Frontend: Vanilla JavaScript (no build step required)
  • Styling: CSS with CSS custom properties
  • Icons: Lucide
  • Fonts: Source Code Pro
  • Markdown: marked.js

Development

The project requires no build step. Edit files directly and use bun run dev for hot reloading.

Project Structure

specboard/
├── server.ts          # Bun HTTP server with API routes
├── public/
│   ├── index.html     # Single-page app shell
│   ├── app.js         # Frontend application logic
│   └── styles.css     # All styles
├── package.json       # Project metadata and scripts
└── README.md          # This file

License

MIT

Contributing

Contributions are welcome! Please open an issue or submit a pull request.