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

@tenseuronp/cli

v0.4.1

Published

Tenseuron Protocol CLI — mine and validate AI tasks from any machine. Cloud APIs (DeepSeek/OpenAI/etc.) or local LLMs (Ollama/LM Studio).

Readme

Tenseuron CLI

Mine or validate AI tasks on the Tenseuron Protocol from any machine — cloud APIs or local LLMs.

Quick start

# 1. Set up your miner (interactive)
npx @tenseuronp/cli miner setup

# 2. Run it
npx @tenseuronp/cli miner

# Or set up a validator
npx @tenseuronp/cli validator setup
npx @tenseuronp/cli validator

# Check what's running
npx @tenseuronp/cli status

No git clone. No cd. Works from any directory.

Providers

Cloud APIs — pay-as-you-go, low setup:

  • DeepSeek (cheap, fast)
  • OpenAI (gpt-4o-mini, etc.)
  • Anthropic (Claude Haiku)
  • Groq (Llama on Groq)
  • Mistral

Local LLMs — your own GPU, zero per-token cost:

  • Ollama (http://localhost:11434/v1)
  • LM Studio (http://localhost:1234/v1)
  • Any OpenAI-compatible endpoint

Local providers don't need an API key.

How it works

  • Miner: polls open tasks on the network → runs them through your AI → submits the result → earns network tokens when validators score it.
  • Validator: polls miner submissions → scores them 0–100 with your AI → earns network tokens for accurate scoring.
  • Payouts: 50% miner / 30% validators / 10% network creator / 10% launchpad treasury, per completed task.

Config

Setup writes to ~/.tenseuron/miner.env or ~/.tenseuron/validator.env. The interactive wizard (tenseuron miner setup) fills in the placeholders below for you — edit by hand only if you need to change something later.

MINER_ADDRESS=<your_solana_wallet_pubkey>
NETWORK_ID=<network_id_from_the_launchpad>
PROVIDER=custom              # custom = local OpenAI-compatible
MODEL=llama3.2:1b
API_KEY=local
CUSTOM_ENDPOINT=http://localhost:11434/v1
POLL_INTERVAL=5000
BACKEND_URL=https://api.tenseuron.com

Requirements

  • Node.js 18+
  • A Solana wallet (Phantom recommended) — you only paste its public address; the CLI never sees your private key
  • For local LLM mode: Ollama or LM Studio running locally

Troubleshooting

  • "You have not joined this network" — Re-run setup; the join step is automatic.
  • "AI failed: ECONNREFUSED localhost:11434" — Ollama isn't running. Start it: ollama serve.
  • "unable to allocate CPU buffer" — Local model too big for your RAM. Try a smaller model: ollama pull llama3.2:1b.
  • Validator console shows only dots — Healthy idle. No submissions pending. Send a task from the WalletAI extension to test.

License

MIT