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

orgcode-ai

v0.2.0

Published

OpenCode plugin for the ORGCODE senior/techlead/manager workflow.

Downloads

1,172

Readme

ORGCODE

ORGCODE is an opinionated multi-agent workflow plugin for OpenCode. It adds three specialized agents and a task tracker to your OpenCode project:

  • Manager — plans, assigns, and orchestrates the workflow.
  • Senior — implements features using TDD.
  • Techlead — reviews the senior's output.

Quick start

  1. Make sure you have a project folder with OpenCode already initialized.

  2. Create or open your opencode.json file in the project root.

  3. Add orgcode-ai to the plugin array:

    {
      "$schema": "https://opencode.ai/config.json",
      "plugin": ["orgcode-ai"]
    }
  4. Save the file and restart OpenCode.

  5. OpenCode will automatically download and install the ORGCODE plugin from npm.

  6. In your OpenCode session, type /orgcode to start the workflow.

No npm install, no cloning, no manual setup is required.

Install

ORGCODE is published on npm. OpenCode auto-installs npm plugins, so you do not need to clone this repository or run any install command yourself.

Step 1: add the plugin to your OpenCode config

Open opencode.json in your project root and add "orgcode" to the plugin array:

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

Step 2: restart OpenCode

Quit and restart OpenCode. The plugin will be downloaded and installed automatically.

Step 3: verify it loaded

Type / in the OpenCode prompt. You should see /orgcode and /orgcode_yolo in the command list.

Usage

Checkpoint mode

Run one full task cycle at a time and ask for confirmation before continuing:

/orgcode

Autonomous mode

Run continuously until all tasks are done or an error occurs:

/orgcode_yolo

Run only specific tasks:

/orgcode_yolo feat-001 feat-002

Missing or already-done tasks are skipped automatically.

Creating tasks

Before running /orgcode, create at least one task in the .orgcode/tasks/ folder.

Tasks are Markdown files with a TOML frontmatter block:

+++
[task]
id = "feat-001"
title = "Add user authentication"
status = "todo"
assignee = "senior"
priority = "high"
+++

# Add user authentication

Implement email/password authentication.

Allowed values:

  • status: todo, in_progress, in_review, done
  • assignee: manager, senior, techlead
  • priority: low, medium, high

Agents manage tasks through the orgcode_task custom tool. Do not edit task files directly unless you have to.

Workflow

  1. Manager lists tasks and picks the next todo one.
  2. Manager assigns it to the senior agent.
  3. Senior implements the feature using TDD.
  4. Manager assigns it to the techlead agent.
  5. Techlead reviews and either approves or lists issues.
  6. If issues are found, the task goes back to the senior.
  7. Once approved, the manager marks the task as done and moves to the next one.

Development

These commands are for contributors working on the ORGCODE plugin itself:

vp install
vp test
vp check
vp pack

License

MIT