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-plugin-coding

v0.1.5

Published

A shared OpenCode plugin for multi-agent software development workflows: brainstorm, plan, orchestrate, review, debug.

Readme

opencode-plugin-coding

A shared OpenCode plugin for multi-agent software development workflows. Provides skills, guides, and dynamically registered agents that standardize the full cycle: brainstorm, plan, implement, review, debug, and retrospect.

Skills

| Skill | Description | |-------|-------------| | brainstorm | Socratic design interview that refines rough ideas into a validated design document | | plan | Decomposes a design into bite-sized implementation tasks with file paths and acceptance criteria | | orchestrate | Full multi-agent workflow: implement → review → merge → retrospective | | test-driven-development | RED-GREEN-REFACTOR cycle enforcement | | systematic-debugging | 4-phase debugging: reproduce → hypothesize → isolate → fix | | git-worktree | Create and manage isolated git worktrees for parallel development | | playwright | Browser automation via Playwright MCP server |

Commands

| Command | Description | |---------|-------------| | /zooplankton-coding-init | Auto-detect project, generate workflow.json | | /zooplankton-coding-update | Check workflow.json schema updates, show plugin changes |

Guides

Guide files define the prompt and behavior for each agent role. The plugin loads them automatically — they are not installed in consumer projects.

  • guides/core-coder-guide.md — Instructions for the core implementation agent
  • guides/core-reviewer-guide.md — Instructions for core reviewers (worktree + full verification)
  • guides/reviewer-guide.md — Instructions for normal reviewers (diff-based review)
  • guides/security-reviewer-guide.md — Instructions for the security reviewer (pre-merge)

Setup

1. Install the plugin

Add the plugin to your project's opencode.json:

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

OpenCode will auto-install the plugin from npm via Bun at startup. The plugin registers all skills, commands, and agents automatically — no symlinks, manual copies, or .opencode/agents/*.md files needed.

Pin a specific version (optional)

"plugin": ["[email protected]"]

Global installation (optional)

To make the plugin available across all projects without adding it to each project's opencode.json, add the same plugin entry to ~/.config/opencode/opencode.json.

2. Run /zooplankton-coding-init

From your project root in OpenCode, run:

/zooplankton-coding-init

This will:

  • Auto-detect project settings (language, framework, package manager, commands)
  • Generate .opencode/workflow.json with project-specific configuration and agent definitions
  • Update .gitignore for ephemeral plugin files

3. Configure agents

Review the agents section in .opencode/workflow.json. Each agent is a { name, model } object. The plugin reads these at startup and dynamically registers agents with the appropriate permissions and prompts from the guide files. To change models or add/remove agents, just edit workflow.json and restart OpenCode.

How it works: The plugin uses OpenCode's config hook to register agents via config.agent, skills via config.skills.paths, and commands via config.command.

Project-Level Files

After /zooplankton-coding-init, your project will have:

| File | Committed? | Purpose | |------|-----------|---------| | .opencode/workflow.json | Yes | Project configuration + agent definitions | | .opencode/reviewer-knowledge.json | No (gitignored) | Adaptive reviewer scoring cache | | .opencode/plans/<branch>.md | No (gitignored) | Ephemeral plan files | | .opencode/retrospectives/<branch>.md | No (gitignored) | Ephemeral retrospective files |

Configuration

workflow.json schema:

{
  "project": {
    "name": "my-project",
    "repo": "Org/my-project",
    "defaultBranch": "master"
  },
  "stack": {
    "language": "typescript",
    "framework": "react",
    "packageManager": "yarn"
  },
  "commands": {
    "build": "yarn build",
    "lint": "yarn lint",
    "test": "yarn test",
    "typecheck": "npx tsc --noEmit"
  },
  "agents": {
    "coreCoder": { "name": "core-coder", "model": "github-copilot/claude-opus-4.6" },
    "coreReviewers": [
      { "name": "core-reviewer-primary", "model": "github-copilot/claude-sonnet-4.6" },
      { "name": "core-reviewer-secondary", "model": "github-copilot/gpt-5.4" }
    ],
    "reviewers": [
      { "name": "reviewer-glm", "model": "alibaba-coding-plan-cn/glm-5" },
      { "name": "reviewer-minimax", "model": "alibaba-coding-plan-cn/MiniMax-M2.5" }
    ],
    "securityReviewers": []
  },
  "testDrivenDevelopment": { "enabled": false },
  "docsToRead": ["AGENTS.md"],
  "reviewFocus": ["type safety", "error handling"]
}

License

MIT