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

yotta-modbus-cli

v1.0.0

Published

Yotta Modbus TCP CLI - 控制 Yotta I/O 模組

Downloads

14

Readme

Yotta Modbus CLI

A Node.js Command Line Interface (CLI) tool for controlling and monitoring Yottacontrol I/O modules via the Modbus TCP protocol.

🤖 AI-Native Ready: This repository includes a SKILL.md file, empowering modern AI Agents (like OpenCode or Claude) to act as your Modbus Engineer. You can ask an AI to "turn on the main light in the office" and it will parse your configuration, discover available channels, and execute the correct Modbus TCP commands automatically.


📦 Installation

Require Node.js 18+

npm install -g yotta-modbus-cli

🚀 Usage

Manage devices and read/write I/O channels directly from your terminal.

1. Device Management

Add your devices. The CLI automatically looks up and configures the I/O specifications (DO/DI/AI/AO counts & addresses) based on the model name.

# Add a device (auto configuration)
yotta add A1869 辦公室 192.168.10.10

# List all devices
yotta list

# Ping devices to check connectivity
yotta ping all

2. Labels and Channels

You can easily assign human-readable names to specific channels instead of using raw channel numbers.

# Set DO0 to "MainLight"
yotta set-label 辦公室 do 0 大燈

# View all channels
yotta channels 辦公室 all

3. Read I/O Status

# Read all I/O statuses
yotta read 辦公室 all 

# Read a specific labeled channel
yotta read 辦公室 大燈

# Read all DI channels
yotta read 辦公室 di

4. Control Outputs

# Turn ON a specific channel (by label or index)
yotta write-do 辦公室 大燈 1

# Turn OFF
yotta write-do 辦公室 大燈 0

# Write to AO (Analog Output)
yotta write-ao 測試設備 0 32768

🛠️ Configuration

Your device settings and channel labels are safely stored locally in: ~/.config/yotta-modbus-cli/config.json

🧠 AI Agent Integration (Tool-as-a-Skill)

For AI Agents, refer to the included SKILL.md. When added to your agent's workspace, it equips the AI with context on how to intelligently use the CLI commands to complete complex automation tasks based on user prompts.

License

MIT