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

@agenticros/eyes

v1.2.1

Published

Fullscreen robot eyes for tablet/display devices, driven by ROS 2 cmd_vel Twist, with optional idle person-follow gaze and R2D2-style sounds

Readme

@agenticros/eyes

Fullscreen robot eyes for an Ubuntu tablet or robot display, driven by ROS 2 cmd_vel (geometry_msgs/Twist). Includes procedural R2D2-style chirps (idle + excited on motion). When idle, the pupils can follow a person in the RealSense camera if YOLO is already installed.

Part of the AgenticROS monorepo. Prefer launching via the CLI:

agenticros eyes
agenticros eyes --no-browser
agenticros eyes --no-teleop          # gaze only (no WASD publish)
agenticros eyes --no-sound           # mute R2D2 chirps
agenticros eyes --no-person-gaze     # skip idle person-follow even if YOLO is present
agenticros up real --eyes            # start eyes after the real-robot stack

See docs/eyes.md for setup, config, sounds, and keyboard teleop.

Gaze

Priority, highest first:

  1. Turning (cmd_vel |angular.z| above the deadzone) — pupils look right on a left turn (+angular.z) and left on a right turn. Recenter when the command stops.
  2. Driving straight (|linear.x| above the deadzone, no turn) — pupils recenter. Person-follow does not run while the robot is moving.
  3. Idle + YOLO already installed — pupils follow a person in the RealSense color frame (largest bounding box, aimed at the head). This moves the painted eyes only; it does not drive the base.
  4. Idle + no person (or no YOLO) — blinks and a slow look-around.

If YOLO is already installed

Person-follow gaze uses the same YOLOv8n detector as follow-me / ros2_find_object. Eyes do not add YOLO as a dependency and do not download yolov8n.onnx. It only runs when:

  • Weights already exist at ~/.agenticros/models/yolov8n.onnx (or AGENTICROS_YOLOV8_MODEL)
  • @agenticros/object-detection (and onnxruntime-node / sharp) are already present from another adapter

Startup log: Person gaze enabled (YOLO) on <camera topic>.

Color topic comes from robot.cameraTopic in ~/.agenticros/config.json (raw Image paths get /compressed appended). Default: /camera/camera/color/image_raw/compressed.

Disable even when YOLO is present:

agenticros eyes --no-person-gaze
agenticros up real --eyes --eyes-no-person-gaze

If YOLO is not installed

Person-follow is skipped. Twist gaze, idle blink / look-around, WASD, and sounds still work. Startup log: Person gaze disabled (YOLO not installed).

Direct run (development)

source /opt/ros/jazzy/setup.bash
cd packages/robot-eyes
pnpm install   # from monorepo root is preferred
pnpm start

Requires Node 18+, ROS 2, a graphical display (DISPLAY) for kiosk mode, and afplay / paplay / aplay for sounds.

License

MIT. The synthesizer in lib/synth.js is adapted from r2d2 under Apache-2.0 (see NOTICE).