openwrt-config
Installation
SKILL.md
OpenWRT Configuration Management
Overview
This skill provides workflows and reference documentation for managing OpenWRT router configuration via SSH. All configurations use UCI (Unified Configuration Interface) and are applied through SSH commands to the router at <router_ip> (default is typically 192.168.1.1).
Connection
All commands are executed via SSH to the router:
ssh root@<router_ip> "<command>"
For multiple related commands, chain them with &&:
ssh root@<router_ip> "uci set ... && uci commit ... && /etc/init.d/... restart"