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

@letta-ai/environment-compass

v0.1.0

Published

Read-only environment and git orientation tool for Letta Code agents working across local and remote runtimes.

Readme

Environment Compass

Environment Compass is a read-only Letta Code mod that helps agents orient before touching memory, code, or infrastructure-sensitive work.

It reports:

  • detected runtime, such as local Desktop/macOS vs Railway/remote
  • key paths and environment markers
  • Letta CLI/runtime versions visible in PATH
  • memory repository path, branch, remote, recent commits, and local git status
  • current workspace git status
  • simple recommendations about whether the agent should fetch, reconcile, or avoid editing

The mod is intentionally observational. It does not fetch, pull, push, write files, mutate git state, or contact the network.

Install

letta install npm:@letta-ai/environment-compass

Then reload mods in Letta Code:

/reload

Usage

Environment Compass provides both an agent-callable tool and a slash command.

Tool

Agents can call environment_compass before memory-sensitive or environment-sensitive work.

Slash command

/env-compass

Why use it?

Agents often run across multiple homes: a local Desktop session, a remote Railway/container session, a CLI shell, or another host. Those homes can have different working directories, different installed binaries, and separate git-backed memory checkouts.

Environment Compass gives the agent a small, safe preflight check so it can avoid assuming the wrong environment or making Laura carry the environment map manually.

Safety

Environment Compass is read-only by design:

  • no file writes
  • no git fetch/pull/push
  • no network calls
  • no secret printing; sensitive environment variable names are redacted
  • command timeouts and output limits are applied to local probes

It is an orientation tool, not a sync or repair tool.