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

conductor-opencode

v1.0.1

Published

Conductor - Spec-driven development framework for OpenCode

Readme

Conductor for OpenCode

Spec-driven development framework for OpenCode. Port of the original Conductor for Gemini CLI.

What is Conductor?

Conductor is a spec-driven development methodology that helps you build software systematically:

  1. Define your product vision, guidelines, and tech stack
  2. Plan features as "tracks" with detailed specifications
  3. Implement tasks following your defined workflow
  4. Review work against your guidelines and standards
  5. Iterate with confidence knowing everything is tracked

Installation

npm install conductor-opencode

Usage

Add to your opencode.json:

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

Available Commands

| Command | Description | |---------|-------------| | /conductor-setup | Initialize Conductor for project | | /conductor-implement | Execute tasks from track plan | | /conductor-new-track | Create a new track | | /conductor-review | Review completed work | | /conductor-status | Show project progress | | /conductor-revert | Revert previous work |

Quick Start

  1. Setup: Run /conductor-setup in your project directory
  2. Define: Answer questions about your product, tech stack, and workflow
  3. Implement: Use /conductor-implement to execute tasks
  4. Review: Run /conductor-review to verify your work

Project Structure

After setup, Conductor creates:

your-project/
├── conductor/
│   ├── index.md              # Project context index
│   ├── product.md            # Product definition
│   ├── product-guidelines.md # Brand and style guidelines
│   ├── tech-stack.md         # Technology decisions
│   ├── workflow.md           # Development workflow
│   ├── tracks.md             # Track registry
│   ├── code_styleguides/     # Code style guides
│   └── tracks/               # Track directories
│       └── <track_id>/
│           ├── spec.md       # Track specification
│           ├── plan.md       # Implementation plan
│           └── metadata.json # Track metadata

Features

Spec-Driven Development

  • Define specifications before implementation
  • Generate detailed plans from specs
  • Track progress against plans

Autonomous Execution

  • Implement tasks automatically
  • Follow defined workflows
  • Continue without user intervention

Git Integration

  • Track commits against tasks
  • Revert work cleanly
  • Review changes systematically

Code Style Enforcement

  • Include style guides for your languages
  • Review code against guidelines
  • Maintain consistency

Workflow Customization

The default workflow includes:

  • 80% test coverage requirement
  • Commit after each task
  • Git notes for task summaries

Customize during setup or edit conductor/workflow.md.

Supported Languages

Code styleguides available for:

  • TypeScript
  • JavaScript
  • Python
  • Go
  • C++
  • C#
  • Dart
  • HTML/CSS
  • General best practices

Credits

Ported from Conductor for Gemini CLI by Google.

License

Apache 2.0 - See LICENSE