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

v1.1.1

Published

Claude Code harness for Conductor projects — hooks, memory, Linear, and workflow context

Readme

conductor-harness

A Claude Code harness for Conductor projects. Installs session hooks, memory integration, Linear workflow, and project context injection into any git repo in under a minute.


What it does

  • SessionStart hook — injects branch, recent commits, last session progress, and WORKFLOW.md context before every Claude Code session
  • Linear integration — reads attached issues directly from Conductor's + button; falls back to Linear MCP for comments and history
  • Hindsight memory — searches past decisions before starting work; writes memories after /done
  • Context7 docs — fetches up-to-date framework and package documentation before planning or implementing
  • /start, /done, /status — task kickoff and closeout rituals that keep progress state and memory in sync
  • /setup — analyzes your project and auto-generates WORKFLOW.md
  • WORKFLOW.md — a project north star (what you're building, current phase, constraints) injected into every session

Setup

1. Install MCP servers (once per machine)

Hindsight — persistent cross-session memory for decisions, gotchas, and patterns:

  1. Get an API key at ui.hindsight.vectorize.io/connect
  2. Add to your .env: HINDSIGHT_API_KEY=your_key_here
  3. The installer creates .mcp.json with the Hindsight config automatically — no CLI command needed.

Linear — read and update issues from Claude Code:

claude mcp add linear -s user -- npx -y @linear/mcp-server

Context7 — fetch up-to-date framework and package docs:

claude mcp add context7 -s user -- npx -y @upstash/context7-mcp

2. Install the harness into a project

From your project root (must be a git repo):

npx conductor-harness

The installer will ask two questions:

  • Package manager — auto-detected from your lockfile
  • Railway? — adds railway link to the Conductor setup command

3. Configure Railway (if applicable)

Add to your .env:

RAILWAY_PROJECT_ID=your-project-id
RAILWAY_ENVIRONMENT_ID=your-environment-id
RAILWAY_SERVICE_ID=your-service-id

4. Fill in WORKFLOW.md

Either edit WORKFLOW.md manually, or open the project in Claude Code and run:

/setup

This is a Claude Code slash command — type it in the Claude Code chat, not in the terminal.

5. Start working

Open the project in Claude Code via Conductor. The SessionStart hook fires automatically and injects your project context.

/start LIN-123    ← kick off a task
/done             ← close it out, write memory
/status           ← check current state

Requirements

Or attach a Linear issue via Conductor's + button and type /start — the harness reads it directly without an MCP fetch.

/done closes the Linear issue, writes a Graphiti memory episode, and resets progress state.


Project structure

runtime/
  .claude/
    CLAUDE.md.template      ← Orchestration principles + harness config
    hooks/
      session-start.sh      ← Injects context before every session
      stop.sh               ← Saves progress on session end
    commands/
      start.md              ← Task kickoff ritual
      done.md               ← Task closeout ritual
      status.md             ← Current task status
      setup.md              ← Project analysis + WORKFLOW.md generation
    skills/
      linear/SKILL.md       ← Linear issue read/write
      memory/SKILL.md       ← Graphiti memory search/write
      review/SKILL.md       ← Code review checklist
    agents/
      memory-writer.md      ← Subagent for writing memory episodes
    settings.json.template  ← Base permissions and hook registration
  WORKFLOW.md.template      ← Project north star template
  conductor.json.template   ← Conductor setup/run/archive commands
  install.sh                ← The installer (called by npx)

License

MIT