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-conductor

v1.0.6

Published

OpenCode plugin for Context-Driven Development workflow

Readme

OpenCode Conductor

npm version License: MIT

OpenCode Conductor is a reusable plugin for the OpenCode ecosystem. It ports the powerful "Context-Driven Development" (CDD) workflow originally popularized by the Gemini CLI Conductor, enabling AI agents to build complex features with high precision by grounding them in your project's specific product mission, technical stack, and development standards.

🚀 Why Conductor?

AI agents often fail on large tasks because they lose context or make assumptions that contradict your project's architecture. Conductor solves this by:

  1. Grounding: Every implementation is preceded by a read of your core context files (product.md, tech-stack.md, workflow.md).
  2. Tracking: Complex features are broken down into "Tracks," each with its own specification and step-by-step implementation plan.
  3. State Management: It maintains a clear record of what has been built, what is pending, and how the feature was specified.

📦 Installation

As an OpenCode Plugin (Recommended)

Add the plugin to your global opencode.jsonc configuration (usually found in ~/.config/opencode/opencode.jsonc):

{
  "plugin": [
    "opencode-conductor@latest"
  ]
}

OpenCode will automatically download and load the plugin the next time you start a session.

For Local Development

If you want to modify the plugin or use it locally without publishing:

git clone https://github.com/NocturnLabs/opencode-conductor.git
cd opencode-conductor

# Install dependencies
npm install

# Build and install locally using mise
mise run install

🛠️ Getting Started

1. Initialize the Project

In any project directory, run:

/conductor-setup

This creates a conductor/ directory at your project root with template files.

2. Define Your Context

Open the generated files and fill them out. The better the context, the better the AI's implementation:

  • conductor/product.md: What is this project? Who is it for? What is the core mission?
  • conductor/tech-stack.md: Which frameworks are we using? (e.g., Next.js, Tailwind, Prisma). Any specific versions?
  • conductor/workflow.md: How do we code? (e.g., "Use functional components," "All tests in tests/," "Use TSDoc").

3. Create a New Track

When you're ready to build a feature, create a track:

/conductor-new id:"auth-system" title:"JWT Authentication System"

This creates conductor/tracks/auth-system/ with spec.md and plan.md.

4. Implement the Feature

Run the "do" command to let the agent start working:

/conductor-do id:"auth-system"

The agent will:

  1. Read all your core context files.
  2. Read the track's specification and plan.
  3. Execute the next uncompleted task in the plan.
  4. Mark the task as completed when finished.

📜 Command Reference

| Command | Description | Arguments | | :--- | :--- | :--- | | /conductor-setup | Scaffolds the conductor/ directory and context files. | None | | /conductor-new | Creates a new development track with spec/plan templates. | id (string), title (string) | | /conductor-do | Reads context and implements pending tasks for a track. | id (string) | | /conductor-status | Provides a high-level summary of all tracks and context health. | None |


📁 Directory Structure

conductor/
├── product.md       # High-level product mission
├── tech-stack.md    # Frameworks, languages, and tools
├── workflow.md      # Coding standards and processes
├── tracks.md        # Index of all tracks (managed by plugin)
└── tracks/          # Feature-specific directories
    └── track-id/
        ├── spec.md      # Detailed technical specification
        ├── plan.md      # Checkbox-list of implementation tasks
        └── metadata.json # Status, title, and timestamps

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Publishing to NPM

To publish a new version (org members only):

  1. Update version in package.json.
  2. Commit and push:
    npm version patch # or minor/major
    git push --tags
  3. GitHub Actions will handle the NPM release.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.