โ† All skills
Tencent SkillHub ยท Developer Tools

Node Red Manager

Manage Node-RED instances via Admin API or CLI. Automate flow deployment, install nodes, and troubleshoot issues. Use when user wants to "build automation", "connect devices", or "fix node-red".

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage Node-RED instances via Admin API or CLI. Automate flow deployment, install nodes, and troubleshoot issues. Use when user wants to "build automation", "connect devices", or "fix node-red".

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, assets/flows/watchdog.json, references/admin-api.md, requirements.txt, scripts/nr_api.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Setup

Copy .env.example to .env. Set NODE_RED_URL, NODE_RED_USERNAME, and NODE_RED_PASSWORD in .env. The script automatically handles dependencies on first run.

Infrastructure

Stack Location: deployments/node-red Data Volume: deployments/node-red/data Docker Service: mema-node-red URL: https://flow.glassgallery.my.id

Flow Management

# List all flows scripts/nr list-flows # Get specific flow by ID scripts/nr get-flow <flow-id> # Deploy flows from file scripts/nr deploy --file assets/flows/watchdog.json # Update specific flow scripts/nr update-flow <flow-id> --file updated-flow.json # Delete flow scripts/nr delete-flow <flow-id> # Get flow runtime state scripts/nr get-flow-state # Set flow runtime state scripts/nr set-flow-state --file state.json

Backup & Restore

# Backup all flows to file scripts/nr backup scripts/nr backup --output my-backup.json # Restore flows from backup scripts/nr restore node-red-backup-20260210_120000.json

Node Management

# List installed nodes scripts/nr list-nodes # Install node module scripts/nr install-node node-red-contrib-http-request # Get node information scripts/nr get-node node-red-contrib-http-request # Enable/disable node scripts/nr enable-node node-red-contrib-http-request scripts/nr disable-node node-red-contrib-http-request # Remove node scripts/nr remove-node node-red-contrib-http-request

Runtime Information

# Get runtime settings scripts/nr get-settings # Get runtime diagnostics scripts/nr get-diagnostics

Context Management

# Get context value scripts/nr get-context flow my-key scripts/nr get-context global shared-data # Set context value scripts/nr set-context flow my-key '"value"' scripts/nr set-context global counter '42' scripts/nr set-context global config '{"key": "value"}'

Docker Operations

# Restart Node-RED cd deployments/node-red && docker compose restart # View logs docker logs mema-node-red --tail 100 # Follow logs docker logs -f mema-node-red

Environment Variables

NODE_RED_URL: Node-RED API endpoint (default: http://localhost:1880) NODE_RED_USERNAME: Admin username NODE_RED_PASSWORD: Admin password Legacy variable names (NR_URL, NR_USER, NR_PASS) are supported for backward compatibility.

API Reference

See references/admin-api.md for complete Admin API endpoint documentation.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts1 Config1 Files
  • SKILL.md Primary doc
  • references/admin-api.md Docs
  • scripts/nr_api.py Scripts
  • assets/flows/watchdog.json Config
  • requirements.txt Files