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-kit/install

v0.1.1

Published

Install conductor-kit agent adapters (Claude / Codex / Cursor) into a host repository.

Readme

conductor-install

One-shot installer for conductor-kit agent adapters. Copies the chosen adapter's files into a host repository and seeds .conductor/ with the default workflow config.

Usage

# Install for one agent
npx @conductor-kit/install --agent claude  --label "Claude Opus 4.7" --project-key ACME
npx @conductor-kit/install --agent codex   --label "Codex GPT-5"      --project-key ACME
npx @conductor-kit/install --agent cursor  --label "Cursor / Claude Sonnet 4.6" --project-key ACME

# Install for all three at once
npx @conductor-kit/install --agent all --label "Claude Opus 4.7" --project-key ACME

# Preview without writing anything
npx @conductor-kit/install --agent all --dry-run

# Overwrite existing adapter files (otherwise they are skipped)
npx @conductor-kit/install --agent claude --force

Flags

| Flag | Purpose | |---|---| | --agent <claude\|codex\|cursor\|all> | Required. Which adapter(s) to install. | | --label "<string>" | Agent label recorded as default in .conductor/workflow.yml (appears in authorship footer). Defaults to a per-agent display name when --agent is a single agent. | | --project-key ACME | Jira project key seeded into .conductor/workflow.yml. | | --jira-url https://org.atlassian.net | Jira base URL seeded into .conductor/workflow.yml. | | --cwd <path> | Host repository root (default: process.cwd()). | | --force | Overwrite existing adapter files instead of skipping. | | --dry-run | Report what would change without touching the filesystem. |

What gets installed

| Agent | Target files | |---|---| | claude | <repo>/.claude/commands/conductor-{init,where,pick,ship,land,recap,draft,tune,autopilot}.md (9) | | codex | <repo>/.codex/prompts/conductor-{...}.md (9) + merge into <repo>/AGENTS.md between <!-- conductor-kit begin --> / <!-- conductor-kit end --> markers | | cursor | <repo>/.cursor/rules/conductor-{workflow,ui,conventions}.mdc (3) + <repo>/.cursor/commands/conductor-{...}.md (9) | | (all) | <repo>/.conductor/workflow.yml, <repo>/.conductor/CONVENTIONS.md, <repo>/.conductor/tune-log.md — via scaffoldConductorDir from @conductor-kit/core. |

Idempotency

  • Existing files are skipped by default. Re-running the installer is safe — pass --force to overwrite.
  • AGENTS.md uses marker-based merge: user-authored content before and after the markers is preserved; only the content between the markers is replaced. Already-current sections are reported as noop.

Flat install vs Claude marketplace plugin

The claude installer copies command files directly into <repo>/.claude/commands/ with a conductor- prefix (/conductor-pick etc.). If you prefer the marketplace plugin route — which surfaces the commands as /conductor:pick — install @conductor-kit/agent-claude via /plugin marketplace add ... instead. The two paths are mutually exclusive; pick one per repo.