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-4-all

v0.0.13

Published

Conductor spec-driven development CLI - TypeScript/Node.js version

Readme

Conductor for All

npm version

English | 中文 | 日本語 | 한국어

Conductor for All is a standalone command-line tool designed to bring the Conductor spec-driven development methodology to any coding environment.

Originally tied to the Gemini CLI extension, this project aims to decouple the methodology, allowing developers to install and initialize Conductor workflows in their projects so they can be leveraged by any AI Coding Agent (e.g., Claude Code, Cursor, VS Code Copilot, Codex) or IDE.

🎯 Goals

  • Universal Compatibility: Enable the Conductor methodology outside of the Gemini CLI ecosystem.
  • Agent-Agnostic Setup: Provide a mechanism to "install" Conductor commands and templates into a project, effectively "enabling" it for consumption by multiple different coding agents.
  • Standardization: Create a unified interface for project orchestration that bridges the gap between human intent and AI execution.

🚀 Usage

1. Setup Conductor in Your Project

To initialize Conductor in your project, simply run the following command in your project root:

npx conductor-4-all install

2. Alternative: Build from Source

If you prefer to build from source:

pnpm install
pnpm build
node dist/index.js install

You will be prompted to select your AI Coding Agent:

  • Opencode
  • Claude Code
  • Antigravity
  • Cursor
  • VS Code Copilot
  • Codex
  • Windsurf
  • Cline
  • Gemini CLI

This will verify the environment and install the necessary Conductor files:

  • Commands: Agent-specific prompt or command files (e.g., .opencode/commands/conductor:setup.md or .gemini/commands/conductor:setup.toml) that your agent can execute.
  • Templates: Workflow guides and style guides (e.g., .opencode/conductor/templates/).

3. Using Conductor with Your Agent

Once installed, you can instruct your AI Agent to perform Conductor tasks using the installed commands. For example:

  • @agent /conductor:setup - Initialize the project structure.
  • @agent /conductor:newTrack - Start a new feature or bug fix track.
  • @agent /conductor:implement - Implement the selected track.
  • @agent /conductor:status - Check the status of current tracks.

Note: The exact invocation syntax depends on your specific agent's slash command or file context capabilities.

🙏 Acknowledgements

This project is inspired by and based on the Conductor methodology originally developed for the Gemini CLI. We aim to extend its benefits to the broader developer ecosystem.