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

@anarchitecture/ghost

v0.10.0

Published

Unified Ghost CLI for product-surface composition fingerprints, deterministic checks, advisory review, and comparison

Downloads

2,551

Readme

@anarchitecture/ghost

A unified Ghost CLI for product-surface composition fingerprints.

Ghost captures the composition of a product surface: the intent behind it, the materials it draws from, and the patterns that make it feel intentional. It stores that composition in a repo-local .ghost/fingerprint/ package that host agents can read before generation and validate after changes.

This package ships one CLI: ghost.

Project Status: Beta

[!WARNING] Ghost is pre-1.0 and under active development. The CLI, fingerprint schema, on-disk .ghost/fingerprint/ package shape, and public JavaScript exports may change in breaking ways before a stable 1.0 release.

Breaking changes may ship in minor versions while Ghost is pre-1.0. Patch versions are reserved for fixes that should not require migration. If you adopt Ghost today, expect some churn, pin the version you depend on, and review release notes before upgrading.

Install

npm install -D @anarchitecture/ghost
npx ghost --help
npx ghost --help --all

ghost --help shows the core workflow. ghost --help --all shows the complete command index.

Use

Create and validate the fingerprint package:

ghost init --with-intent
ghost scan --format json
ghost lint .ghost
ghost verify .ghost --root .

Gather context before generation:

ghost relay gather apps/checkout/review/page.tsx

Govern changes afterward:

ghost check --base main
ghost review --base main --include-memory

Install the BYOA skill bundle so your host agent can author, brief, review, verify, remediate, and update fingerprints:

ghost skill install

Advanced commands such as inventory, stack, compare, ack, track, and diverge remain available in the full command index.

Zero config for every verb. No API key is required. OPENAI_API_KEY / VOYAGE_API_KEY are optional and only used by semantic embedding helpers when a host opts in.

Library

import { compare } from "@anarchitecture/ghost/compare";
import { runGhostCheck } from "@anarchitecture/ghost/govern";
import { gatherRelayContext } from "@anarchitecture/ghost/relay";
import {
  initFingerprintPackage,
  lintFingerprintPackage,
  verifyFingerprintPackage,
} from "@anarchitecture/ghost/fingerprint";

BYOA

Ghost is bring-your-own-agent. The CLI performs deterministic work: inventory, readiness reporting, linting, verification, comparison, checks, and advisory review packet generation. The installed ghost skill teaches a host agent how to capture canonical .ghost/fingerprint/ surface-composition context, brief and generate work from it, review changes against it, verify generated UI, remediate issues, and suggest fingerprint edits when the user asks.

Set up the Ghost fingerprint for this repo.
Brief this work from the Ghost fingerprint.
Review this PR against the Ghost fingerprint.

Maintainers

npm renders this package-local README.md, not the monorepo root README. The npm package page updates only when a new package version is published, so README-only changes still need a patch changeset and release.

License

Apache-2.0