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

pixel-office-openclaw

v0.1.10

Published

Watch your OpenClaw AI agents work in a pixel-art virtual office

Readme

🏢 Pixel Office — by Tridents Lab 🔱

Watch your OpenClaw AI agents work in a pixel-art virtual office.

Each agent gets an animated character that walks around, sits at desks, and shows real-time status as they execute tasks. Click any agent to chat with them directly.

Quick Start

npx pixel-office-openclaw

That's it. Pixel Office auto-detects your local OpenClaw instance and starts a web server at http://localhost:3002.

No OpenClaw? Try npx pixel-office-openclaw --mock to see it with simulated agents.

Features

  • 🎮 Pixel-art office with animated characters and furniture
  • 🔄 Real-time status — agents glow green when working, go idle when done
  • 💬 Chat — click any agent to send them a message
  • 🏗️ Layout editor — customize the office with desks, plants, bookshelves
  • 🎨 Role-based sprites — coders, researchers, planners get distinct looks
  • Matrix animations — spawn/despawn effects when agents come and go
  • 📊 Activity log — see what your agents are doing in real-time
  • 🖱️ Interactive — click agents to freeze them, hover for status tooltips

Installation

Global install (recommended)

npm install -g pixel-office-openclaw
pixel-office-openclaw

npx (no install)

npx pixel-office-openclaw

From source

git clone https://github.com/neomatrix25/pixel-office-openclaw.git
cd pixel-office
npm install
npm run build
npm start

Configuration

Pixel Office auto-detects your OpenClaw setup. Override with CLI flags:

pixel-office-openclaw [options]

Options:
  -p, --port <number>       Port (default: 3002)
  --host <address>          Bind address (default: 127.0.0.1)
  --openclaw-home <path>    OpenClaw home dir (default: ~/.openclaw)
  --gateway-url <url>       Gateway URL (auto-detected)
  --gateway-token <token>   Gateway token (auto-detected)
  --no-chat                 Disable chat endpoint
  --mock                    Demo mode with simulated agents
  --open                    Open browser automatically

Examples

# Default — auto-detect everything
pixel-office-openclaw

# Custom port
pixel-office-openclaw --port 8080

# Expose to your network (default is localhost only)
pixel-office-openclaw --host 0.0.0.0

# Demo mode — no OpenClaw needed
pixel-office-openclaw --mock

# Remote OpenClaw instance
pixel-office --gateway-url http://myserver:18789 --gateway-token mytoken

Remote Access

By default, Pixel Office only listens on 127.0.0.1 (localhost). To access from other machines:

pixel-office-openclaw --host 0.0.0.0

⚠️ Security: When exposed to a network, the server can read your agent sessions and send messages. Only expose on trusted networks.

How It Works

Pixel Office runs a lightweight Express server that:

  1. Reads agent session stores from ~/.openclaw/agents/*/sessions/sessions.json
  2. Deduplicates sessions — one character per agent, using the most recently active session
  3. Serves a React app that renders a pixel-art office on HTML Canvas
  4. Polls every 3 seconds for status updates
  5. Proxies chat messages to agents via the OpenClaw gateway API

No data leaves your machine. The gateway token stays server-side and is never sent to the browser.

Layout Editor

Click the Edit button (bottom toolbar) to customize your office:

  • 🎨 Paint floor tiles and walls
  • 🪑 Place furniture (desks, chairs, plants, bookshelves)
  • ↩️ Undo/redo (Ctrl+Z / Ctrl+Y)
  • 🔄 Rotate items (R key)
  • 💾 Save your layout

Requirements

  • Node.js 18+
  • OpenClaw running locally (or use --mock for demo)

Tech Stack

  • React 19 + TypeScript
  • Canvas 2D rendering (no WebGL)
  • Vite for builds
  • Express 5 for the bridge server
  • A* pathfinding for character navigation

License

MIT — see LICENSE

Credits

Built by Tridents Lab 🔱

Character sprites based on pixel-agents (MIT). Office furniture sprites by 2dPig (CC0 Public Domain).