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

@latticeai/cli

v0.8.2

Published

Lattice CLI for Core workflows and Architect project installs

Readme

@latticeai/cli

@latticeai/cli is the underlying CLI for both Lattice Core and Lattice Architect installs.

It powers:

  • Core setup for existing repositories
  • agent instruction generation for Codex, Cursor, and Claude Code
  • verification, drift detection, release checks, and security scanning
  • Architect project installs with create --id
  • OpenClaw runtime and generated-workspace installs with openclaw install --id
  • runtime-neutral agent setup installs with agent install --id
  • reviewed Hermes releases and personalized profile distributions with hermes install --id

Install

npm install -g @latticeai/cli

Or use the public launcher:

npx latticeai

Core workflow

latticeai setup --projectType nextjs --preset startup
latticeai verify
latticeai security-scan
latticeai update

Architect workflow

latticeai create --id <project-id>

OpenClaw workflow

npx --yes latticeai@latest openclaw install --id <project-id>

The guided installer requires Node.js 22.19 or newer. It opens official OpenClaw onboarding for credentials and channel authorization, keeps the gateway bound to loopback by default, backs up managed files, validates the generated patch, and rolls Lattice-owned changes back if verification fails.

Agent Setup workflow

Let the paid project select its runtime automatically:

npx --yes latticeai@latest agent install --id <project-id>

The existing OpenClaw command remains supported. Hermes projects can also use the explicit alias:

npx --yes latticeai@latest hermes install --id <project-id>

For Hermes, Lattice downloads the official installer, verifies the reviewed script's SHA-256, pins the reviewed upstream commit, installs a persistent local profile distribution, applies any approved user and memory seed files, and runs Hermes configuration, doctor, and profile checks. Provider and channel credentials are entered only in the official Hermes setup flow; they are not accepted in the Lattice manifest, command, logs, or receipt.

Useful recovery and preview options:

# Show the complete local plan without downloading, running, or writing anything
latticeai hermes install --id <project-id> --dry-run

# Keep setup for later; the receipt prints an exact resume command
latticeai hermes install --id <project-id> --skip-setup --skip-model-check --skip-gateway-setup

# Resolve a same-name profile without overwriting it
latticeai hermes install --id <project-id> --profile-name <alternate-name>

# After reviewing the generated files, explicitly update a same-name profile
latticeai hermes install --id <project-id> --update-existing-profile

Receipts and backups are stored under ~/.lattice/agent-setups/<project-id>/. Lattice rolls back only the files it owns; it does not uninstall Hermes or delete credentials, sessions, learned memory, gateway state, or user-created skills. Hermes Agent is an independent open-source project from Nous Research. Lattice is not affiliated with or endorsed by Nous Research.

Lattice's generated launcher may use --install-token <short-lived-token> instead of a saved CLI login. The token is project-scoped, is never written to credentials or failure reports, and is used only to fetch that install manifest and send back a sanitized status receipt. Receipts contain stage/runtime/release metadata and file counts—not generated content, credentials, command output, errors, local paths, or the token.

Links

  • Docs: https://latticeai.app/core
  • Source: https://github.com/rmach816/lattice