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

@grainulation/orchard

v1.0.2

Published

Multi-sprint research orchestrator — coordinate parallel research across teams

Readme

12 sprints running. One command to see them all. Orchard coordinates parallel research across teams with dependency graphs, conflict detection, and unified dashboards.

Install

npm install -g @grainulation/orchard

Or use directly:

npx @grainulation/orchard status

Quick start

Create orchard.json in your project root:

{
  "sprints": [
    {
      "path": "./sprints/auth-scaling",
      "question": "How should we scale auth for 10x traffic?",
      "depends_on": [],
      "assigned_to": "alice",
      "deadline": "2026-03-20",
      "status": "active"
    },
    {
      "path": "./sprints/data-migration",
      "question": "What's the safest migration path for the user table?",
      "depends_on": ["./sprints/auth-scaling"],
      "assigned_to": "bob",
      "deadline": "2026-03-25",
      "status": "active"
    }
  ]
}

Then:

orchard plan        # Show the dependency graph
orchard status      # Check status of all sprints
orchard sync        # Sync status from sprint directories
orchard dashboard   # Generate unified HTML dashboard

What it does

  • Sprint dependency graphs -- "sprint B needs sprint A's results first"
  • Cross-sprint conflict detection -- when two sprints reach opposing conclusions
  • Team assignment -- who's running which sprint
  • Unified status dashboard across all active sprints
  • Sprint scheduling and deadline tracking
  • Topological sort -- determines execution order, flags cycles

CLI

| Command | Description | | -------------------------------- | ---------------------------------------- | | orchard plan | Show sprint dependency graph | | orchard status | Show status of all tracked sprints | | orchard assign <path> <person> | Assign a person to a sprint | | orchard sync | Sync sprint states from directories | | orchard dashboard [outfile] | Generate unified HTML dashboard | | orchard init | Initialize orchard.json | | orchard serve | Start the portfolio dashboard web server |

Conflict detection

Orchard flags two types of cross-sprint conflicts:

  1. Opposing recommendations -- two sprints make recommendations on the same topic that contradict
  2. Constraint-recommendation tension -- one sprint's constraints conflict with another's recommendations

Zero dependencies

Node built-in modules only.

Part of the grainulation ecosystem

| Tool | Role | | ------------------------------------------------------------ | ----------------------------------------------------------- | | wheat | Research engine -- grow structured evidence | | farmer | Permission dashboard -- approve AI actions in real time | | barn | Shared tools -- templates, validators, sprint detection | | mill | Format conversion -- export to PDF, CSV, slides, 24 formats | | silo | Knowledge storage -- reusable claim libraries and packs | | harvest | Analytics -- cross-sprint patterns and prediction scoring | | orchard | Orchestration -- multi-sprint coordination and dependencies | | grainulation | Unified CLI -- single entry point to the ecosystem |

License

MIT