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/harvest

v1.0.2

Published

Analytics and retrospective layer for research sprints -- learn from every decision you've made

Readme

Harvest is the analytics layer for research sprints. It looks across sprints to find patterns, score predictions, and surface knowledge that's gone stale.

Install

npm install -g @grainulation/harvest

Or use directly:

npx @grainulation/harvest analyze ./sprints/

What it does

  • Cross-sprint analysis -- claim type distributions, evidence quality, recurring themes
  • Prediction calibration -- score past estimates against actual outcomes
  • Decision patterns -- what research approaches lead to better results?
  • Knowledge decay -- which old claims need refreshing before they mislead you?
  • Sprint velocity -- how long do sprints take, where do they stall?
  • Retrospective reports -- dark-themed HTML reports for the team

Quick start

# Cross-sprint claim analysis
harvest analyze ./sprints/

# Score predictions against outcomes
harvest calibrate ./sprints/

# Detect decision patterns and anti-patterns
harvest patterns ./sprints/

# Find stale claims that need refreshing
harvest decay ./sprints/ --days 60

# Sprint timing and phase analysis
harvest velocity ./sprints/

# Generate a full retrospective HTML report
harvest report ./sprints/ -o retrospective.html

# All analyses in one pass
harvest trends ./sprints/ --json

# Start the live dashboard (SSE updates, dark theme)
harvest serve --root ./sprints/ --port 9096

# Connect to farmer for mobile monitoring
harvest connect farmer --url http://localhost:9094

Data format

Harvest reads standard wheat sprint data:

  • claims.json -- array of typed claims with id, type, evidence, status, text, created
  • compilation.json -- compiled sprint state (optional, enriches analysis)
  • Git history on claims.json -- used for velocity and timing analysis

Point harvest at a directory containing sprint subdirectories, or at a single sprint directory.

Design

  • Reads, never writes -- harvest is a pure analysis tool; it won't modify your sprint data
  • Git-aware -- uses git log timestamps for velocity analysis when available
  • Composable -- each module (analyzer, calibration, patterns, decay, velocity) works independently

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