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

@custyle/kb

v0.1.0

Published

Custyle customer-facing knowledge base (powers Converse Domain)

Readme

Custyle Knowledge Base

The customer-facing knowledge base for Custyle.ai — the world's first AI Merch Agent.

This repository is the single source of truth that powers the Custyle Converse Domain (AI customer service / self-serve). Every entry here is consumed by an LLM at runtime to answer user questions about the platform.

What lives here

| Path | Purpose | |------|---------| | KB.md | Master index — start here | | topics/ | Knowledge entries organized by user intent | | schema/ | Frontmatter schema, intent catalog, writing style guide | | boundaries/ | What the KB must NOT answer — directly maps to Converse safety flags | | handoffs/ | When and how to route to APIs, design flow, or humans | | glossary/ | Canonical terms — keeps voice consistent | | eval/ | Golden Q&A + boundary tests for regression | | scripts/ | validate / lint / export-for-rag |

What does NOT live here

  • Live commerce facts (price, inventory, order status, shipping ETA) — those come from Custyle APIs at runtime, not from this repo. See boundaries/do-not-answer.md.
  • Investor / financial / market materials — see custyle-brand/market/.
  • Internal engineering architecture — see custyle-platform/docs/.
  • Brand engine source of truth — see custyle-brand/ (this KB consumes it).

Design principles

  1. Atomic — one file = one user intent answered.
  2. Quotable — every entry has a Quick answer ≤ 80 words that the Answer LLM may surface verbatim.
  3. Bounded — every entry declares boundary flags that map 1:1 to Converse Domain safety constraints.
  4. Sourced — every fact is traceable to brand engine, code, or a public help page.
  5. Versioned — every entry has last_verified and review_cadence_days; stale entries auto-degrade confidence in CI.
  6. Testedeval/golden-questions.yaml protects against regression.

Status

Phase 1 — Content complete. 64 entries across 9 categories, all at confidence: medium. Pipeline clean (validate 0/0, lint 0/0). Every entry carries an Editorial notes section flagging extrapolations for owner verification.

See KB.md for the per-category status board and NEXT.md for the medium → high promotion plan.

Runtime Export

custyle-platform consumes the generated runtime index, not the markdown files directly.

pnpm install
pnpm build

pnpm build runs:

  1. pnpm validate — validate topic frontmatter and relationships.
  2. pnpm lint — enforce public-content guardrails.
  3. pnpm export — generate kb-index.json.
  4. pnpm validate:export — verify the runtime export contract.

The generated kb-index.json includes runtime metadata such as language, confidence, last_verified, and review_cadence_days. It excludes confidence: low stubs and writer-only sections such as Sources and Editorial notes.

Contributing

See CONTRIBUTING.md.

License

Proprietary. © Custyle 2026.