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

@ifuryst/coldkit-linux-arm64

v0.1.8

Published

Offline-first wallet safety toolkit CLI and MCP server. (linux/arm64)

Readme

coldkit

coldkit is an offline-first wallet safety toolkit for humans and AI agents.

The first supported chain is TRON. The CLI binary is available as ck and coldkit; the MCP server binary is ck-mcp.

The project is intentionally not a full wallet. It focuses on address generation, validation, watch-only balance checks, and agent-safe MCP tools with clear cold/hot boundaries.

Security Model

  • Cold commands such as ck tron gen, ck tron val, and ck tron self do not perform network I/O.
  • Watch-only commands such as ck tron bal accept public addresses only.
  • ck-mcp hides private-key-returning tools by default.
  • Use private-key generation only on an offline machine.

Install From Source

go build -o bin/ck ./cmd/ck
go build -o bin/ck-mcp ./cmd/ck-mcp

Install With npm

npm install -g coldkit

The npm package installs prebuilt ck, coldkit, and ck-mcp commands for macOS, Linux, and Windows on x64 and arm64 through platform-specific optional packages.

For offline use after installation, make sure npm installs the matching platform package:

npm install -g --include=optional coldkit

If npm skips optional packages during a global install, the launcher falls back to fetching the matching platform package with npm exec on first run.

CLI

Generate a normal TRON account offline:

ck tron gen -j

Generate vanity addresses with multiple suffixes:

ck tron gen -s 888 -s xyz -n 3 -j

Generate a public preview without printing private keys:

ck tron gen -s 888 -n 1 --pub -j

Validate a public TRON address offline:

ck tron val TJzXt1sZautjqXnpjQT4xSCBHNSYgBkDr3 -j

Check TRX, USDT/TRC20, Energy, and Bandwidth for a public address:

ck tron bal TJzXt1sZautjqXnpjQT4xSCBHNSYgBkDr3 -j

Check only Energy and Bandwidth resources:

ck tron resource TJzXt1sZautjqXnpjQT4xSCBHNSYgBkDr3 -j

Watch-only queries use a small full node endpoint pool and automatically fall back when an endpoint is rate limited or unavailable. Use --network for testnets:

ck tron bal T... --network nile -j
ck tron resource T... --network shasta -j

To use your own node or provider, repeat --endpoint:

ck tron bal T... --endpoint https://api.trongrid.io --endpoint http://127.0.0.1:8090

Run deterministic crypto test vectors:

ck self

Detailed CLI conventions live in docs/CLI.md.

MCP

Safe watch-only/default mode:

ck-mcp

Offline secret mode:

ck-mcp --enable-secret-tools

Default tools:

  • tron_validate
  • tron_balance
  • tron_resource
  • tron_generate_preview

Secret tool, only exposed with --enable-secret-tools:

  • tron_generate_secret

Detailed MCP conventions live in docs/MCP.md.

Project Docs

Development

go test ./...
go run ./cmd/ck self
go run ./cmd/ck tron gen -s 2 -s 3 -n 2 --max 10000 --pub -j

License

MIT