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

@rhythmshandilya/opencode-conductor

v0.3.3

Published

An opencode plugin that answers each request with an orchestrated team of models: a conductor plans a workflow of (subtask, worker, access-list) steps across your best connected models and isolated worker agents execute them — zero config, fully overridab

Downloads

633

Readme

@rhythmshandilya/opencode-conductor

An opencode plugin that answers each request with an orchestrated team of models: a conductor plans a workflow of (subtask, worker, access-list) steps, isolated worker agents execute them, and the final step's output is the answer. Zero config — it auto-selects your best 3 connected models.

Install

// opencode.json
{ "plugin": ["@rhythmshandilya/opencode-conductor"] }

Restart opencode, switch to the conductor agent, and ask. Two commands come with it:

  • /conductor-models — the resolved model pool
  • /conductor-last — the last run's plan, per-step status, and cost

How it works

  • Plan — the conductor emits up to maxSteps steps from an anonymized pool of your models tagged by capability. A single successful step is treated as trivial and skips replanning.
  • Isolate — each step runs in a fresh child session and sees prior steps only per its access list, preventing orchestration collapse.
  • Parallelize — independent steps run concurrently; dependent steps wait only for what they reference.
  • Recurse — the conductor reviews the final answer and may revise or terminate.
  • Remember — completed workflows persist per project for follow-up turns.

Configuration

All optional. Set via plugin options in opencode.json, or a conductor.config.json in the project root (which wins):

{
  "$schema": "https://unpkg.com/@rhythmshandilya/opencode-conductor@latest/conductor.schema.json",
  "workers": ["anthropic/claude-sonnet-4-6", "openrouter/openai/gpt-oss-120b"],
  "conductor": "anthropic/claude-opus-4-8"
}

Model refs are "providerID/modelID" strings or { providerID, modelID, tag } objects.

| setting | default | meaning | | -------------------- | --------------- | --------------------------------------------------------- | | workers | best 3 auto | worker pool (1–10 models) | | conductor | qwen/qwen3-8b | model that plans workflows (falls back to your selection) | | maxSteps | 5 | max workflow steps per plan | | maxConcurrentSteps | 3 | max concurrently ready steps | | stepTimeoutMs | 300000 | per-step watchdog before a worker is aborted | | memory | true | project-scoped memory in .opencode/conductor/ | | budgetUsd | unset | optional USD spend ceiling |

See conductor.schema.json for the full set.

Research

Independent reimplementation of the orchestration architecture described below — driven by a prompted off-the-shelf LLM rather than a trained orchestrator. Reuses none of the authors' code or model weights. Not affiliated with or endorsed by Sakana AI.

  • Learning to Orchestrate Agents in Natural Language with the Conductor — Nielsen et al., ICLR 2026, arXiv:2512.04388
  • TRINITY: An Evolved LLM Coordinator — ICLR 2026, arXiv:2512.04695
  • Sakana Fugu Technical Report — Sakana AI, 2026, arXiv:2606.21228

License

MIT