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-agents

v1.0.2

Published

Pixel art office where your Claude Code agents come to life as animated characters

Readme

Pixel Agents

A VS Code extension that turns your AI coding agents into animated pixel art characters in a virtual office.

Each Claude Code terminal you open spawns a character that walks around, sits at desks, and visually reflects what the agent is doing — typing when writing code, reading when searching files, waiting when it needs your attention.

This is the source code for the free Pixel Agents extension for VS Code — you can install it directly from the marketplace with the full furniture catalog included.

Pixel Agents screenshot

Features

  • One agent, one character — every Claude Code terminal gets its own animated character
  • Live activity tracking — characters animate based on what the agent is actually doing (writing, reading, running commands)
  • Office layout editor — design your office with floors, walls, and furniture using a built-in editor
  • Speech bubbles — visual indicators when an agent is waiting for input or needs permission
  • Sound notifications — optional chime when an agent finishes its turn
  • Sub-agent visualization — Task tool sub-agents spawn as separate characters linked to their parent
  • Persistent layouts — your office design is saved and shared across VS Code windows
  • Diverse characters — 6 diverse characters. These are based on the amazing work of JIK-A-4, Metro City.

Requirements

Getting Started

If you just want to use Pixel Agents, the easiest way is to download the VS Code extension. If you want to play with the code, develop, or contribute, then:

Install from source

git clone https://github.com/pablodelucca/pixel-agents.git
cd pixel-agents
npm install
cd webview-ui && npm install && cd ..
npm run build

Then press F5 in VS Code to launch the Extension Development Host.

Usage

  1. Open the Pixel Agents panel (it appears in the bottom panel area alongside your terminal)
  2. Click + Agent to spawn a new Claude Code terminal and its character
  3. Start coding with Claude — watch the character react in real time
  4. Click a character to select it, then click a seat to reassign it
  5. Click Layout to open the office editor and customize your space

Layout Editor

The built-in editor lets you design your office:

  • Floor — Full HSB color control
  • Walls — Auto-tiling walls with color customization
  • Tools — Select, paint, erase, place, eyedropper, pick
  • Undo/Redo — 50 levels with Ctrl+Z / Ctrl+Y
  • Export/Import — Share layouts as JSON files via the Settings modal

The grid is expandable up to 64×64 tiles. Click the ghost border outside the current grid to grow it.

Office Assets

The office tileset used in this project and available via the extension is Office Interior Tileset (16x16) by Donarg, available on itch.io for $2 USD.

This is the only part of the project that is not freely available. The tileset is not included in this repository due to its license. To use Pixel Agents locally with the full set of office furniture and decorations, purchase the tileset and run the asset import pipeline:

npm run import-tileset

Fair warning: the import pipeline is not exactly straightforward — the out-of-the-box tileset assets aren't the easiest to work with, and while I've done my best to make the process as smooth as possible, it may require some manual tweaking. If you have experience creating pixel art office assets and would like to contribute freely usable tilesets for the community, that would be hugely appreciated.

The extension will still work without the tileset — you'll get the default characters and basic layout, but the full furniture catalog requires the imported assets.

How It Works

Pixel Agents watches Claude Code's JSONL transcript files to track what each agent is doing. When an agent uses a tool (like writing a file or running a command), the extension detects it and updates the character's animation accordingly. No modifications to Claude Code are needed — it's purely observational.

The webview runs a lightweight game loop with canvas rendering, BFS pathfinding, and a character state machine (idle → walk → type/read). Everything is pixel-perfect at integer zoom levels.

Tech Stack

  • Extension: TypeScript, VS Code Webview API, esbuild
  • Webview: React 19, TypeScript, Vite, Canvas 2D

Known Limitations

  • Agent-terminal sync — the way agents are connected to Claude Code terminal instances is not super robust and sometimes desyncs, especially when terminals are rapidly opened/closed or restored across sessions.
  • Heuristic-based status detection — Claude Code's JSONL transcript format does not provide clear signals for when an agent is waiting for user input or when it has finished its turn. The current detection is based on heuristics (idle timers, turn-duration events) and often misfires — agents may briefly show the wrong status or miss transitions.
  • Windows-only testing — the extension has only been tested on Windows 11. It may work on macOS or Linux, but there could be unexpected issues with file watching, paths, or terminal behavior on those platforms.

Roadmap

There are several areas where contributions would be very welcome:

  • Improve agent-terminal reliability — more robust connection and sync between characters and Claude Code instances
  • Better status detection — find or propose clearer signals for agent state transitions (waiting, done, permission needed)
  • Community assets — freely usable pixel art tilesets or characters that anyone can use without purchasing third-party assets
  • Agent creation and definition — define agents with custom skills, system prompts, names, and skins before launching them
  • Desks as directories — click on a desk to select a working directory, drag and drop agents or click-to-assign to move them to specific desks/projects
  • Claude Code agent teams — native support for agent teams, visualizing multi-agent coordination and communication
  • Git worktree support — agents working in different worktrees to avoid conflict from parallel work on the same files
  • Support for other agentic frameworksOpenCode, or really any kind of agentic experiment you'd want to run inside a pixel art interface (see simile.ai for inspiration)

If any of these interest you, feel free to open an issue or submit a PR.

Contributions

See CONTRIBUTORS.md for instructions on how to contribute to this project.

Please read our Code of Conduct before participating.

Supporting the Project

If you find Pixel Agents useful, consider supporting its development:

License

This project is licensed under the MIT License.