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

@woghks096/trellis

v0.13.0

Published

Trellis — CLI scaffolder and validator for the Harness Engineering methodology.

Readme

trellis

Opinionated project scaffolder and validator for the AI-coding era.

npm license

What is trellis?

trellis turns your methodology into an executable CLI. You and your AI agents scaffold, extend, and validate projects from the same opinionated playbooks — so structure stays consistent whether a human or an agent writes the code.

  • Three built-in playbooks: cli-tool / b2b-saas / ai-rag-platform
  • trellis new bootstraps a new project through a short interview
  • trellis add extends an existing project with idempotent fragments
  • trellis check / trellis doctor enforce architecture rules and doc–code consistency

Quick start

npm i -g @woghks096/trellis
trellis new my-project

One-off (no global install):

npx @woghks096/trellis new my-project

Commands

trellis new <dir>           # Interview → match playbook → scaffold + .trellis/spec.json
trellis add <type> <name>   # Add a fragment (idempotent, multi-slot patch)
trellis remove <type> <name> # Remove a fragment (reverse of add, idempotent)
trellis list [type]         # Browse available fragments (--json for scripting)
trellis upgrade [dir]       # Migrate project to the latest trellis (slot inserts + spec.json bump)
trellis check <dir>         # Detect layered-architecture violations
trellis doctor <dir>        # Check doc / code / playbook consistency

All commands support --json for AI / script consumption.

Fragment Patches

Fragments extend your project in two ways:

  • Block-style markers — Templates declare // trellis:slot:<name>:start/end blocks where fragment entries are inserted (idempotent by entryKey).
  • AST patches (P15) — Fragments with astPatches use ts-morph selectors (arrayPush, objectKey, importAdd) to update exports without markers. Enables external fragment catalogs without modifying base templates.

Both mechanisms coexist — a single fragment can use markers + AST patches together.

Why

Predictable quality matters most when you code with AI agents. Instead of asking humans and agents to re-interpret methodology documents every time, trellis makes the rules executable:

  • One CLI command reproduces the same structure every time
  • Architecture violations are caught automatically (trellis check . passes on this repo itself)
  • Methodology becomes self-validating, not just documented

Status

v0.10.0 on npm — daily-driver maturity (L4 graduated)

v0.11.0 was tagged on GitHub but never reached npm — npm rotated granular write tokens in response to the "Mini Shai-Hulud" supply-chain pattern at the same moment the publish workflow tried to run. The pipeline is now wired to Trusted Publishing (OIDC + provenance), and all P13 work ships on the next release.

P0–P13 complete: scaffolding, interview, generator, validator, doctor, trellis add (fragment + multi-slot patch), trellis list (list / detail / --json), cli-tool dogfooding fragments (command + service-module), trellis upgrade (migration manifest, idempotent slot inserts, --dry-run/--force). All commands include --json, actionable error hints, and doctor 6-rules.

release-please automates version bumps on feat:/fix: commits, including version-constant sync via extra-files.

Roadmap: docs/plans/

Supported playbooks

| Playbook | Description | |---|---| | cli-tool | Single-binary CLI — this repo follows it | | b2b-saas | Auth + multi-tenant SaaS (sidebar + authed route group) | | ai-rag-platform | Document upload + RAG + LLM pipeline (sidebar included) |

Development

npm install
npm run build
npm run test
npm run lint

Korean version

한국어 README →

License

MIT — see LICENSE.