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

@mindexec/remote

v0.1.17

Published

MindExec Direct Remote agent

Downloads

4,813

Readme

MindExec Remote Agent

Run a direct MindExecution remote agent from a controlled computer.

npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token>

For LAN use, start the manager RemoteHub with an externally reachable host and port, then point agents at that address:

$env:REMOTE_HUB_HOST="0.0.0.0"
$env:REMOTE_HUB_PORT="5197"
$env:REMOTE_HUB_PAIR_TOKEN="<strong-token>"
npx @mindexec/cli

npx @mindexec/remote connect --manager 192.168.0.10:5197 --pair <strong-token>

The agent registers the device, sends status heartbeats, can return manager-requested low-resolution thumbnails, can stream a focused view-only live screen when the manager requests it, and can receive safe remote agent instructions.

By default, the launcher uses the packaged C# RemoteFast engine when supported. RemoteFast connects to the manager with WebSocket and sends each screen frame as one binary message containing frame.binary metadata plus raw JPEG/PNG bytes, so screen frames do not travel as base64 JSON. The current C# capture backends are:

  • Windows x64: Graphics.CopyFromScreen JPEG fallback.
  • macOS arm64/x64: screencapture + sips JPEG fallback. macOS Screen Recording permission is required.

The launcher automatically falls back to the legacy Node engine when AI assist is requested or when a compatible .NET runtime is unavailable.

By default, task dispatch is task-only: the agent records and reports the instruction but does not perform shell, file, input, browser, or persistent side effects.

OpenAI-backed text-only AI assist is opt-in per controlled computer:

$env:OPENAI_API_KEY="<key-on-this-controlled-computer>"
npx @mindexec/remote connect --manager 192.168.0.10:5197 --pair <strong-token> --ai

AI assist calls the configured model and returns text output. It still does not perform shell, file, input, browser, or persistent side effects.

Useful development flags:

npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --no-thumbnail
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --no-live
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --no-tasks
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --ai --ai-model gpt-5.4-mini
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --fake-thumbnail
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --fake-ai
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --engine node
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --engine fast
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --engine fast --transport tcp
npx @mindexec/remote connect --manager 127.0.0.1:5197 --pair <token> --engine fast --trace-frames