TopRank Skills

Home / Claw Skills / Git / GitHub / Librenms
Official OpenClaw rules 54%

Librenms

LibreNMS Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Librenms 技能。 若已安装,则直接安装 Librenms 技能。

Overview

Skill Key
florianbeer/librenms
Author
florianbeer
Source Repo
openclaw/skills
Version
-
Source Path
skills/florianbeer/librenms
Latest Commit SHA
65e3ab4ff5f47f85b3e51f030e105d05f04279d5

Extracted Content

SKILL.md excerpt

# LibreNMS Skill

Monitor network infrastructure via LibreNMS REST API. Read-only monitoring skill for device status, health sensors, port statistics, and alerts.

## Configuration

Create `~/.openclaw/credentials/librenms/config.json`:
```json
{
  "url": "https://librenms.example.com",
  "api_token": "your-api-token-here"
}
```

Or set environment variables:
- `LIBRENMS_URL` — Base URL of your LibreNMS instance
- `LIBRENMS_TOKEN` — API authentication token

## Commands

### Quick Overview
```bash
librenms summary
```
Dashboard view showing total devices, how many are up/down, and active alert count. Use this first to get a quick status overview.

### Device Management
```bash
librenms devices           # List all devices with status, IP, OS, uptime
librenms down             # Show ONLY devices that are down (critical for alerting)
librenms device <hostname> # Detailed info: hardware, serial, location, OS version
```

### Health Monitoring
```bash
librenms health <hostname> # Temperature, CPU, memory, disk usage sensors
librenms ports <hostname>  # Network interfaces with traffic stats
```

### Alerts
```bash
librenms alerts           # Show active/unresolved alerts with severity and timestamps
```

## Usage Patterns

**Daily health check:**
```bash
librenms summary && librenms down && librenms alerts
```

**Investigate specific device:**
```bash
librenms device switch-core-01
librenms health switch-core-01
librenms ports switch-core-01
```

**Quick down-device triage:**
```bash
librenms down | grep -v "UP"
```

## Important Notes

- All operations are **read-only** — no device modifications possible
- The script accepts self-signed certificates (-sk flag for curl)
- Status indicators: ● green = up, ● red = down
- Uptime is formatted as human-readable (days/hours instead of seconds)
- Traffic stats are formatted as KB/MB/GB per second

## Heartbeat Integration

Check infrastructure health periodically:
```bash
# In heartbeat script
if librenms down | grep -q "Device...

README excerpt

# LibreNMS Skill for OpenClaw

Monitor your network infrastructure with LibreNMS REST API integration. Read-only monitoring skill for devices, health sensors, ports, and alerts.

## Features

- 📊 **Dashboard Summary** — Quick overview of all devices, up/down counts, active alerts
- 🖥️ **Device Monitoring** — List all devices with status, uptime, and OS info
- 🚨 **Alert Management** — View active/unresolved alerts with severity levels
- 🌡️ **Health Sensors** — Temperature, CPU, memory, disk usage monitoring
- 🔌 **Port Statistics** — Network interface status and traffic rates
- ⚠️ **Down Device Filter** — Instantly see which devices need attention

## Installation

1. Clone or copy this skill to your OpenClaw skills directory:
   ```bash
   cd ~/.openclaw/skills/
   git clone <this-repo> librenms
   # or copy the librenms/ folder
   ```

2. Install dependencies:
   ```bash
   # Most systems already have these
   sudo apt install curl jq bc  # Debian/Ubuntu
   sudo yum install curl jq bc  # RHEL/CentOS
   brew install curl jq         # macOS
   ```

3. Create configuration file:
   ```bash
   mkdir -p ~/.openclaw/credentials/librenms
   cat > ~/.openclaw/credentials/librenms/config.json << EOF
   {
     "url": "https://librenms.example.com",
     "api_token": "your-api-token-here"
   }
   EOF
   chmod 600 ~/.openclaw/credentials/librenms/config.json
   ```

4. Get your API token:
   - Log into LibreNMS web UI
   - Go to Settings → API Settings
   - Click "Create API Token"
   - Copy the token to your config.json

## Usage

### Quick Start

```bash
# Dashboard overview
librenms summary

# List all devices
librenms devices

# Show only devices that are down
librenms down

# Check active alerts
librenms alerts
```

### Device Details

```bash
# Get detailed info for a specific device
librenms device router-core-01

# Check health sensors (temp, CPU, memory, disk)
librenms health router-core-01

# View port/interface statistics
librenms ports router-core-01
```

### Exa...

Related Claw Skills

0xnyk

xint

★ 49

X Intelligence CLI — search, monitor, analyze, and engage on X/Twitter. TypeScript + Bun. AI agent skill.

heyixuan2

bambu-studio-ai

★ 41

Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).

jackculpan

flightclaw

★ 32

Track flight prices from Google Flights with this OpenClaw skill. Search routes, monitor prices, and get alerts when prices drop.

openclaw-trade

openclaw-trading-assistant

★ 24

openclaw trading assistant| openclaw trading skill | nof1.ai & openclaw [moltbot] collaboration | We get the best practices from alpha arena trading seasons and bring it to clawdbot All top AI agents, realtime monitoring and news research, gather info from private insiders and many other! Using Hyperliquid API.

xquik-dev

x-twitter-scraper

★ 16

X (Twitter) automation skill for AI coding agents. Tweet search, user lookup, follower/following extraction, media download, reply/retweet/quote extraction, 40+ tools, account monitoring & trending topics. REST API, MCP server, HMAC webhooks. Works with Claude Code, Cursor, Codex, Copilot, Windsurf & 40+ agents.

mohsinkhadim59

Openclaw-Setup

★ 8

Step-by-step guides for installing and running OpenClaw, an open-source AI agent, on Mac, Linux VPS, and AWS covering setup, security, messaging channels, Google integration, skills, and monitoring.