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

opencode-coworker

v0.0.8

Published

Create named sessions as coworkers you can send messages to their session by name

Downloads

18

Readme

opencode-coworker

Create named sessions as coworkers you can send messages to by name.

Description

This OpenCode plugin enables you to create and manage persistent AI coworker sessions. Each coworker is a named session with a specific agent type that can be messaged and assigned tasks independently.

IMPORTANT: this plugin is meant to be ultra simplistic, it effectively just gives you named sessions and does not have features like session cross-talk. Ideally coworkers talking autonomously to each other would be handled by a seperate plugin that you choose is appropriate. This tool just allows you to create the async sessions and bump them to get them started sometimes explicitly.

WARNING: warning, there is no protection from unbounded cycles of communication between coworkers or creation of coworkers! use this plugin responsibly

Installation

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": [
    "opencode-coworker"
  ]
  ...
}

Usage

The plugin provides three tools and one command:

Tools

  • create_coworker - Create a new coworker with a name and agent type
  • list_coworkers - List all existing coworkers and their status
  • tell_coworker - Send a message or task to a specific coworker

Command

  • /coworkers - List all coworkers (formatted view)

API

create_coworker

Create a new coworker session.

Parameters:

  • name (string, required) - User-friendly name for this coworker
  • agent_type (string, optional) - Agent type to use (e.g., code, researcher). Defaults to 'code'
  • prompt (string, required) - Initial prompt/task for the coworker

tell_coworker

Send a message to an existing coworker.

Parameters:

  • name (string, required) - Name of the coworker to message
  • message (string, required) - Message or task to send to the coworker

list_coworkers

List all coworkers and their current status.

Storage

Coworker data is persisted in ~/.config/opencode/coworkers.db using Bun's built-in SQLite support (bun:sqlite). This provides better performance and reliability compared to the previous JSON file storage.

Requirements

  • Bun runtime - This plugin requires Bun (uses bun:sqlite for database operations)
  • Peer dependency: @opencode-ai/plugin ^1.1.25

License

MIT

Repository

https://github.com/richardanaya/opencode-coworker