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 🙏

© 2025 – Pkg Stats / Ryan Hefner

roho-cli

v1.0.1

Published

AI-Powered Investigation & Coding Assistant CLI - Connect to your ROHO server

Readme

ROHO CLI

AI-Powered Investigation & Coding Assistant

npm version License: MIT

Connect to your ROHO AI server and get assistance with coding, file operations, web search, and OSINT investigations directly from your terminal.

Quick Install

npm install -g roho-cli

Requirements

  • Node.js 12+ (for npm installation)
  • Python 3.6+ (runtime requirement)
  • pip3 (for Python dependencies)
  • Network access to your ROHO server

First Time Setup

After installation, run:

roho

You'll be guided through a setup wizard to configure your ROHO server connection.

Usage

Interactive Mode

roho

Start a conversation with your AI assistant:

You: create a Python script to calculate fibonacci numbers

ROHO: [Tool: write_file]
I've created fibonacci.py with the following code:
...

You: run it

ROHO: [Tool: execute_bash]
0, 1, 1, 2, 3, 5, 8, 13, 21, 34...

Single Query Mode

roho "search for latest Node.js security vulnerabilities"
roho "list all JavaScript files in this directory"
roho "create a REST API using Express"

Commands

roho                # Interactive mode
roho "query"        # Single query
roho --config       # Reconfigure server
roho --version      # Show version
roho --help         # Show help

Features

  • AI-Powered Coding - Generate, edit, and review code
  • File Operations - Read, write, edit, delete files
  • Code Search - Find patterns in your codebase
  • Web Search - DuckDuckGo integration
  • Bash Execution - Run shell commands with AI guidance
  • OSINT Tools - Investigation capabilities via server
  • Cross-Platform - Works on Linux and macOS

Server Setup

ROHO CLI requires a ROHO server to connect to. The server provides the AI model and tools.

Quick Server Setup (on your VPS)

# Start ROHO server
/mnt/ROHO/roho-server.sh

# Ensure firewall allows connections
sudo ufw allow 8080/tcp

Your server URL will be: http://your-vps-ip:8080

Configuration

Config file location: ~/.roho/config.json

To reconfigure:

roho --config

Examples

Create a File

roho "create a package.json for a React app"

Search Code

roho "find all TODO comments in this project"

Web Research

roho "search for best practices for Node.js security"

Execute Commands

roho "show me all running Docker containers"

Troubleshooting

Python not found

Install Python 3:

# macOS
brew install python3

# Ubuntu/Debian
sudo apt install python3 python3-pip

# Fedora/RHEL
sudo dnf install python3 python3-pip

Then reinstall:

npm install -g roho-cli

Can't connect to server

  1. Verify server is running:

    curl http://your-vps-ip:8080/health
  2. Check firewall:

    sudo ufw status
  3. Reconfigure:

    roho --config

Uninstall

npm uninstall -g roho-cli
rm -rf ~/.roho

Architecture

┌──────────────┐         ┌──────────────┐
│ Your Machine │         │  ROHO Server │
│              │         │   (VPS)      │
│  Node.js     │  HTTP   │              │
│    ↓         ├────────►│  llama.cpp   │
│  Python      │         │  Hermes-4    │
│  ROHO Client │         │  70B Model   │
└──────────────┘         └──────────────┘

What's Included

  • Node.js wrapper for npm compatibility
  • Python ROHO client (auto-installed)
  • Auto-configuration wizard
  • Dependency management

Links

  • NPM Package: https://www.npmjs.com/package/roho-cli
  • GitHub: https://github.com/YOUR-USERNAME/ROHO-CLI
  • Issues: https://github.com/YOUR-USERNAME/ROHO-CLI/issues
  • Documentation: Full README in GitHub repository

License

MIT License - see LICENSE file

Support

  • GitHub Issues: Bug reports and feature requests
  • NPM: Package downloads and updates

Powered by Hermes-4-70B | Built with ❤️ | Open Source