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

@revealui/harnesses

v0.1.0

Published

AI harness integration system - adapters, daemon, workboard coordination, and JSON-RPC server

Readme

@revealui/harnesses

AI harness coordination for RevealUI — enables multiple AI coding tools to work on the same codebase safely and in parallel.

Features

  • Multi-Harness Coordination: Claude Code, Cursor, Copilot adapters with conflict detection
  • Workboard Protocol: Shared .claude/workboard.md for session tracking and file reservations
  • Auto-Detection: Discovers installed harnesses via PATH and running processes
  • JSON-RPC 2.0 Server: Unix domain socket IPC for harness-to-harness communication
  • Config Sync: Portable config backup to external drives (DevPod/LTS)
  • Session Identity: Detects parent environment (Zed, Cursor, terminal) via process chain

Architecture

packages/harnesses/src/
├── adapters/       # AI tool adapters (Claude Code, Copilot)
├── config/         # Config path resolution and SSD sync
├── detection/      # Auto-detect installed/running harnesses
├── registry/       # Lifecycle management of adapters
├── server/         # JSON-RPC 2.0 over Unix socket
├── types/          # HarnessAdapter contract, commands, events
├── workboard/      # Multi-agent workboard coordination
├── coordinator.ts  # Main orchestrator (start/stop lifecycle)
└── cli.ts          # CLI daemon and RPC client

CLI

# Start daemon (detect harnesses, register session, start RPC server)
revealui-harnesses start --project /path/to/repo

# List available harnesses
revealui-harnesses status

# Sync harness config to/from SSD
revealui-harnesses sync claude-code push

# Print workboard state
revealui-harnesses coordinate --print

Usage

import { HarnessCoordinator } from '@revealui/harnesses'

const coordinator = new HarnessCoordinator({ projectRoot: '/path/to/repo' })
await coordinator.start()

// Coordinator auto-detects harnesses, registers in workboard, starts RPC server
// On shutdown:
await coordinator.stop()

Workboard Coordination

import { WorkboardManager, deriveSessionId } from '@revealui/harnesses/workboard'

const manager = new WorkboardManager('/path/to/repo/.claude/workboard.md')
const state = await manager.read()

// Register session
const sessionId = await deriveSessionId()
await manager.registerSession({
  id: sessionId,
  env: 'Zed/WSL',
  task: 'implementing feature X',
  files: ['src/feature.ts'],
})

Exports

| Subpath | Contents | |---------|----------| | @revealui/harnesses | Full API: adapters, registry, coordinator, detection, config | | @revealui/harnesses/types | Type definitions: HarnessAdapter, commands, events, capabilities | | @revealui/harnesses/workboard | WorkboardManager, deriveSessionId, detectSessionType |

Development

# Run tests
pnpm --filter @revealui/harnesses test

# Type check
pnpm --filter @revealui/harnesses typecheck

# Build
pnpm --filter @revealui/harnesses build

Related Documentation

License

Commercial — see LICENSE.commercial