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

higherup

v2.2.2

Published

Give AI agents full access to your development machine - command execution, file operations, screen capture, and autonomous mode

Downloads

68

Readme

Higherup Agent

Give AI agents full access to your development machine - command execution, file operations, screen capture, and autonomous mode

npm version License: MIT

Quick StartFeaturesDocumentationTroubleshooting


What is Higherup?

Higherup is a lightweight CLI agent that bridges cloud-based AI coding platforms with your local development environment. It enables AI assistants like Claude, GPT, and others to:

  • ✅ Execute commands in your terminal
  • ✅ Read and write files in your workspace
  • ✅ Capture screenshots for visual debugging
  • ✅ Monitor system resources
  • ✅ Work autonomously with full access (optional)

Perfect for: AI-assisted development, remote pair programming, automated workflows, and autonomous coding agents.

Quick Start

Installation

# Install globally via npm
npm install -g higherup

# Verify installation
higherup --version

First-Time Setup

  1. Create an account at higherup.ai
  2. Setup your agent (Interactive):
higherup setup

This will prompt you for your API Token and guide you through workspace selection.

  1. Start the Agent Daemon:
higherup start

Your agent is now listening for commands from AI platforms in the cloud.

Features

🚀 Core Capabilities

| Feature | Description | Command | |---------|-------------|---------| | Command Execution | Run any shell command | npm install, git status | | File Operations | Read, write, copy, move, delete | cat package.json, rm tmp.log | | Directory Listing | Browse project structure | ls -R | | Screen Capture | Take screenshots | Captures browser, IDE, terminal | | System Info | Get OS, CPU, memory details | higherup status |

Commands

higherup setup

Interactive setup to configure your authentication and workspace.

  • Prompts for API Token (found in Higherup Dashboard)
  • Auto-detects local project workspaces
  • Links your local directory to a cloud workspace

higherup start

Starts the agent daemon. This process must stay running to receive commands from the cloud.

  • Connects to the Higherup Relay
  • Listens for incoming tool calls
  • Reports execution results back to the dashboard

higherup run "<command>"

Queue a one-shot command from the CLI.

  • Useful for testing or triggering commands from other scripts
  • Example: higherup run "npm run build"

higherup status

Display the current configuration, linked workspace, and system information.

higherup help

Display help for all commands.

Architecture: The Relay System

Higherup uses a secure relay architecture. The Agent Daemon (higherup start) runs on your machine and maintains a connection to our relay. When you use an AI platform (like our web dashboard or a compatible IDE extension), commands are sent to the relay and then picked up by your local agent.

graph LR
    User[Web Dashboard / AI] --> Relay[Higherup Relay]
    Relay --> Agent[Local Higherup Agent]
    Agent --> LocalSystem[Your Terminal / Files]

Security & Safety

Workspace Sandboxing

By default, the agent is restricted to the directory where you ran higherup setup. It cannot read or write files outside this path.

Safety Engine

The agent includes a built-in safety engine that can prompt for confirmation before executing potentially destructive commands (e.g., rm -rf /).

API Token Security

Your API token is used to authenticate the agent to the relay. Keep it secret. If compromised, regenerate it in the Higherup Dashboard.