
Cli Anything Rms
- 342 installs
- 46.6k repo stars
- Updated August 3, 2026
- hkuds/cli-anything
cli-anything-rms is a Python CLI that manages Teltonika RMS devices via the RMS REST API for developers who need to list, inspect, and update routers and IoT gateways from scripts and terminals.
About
cli-anything-rms is a Python CLI harness for Teltonika RMS (Remote Management System) device management and monitoring. cli-anything-rms authenticates via an `RMS_API_TOKEN` environment variable or a CLI config command, then calls the RMS REST API to operate on routers, gateways, and IoT devices. cli-anything-rms is used to list devices with filters (status, tag, pagination), fetch device details, and perform updates in a repeatable way that can be scripted in CI jobs or operational runbooks. Developers reach for cli-anything-rms when they need terminal-first fleet visibility and automation without building a custom dashboard client for every operational task.
- Standardized CLI schema for RMS operations
- Agent-safe argument and output contracts
- Composable with other cli-anything scientific wrappers
- Supports automated structural comparison loops
- Reduces bespoke shell glue in agent workflows
Cli Anything Rms by the numbers
- 342 all-time installs (skills.sh)
- +12 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #163 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/hkuds/cli-anything --skill cli-anything-rmsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 342 |
|---|---|
| repo stars | ★ 46.6k |
| Last updated | August 3, 2026 |
| Repository | hkuds/cli-anything ↗ |
How do I manage Teltonika RMS devices from CLI?
Wrap RMS structural-alignment or deviation workflows as a standardized CLI so coding agents can compare conformations, score fits, and chain results into chemistry or bio pipelines.
Who is it for?
Developers and SREs automating Teltonika RMS fleet operations via scripts and terminals.
Skip if: Teams that do not use Teltonika RMS or do not have RMS API access.
When should I use this skill?
Invoke when a developer needs a CLI for Teltonika RMS REST API device listing, inspection, or updates.
What you get
CLI command outputs for device lists and device details, plus device update operations executed via the RMS REST API.
- device list output
- device detail output
- device update operations
Files
cli-anything-rms
CLI harness for Teltonika RMS (Remote Management System). Manage routers, gateways, and IoT devices via the RMS REST API.
Installation
pip install git+https://github.com/HKUDS/CLI-Anything.git#subdirectory=rms/agent-harnessAuthentication
Set RMS_API_TOKEN environment variable or run cli-anything-rms config set api_token <token>.
Command Groups
devices
devices list [--status online|offline] [--tag TAG] [--limit N] [--offset N] [--sort FIELD]— List devicesdevices get <device_id>— Get device detailsdevices update <device_id> [--name NAME] [--tag TAG]— Update devicedevices delete <device_id>— Delete device
companies
companies list [--limit N] [--offset N]— List companiescompanies get <company_id>— Get company detailscompanies create --name NAME— Create companycompanies update <company_id> [--name NAME]— Update companycompanies delete <company_id>— Delete company
users
users list [--limit N] [--offset N]— List usersusers get <user_id>— Get user detailsusers invite --email EMAIL [--role ROLE]— Invite userusers update <user_id> [--role ROLE]— Update userusers delete <user_id>— Delete user
tags
tags list [--limit N] [--offset N]— List tagstags get <tag_id>— Get tag detailstags create --name NAME— Create tagtags update <tag_id> [--name NAME]— Update tagtags delete <tag_id>— Delete tag
alerts
alerts list [--device DEVICE_ID] [--limit N] [--offset N]— List alertsalerts get <alert_id>— Get alert detailsalerts delete <alert_id>— Delete alertalerts configs list— List alert configurationsalerts configs get <config_id>— Get alert configalerts configs create --data JSON— Create alert configalerts configs update <config_id> --data JSON— Update alert configalerts configs delete <config_id>— Delete alert config
configs
configs list [--device DEVICE_ID] [--limit N] [--offset N]— List device configurationsconfigs get <config_id>— Get configurationconfigs update <config_id> --data JSON— Update configuration
remote-access
remote-access list [--device DEVICE_ID] [--limit N]— List sessionsremote-access get <session_id>— Get session detailsremote-access create --device DEVICE_ID [--protocol PROTO] [--port PORT]— Create sessionremote-access delete <session_id>— Delete session
logs
logs list [--device DEVICE_ID] [--limit N] [--offset N]— List logslogs get <log_id>— Get log detailslogs delete <log_id>— Delete log
location
location get <device_id>— Get current device locationlocation history <device_id> [--limit N] [--offset N]— Location history
credits
credits list [--limit N] [--offset N]— List creditscredits transfer --code CODE— Transfer creditscredits codes [--limit N]— List transfer codes
files
files list [--limit N] [--offset N]— List filesfiles get <file_id>— Get file detailsfiles upload <file_path>— Upload filefiles delete <file_id>— Delete file
reports
reports list [--limit N] [--offset N]— List reportsreports get <report_id>— Get reportreports create --template TEMPLATE_ID [--name NAME]— Create reportreports delete <report_id>— Delete reportreports templates list— List report templates
hotspots
hotspots list [--device DEVICE_ID] [--limit N]— List hotspotshotspots get <hotspot_id>— Get hotspot detailshotspots create --device DEVICE_ID --name NAME— Create hotspothotspots update <hotspot_id> [--name NAME]— Update hotspothotspots delete <hotspot_id>— Delete hotspot
passwords
passwords get <device_id>— Get device passwordpasswords update <device_id> --password PASSWORD— Update passwordpasswords update <device_id> --password-stdin— Update password (reads from stdin, safer)
smtp
smtp list [--limit N] [--offset N]— List SMTP configssmtp get <config_id>— Get SMTP configsmtp create --host HOST [--port PORT] [--username USER] [--password PASS]— Create SMTP configsmtp update <config_id> [--host HOST] [--port PORT]— Update SMTP configsmtp delete <config_id>— Delete SMTP config
auth
auth test— Test API connectivityauth status— Show current auth info
config
config set <key> <value>— Set configuration (api_token, default_limit)config get [key]— Show configurationconfig delete <key>— Delete configurationconfig path— Show config file path
Examples
# List all online devices
cli-anything-rms devices list --status online
# Get device details as JSON
cli-anything-rms --json devices get 12345
# Check alerts for a specific device
cli-anything-rms alerts list --device 12345
# Interactive mode
cli-anything-rmsRelated skills
How it compares
Pick this when you need scriptable RMS REST API access from a terminal rather than manual clicks in a web console.
FAQ
How does cli-anything-rms authenticate?
cli-anything-rms authenticates using an API token for Teltonika RMS. cli-anything-rms supports setting `RMS_API_TOKEN` as an environment variable or storing the token through a CLI config command so scripts can run non-interactively.
What operations are available in cli-anything-rms?
cli-anything-rms exposes device-focused commands for fleet operations. cli-anything-rms includes a `devices` command group with actions like list, get details, and update, which map to common RMS REST API device workflows.