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

@pydantic/logfire-cli-win32-arm64

v0.1.7

Published

Native binary for @pydantic/logfire-cli-win32-arm64.

Readme

Logfire CLI

Set up Pydantic Logfire, query your telemetry, and manage projects and tokens without leaving the terminal.

Getting started · Install · User guide · Develop the CLI

Get started

Install the native CLI with uv:

uv tool install logfire-cli
logfire --version

Want to try it first? Run either command without installing anything:

uvx logfire-cli --help
npx logfire-cli --help

You can also install it with npm:

npm install --global logfire-cli
logfire --version

New to Logfire?

From your application's directory, choose the organization and first project names you want:

logfire --region us signup --org acme --project my-app

The CLI opens a short-lived signup page in your browser. After you approve the signup, it creates the organization and project and connects the current directory to that project. Use --region eu if your Logfire account belongs in the EU region.

Already have a Logfire account?

Sign in, then create or choose a project interactively:

logfire --region us auth --org acme
logfire --org acme init

Browser credentials stay in your operating system's credential store. init writes the project's SDK credential to .logfire/logfire_credentials.json and keeps it out of version control.

Check it and do something useful

logfire --org acme project current
logfire --org acme wizard
logfire --org acme mcp query run 'SELECT message FROM records LIMIT 20' --project my-app
  • project current verifies which Logfire project this directory uses.
  • project open opens that validated project, while --no-open prints its URL.
  • wizard prepares the account and project, then asks an installed Codex, Claude Code, GitHub Copilot, Cursor, or Google Antigravity agent to instrument and verify your application.
  • mcp query run queries your Logfire data through the hosted MCP server.

For the complete walkthrough, including existing-project and automation flows, see Getting started.

Common jobs

| I want to… | Command | Guide | | --- | --- | --- | | Create my Logfire account and first project | logfire signup | Signup | | Sign in to an existing account | logfire auth | Authentication | | Connect this directory to a project | logfire init | Project setup | | Add application instrumentation | logfire wizard | Agent-assisted setup | | Try the beta AI Gateway integration | logfire --beta agent gateway or logfire --beta agent proxy launch | Gateway setup | | Run Python with automatic instrumentation | logfire run | Run Python | | Query traces and logs | logfire mcp query | MCP | | Open or inspect the current project | logfire project | Project | | Create a project read or write token | logfire token | Tokens | | Diagnose credentials or local setup | logfire doctor | Doctor |

The CLI also includes beta typed Platform API commands, safe generic MCP calls, agent skills, and beta Codex telemetry setup. The user guide lists every command by task.

Help that starts small

logfire --help
logfire help signup
logfire help init
logfire help mcp query

Short help keeps common choices visible. logfire help <command> adds examples, effects, and advanced options.

For scripts and coding agents, add --no-input and request --output json or --output jsonl instead of parsing human-readable output. See Output contracts.

Credentials stay in the right place

  • Browser OAuth credentials are scoped to one Logfire origin and organization and stored in the operating system credential store.
  • Project write credentials stay with the local project under .logfire/.
  • Coding agents launched by setup or bundled skills do not inherit Logfire account credentials from the CLI's environment.
  • Newly created secrets are printed once only when a token-creation command is explicitly used.
  • --org always means the real organization name shown in Logfire.

See Authentication for multiple organizations, headless API keys, logout, and credential precedence.

Installation and updates

PyPI provides native binaries for all 17 supported targets. npm covers the five common macOS, GNU/Linux, and Windows combinations. Repository readers can also download every prebuilt archive, plus checksums and verification evidence, from GitHub Releases. Until this repository is public, that GitHub route requires Pydantic repository access.

See Installation for supported platforms, one-off use, updates, and shell completions.

Contributing and security

Developing the CLI itself? Start with the developer guide and contribution guide. Report vulnerabilities through the private process in SECURITY.md, never through a public issue.

Logfire CLI is released under the MIT License.