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-dev-team

v0.0.1

Published

An opencode agentic dev team.

Readme

opencode-dev-team

An agentic development team for opencode, delivered as a plugin.

It provides a human-in-the-loop workflow with dedicated agents for three phases:

| Phase | Command | Purpose | | ------- | ---------- | --------------------------------------------------------------------------- | | Specs | /specs | Resolve ambiguity and define intent, architecture, and acceptance criteria. | | Planner | planner | Decompose the feature into reviewed, testable vertical slices. | | Builder | builder | Implement the approved plan in small, verified batches. |

Each phase advances only after its quality and approval gates pass.

Installation

OpenCode server plugins and TUI plugins use separate configuration files. Add the package to both files using the same package version.

opencode.json:

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

tui.json (next to opencode.json):

{
  "$schema": "https://opencode.ai/tui.json",
  "plugin": ["opencode-dev-team"]
}

Then fully quit and restart opencode. Configuration and plugins are loaded only at startup. Loading opencode-dev-team only in opencode.json enables the workflow tools but cannot create and select clean TUI sessions, so transitions report that the companion TUI plugin is not loaded.

opencode installs the package automatically. On first use, the plugin installs its bundled agents, commands, knowledge, references, and skills into the project's .opencode/ directory.

Model routing

This plugin does model routing. Models can be set per bundled agent or subagent through the plugin options. Use the provider/model identifier supported by your opencode installation. A default override applies to agents without a more specific entry.

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": [
    [
      "opencode-dev-team",
      {
        "model": {
          "default": "github-copilot/claude-sonnet-4.6",
          "specs": "github-copilot/claude-opus-4.8",
          "planner": "github-copilot/claude-opus-4.8",
          "builder": "github-copilot/claude-sonnet-4.6",
          "software-engineer": "github-copilot/claude-sonnet-4.6",
          "complexity-review": "claude-haiku-4.5",
          "plan-review-acceptance": "github-copilot/claude-sonnet-4.6",
          "plan-review-design": "github-copilot/claude-sonnet-4.6",
          "plan-review-strategic": "github-copilot/claude-sonnet-4.6",
          "plan-review-ux": "github-copilot/claude-sonnet-4.6",
          "refactor-opportunity-review": "github-copilot/claude-haiku-4.5",
          "spec-reviewer": "github-copilot/claude-haiku-4.5"
        }
      }
    ]
  ]
}

Only entries you need to change are required. Named entries take precedence over default; omitted entries use opencode's normal model selection.

When completely omitted no model routing takes place and every agent and subagent will use the model that is active at that moment

Specfic verion

You can specify a specific version, this includes pre-releases:

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

Use the matching package spec in tui.json:

{
  "$schema": "https://opencode.ai/tui.json",
  "plugin": ["[email protected]"]
}

Usage

Start a workflow in opencode:

/specs <feature description>

The specs agent creates a specification under docs/specs/. After approval, the planner produces an implementation plan under plans/, and the builder implements it slice by slice.

Clean-session handoffs

The server plugin requests a named workflow transition and waits for the TUI companion to acknowledge it. The companion creates a new session, selects it, and dispatches agent.cycle until the selected primary agent reaches the next workflow agent. The approved artifact slug is used in the session title, for example planner: <slug> or builder: <slug>. The plugin does not submit a command or prompt automatically, so each phase starts without the previous phase's conversation context. The plugin uses specs as the default agent.

Status

This opencode port is still under active development and is not yet complete.

Development

See Develop.md for local development, testing, and packaging instructions.

Credits

This project is an opencode port of Bryan Finster's Agentic Dev Team. The original copywright, concept, workflow design, and knowledge base are by Bryan Finster.

License

See LICENSE.