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

@xemahq/create-biome

v6.7.0

Published

Deterministic, agent-native Xema biome scaffold planner and applier over the canonical kernel manifest schema.

Readme

@xemahq/create-biome

Scaffolder for new Xema biome packages

Overview

Generates a real in-tree biome from a single command — a biomes/<id>/ directory whose xema-biome.json passes the canonical BiomeManifestSchema, whose server APIs bootstrap through XemaServiceModule.forBiome(...), and whose web surface registers through the host shell's loader glob. The output mirrors the first-party biomes the platform runs, so a new biome is immediately valid against the biome validator, the boundary checks, and generate-service-bootstrap.mjs.

What a generated biome already has

A scaffolded biome arrives working, not empty. Nothing below is authored by hand — each is derived from a declaration the biome already makes:

| It declares | It already has | |---|---| | @XemaApiSurface(Public) + @XemaResource + @XemaRoute | four authorized, auditable, agent-callable capabilities<domain>:item.{list,read,create,delete}@1 — in the capability graph, with input/output schemas, risk tiers and approval gating | | xema.capabilityDomain | the <domain> those refs are filed under | | defineWebBiome | routes and a nav entry | | a search-type contribution | a renderable search result-type | | renderHints.routeTemplate | a working deep link into the paired detail page | | a ConnectorAdapterModule (connector kind) | connector capabilities, connection setup, credential custody, OAuth and preflight |

No capability descriptor is written, and none should be. The generated biome ships the conformance test that asserts its exact projected capability set, so the promise is checkable on day one: pnpm test in its API package.

Kinds

  • service — a server biome with one NestJS API plus skills/, agents/, contributions/, and workspace-manifests/.
  • web — a frontend-only biome: a nav item, a project-scoped lazy route page, and the navHidden detail route deep links land on.
  • full — both a server biome and its paired web surface, wired together via requiresServerBiomes.
  • connector — a credential-bearing capability provider: one ConnectorAdapterModule and nothing else. Ships no API and no web surface, and depends on no other biome, as tooling/boundaries/check-connector-biome.mjs requires.

When to use it

  • Use it to bootstrap a brand-new in-tree biome of any kind.

Installation

# No install needed — run it directly from the monorepo root:
pnpm dlx @xemahq/create-biome <biomeId>

Usage

# Default (no flags) = the smallest viable server biome:
# --kind service --scope platform, ONE api, no optional manifest blocks.
pnpm dlx @xemahq/create-biome my-biome

# Richer layouts stay behind flags:
pnpm dlx @xemahq/create-biome my-portal --kind full --scope base
pnpm dlx @xemahq/create-biome connector-acme --kind connector

After scaffolding a server/full biome, run node tooling/codegen/generate-service-bootstrap.mjs and pnpm refresh from the monorepo root. For web/full, the host's transpilePackages and tsconfig paths are glob-derived — the host's biomes:generate script (run by its predev/prebuild) picks the new biome up with no manual list edit.

License

Business Source License 1.1 (BSL-1.1) — source-available; converts to MPL-2.0 four years after each release. © Xema — xema.dev. See the repository LICENSE.