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

v1.0.1

Published

Reusable knowledge for research sprints -- shared claim libraries, templates, and knowledge packs

Downloads

5

Readme

Instead of starting every sprint from scratch, pull in battle-tested constraint sets, risk patterns, and decision templates. Grab a starter pack in one command:

npx @grainulation/silo pull compliance --into ./claims.json

Install

npm install -g @grainulation/silo

Built-in packs

11 knowledge packs with 131 curated claims:

| Pack | Claims | What's inside | | ------------------ | ------ | -------------------------------------------------------------------------- | | api-design | 13 | REST conventions, versioning, pagination, error formats, GraphQL tradeoffs | | architecture | 12 | Monolith vs micro, build vs buy, SQL vs NoSQL decision claims | | ci-cd | 12 | CI/CD pipeline patterns, caching, rollback strategies | | compliance | 14 | HIPAA, SOC 2, GDPR constraint sets with regulatory citations | | data-engineering | 12 | ETL patterns, data quality, warehouse design | | frontend | 12 | Frontend architecture, performance, accessibility patterns | | migration | 10 | Database/cloud/framework migration risks and patterns | | observability | 12 | Logging, metrics, tracing, alerting patterns | | security | 12 | Security constraints, threat models, authentication patterns | | team-process | 12 | Team workflow, code review, incident response patterns | | testing | 10 | Testing strategies, coverage, test architecture |

Quick start

# See available packs
silo packs

# Pull compliance constraints into your sprint
silo pull compliance --into ./claims.json

# Pull only GDPR constraints
silo pull compliance --into ./claims.json --type constraint

# Search across stored claims
silo search "encryption at rest"

# Store your sprint's findings for reuse
silo store "q4-migration-findings" --from ./claims.json

# List everything in your silo
silo list

CLI

| Command | Description | | ----------------------------------------- | ------------------------------- | | silo list | List all stored collections | | silo pull <pack> --into <file> | Pull claims into a claims file | | silo store <name> --from <file> | Store claims from a sprint | | silo search <query> | Full-text search across claims | | silo packs | List available knowledge packs | | silo publish <name> --collections <ids> | Bundle collections into a pack | | silo install <file> | Install a pack from a JSON file |

How it works

Silo uses your filesystem for storage (~/.silo by default). No database, no network calls, no accounts.

When you pull, Silo re-prefixes claim IDs to avoid collisions, deduplicates against existing claims, and merges into your claims.json.

When you store, Silo hashes the content for versioning, saves to ~/.silo/claims/, and updates the search index.

Programmatic API

const { Store } = require("@grainulation/silo/lib/store");
const { Search } = require("@grainulation/silo/lib/search");
const { ImportExport } = require("@grainulation/silo/lib/import-export");

const store = new Store().init();
const search = new Search(store);
const io = new ImportExport(store);

const results = search.query("encryption", { type: "constraint" });
io.pull("compliance", "./claims.json");
io.push("./claims.json", "my-sprint-findings");

Zero dependencies

Node built-in modules only. Filesystem-based storage. Works offline.

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