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

vanexa-agent

v1.1.48

Published

Sovereign AI Agent Desktop Daemon

Readme

⚡ Vanexa Agent

Your Sovereign AI — Controlled from Your Phone.

npm version License: MIT Platform

Vanexa Agent is a God-Tier autonomous AI that runs on your computer and is commanded from an Android app. It can write code, build apps, manage files, generate documents, search the web, and much more — all from the palm of your hand.


🚀 Quick Start (30 Seconds)

Choose your OS and paste the command into your terminal:

🍎 macOS / 🐧 Linux / WSL

curl -fsSL https://vanexa-installer.vercel.app/install.sh | bash

🪟 Windows (PowerShell)

irm https://vanexa-installer.vercel.app/install.ps1 | iex

That's it. The installer automatically handles everything (including Node.js if you don't have it).

After installation, pair with your phone:

vanexa-agent pair

📱 How It Works

┌─────────────┐         WebSocket (LAN)        ┌──────────────┐
│  📱 Phone   │ ◄──────────────────────────────► │  💻 Computer │
│  Vanexa App │    Commands & Live Status        │ vanexa-agent │
└─────────────┘                                  └──────────────┘
                                                       │
                                                       ▼
                                                 ┌──────────┐
                                                 │  🧠 LLM  │
                                                 │ Your Key │
                                                 └──────────┘
  1. You type a task on your phone (e.g., "Build me a React app")
  2. Vanexa Agent on your computer receives it over your local WiFi
  3. The AI (using your own API key) executes the task autonomously
  4. You monitor progress in real-time on your phone

🔧 Manual Installation (Advanced)

If you already have Node.js 18+ installed:

# Install globally
npm install -g vanexa-agent

# Start pairing
vanexa-agent pair

# Start the daemon
vanexa-agent start

🔑 BYOK (Bring Your Own Key)

Vanexa Agent uses your own API keys. No middleman, no subscription.

| Provider | Vision Support | Recommended Model | |----------|:--------------:|-------------------| | DeepSeek | ❌ | deepseek-v4-flash | | OpenAI | ✅ | gpt-4o | | Anthropic | ✅ | claude-3.5-sonnet | | Gemini | ✅ | gemini-2.5-flash | | Qwen | ❌ | qwen-turbo | | Ollama | ❌ | Any local model |

Configure your key in the Vanexa phone app under Agent → Settings → API Configuration.


🛠️ Troubleshooting

npx: command not found

Node.js is not installed. Use the Quick Start installer above, or install Node.js manually from nodejs.org.

EACCES: permission denied

On macOS/Linux, fix npm permissions:

sudo npm install -g vanexa-agent

Or use the recommended approach:

mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
npm install -g vanexa-agent

Error: Cannot connect to phone

Make sure both devices are on the same WiFi network. The agent uses mDNS (Bonjour) for auto-discovery.

Windows: running scripts is disabled

Run PowerShell as Administrator and execute:

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

🗑️ Uninstall

npm uninstall -g vanexa-agent

📄 License

MIT © Ikbal Fadilah


Built with ❤️ for the Sovereign AI Revolution