skills/network-manager/SKILL.md
Manage network: WiFi, interfaces, connections, DNS, firewall, VPN. Diagnose connectivity issues. Configure networking declaratively via NixOS.
npx skillsauth add bolivian-peru/os-moda network-managerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You manage all networking through a combination of NixOS config and runtime tools.
When the user reports network issues:
ip -j addr, ip -j linkss -tlnp (listening), ss -tnp (established)nft list rulesetresolvectl statusjournalctl -u NetworkManager -n 50nmcli dev wifi listnmcli dev wifi connect <SSID> password <pass>nmcli general statusManage through networking.firewall in configuration.nix:
networking.firewall.allowedTCPPortsnetworking.firewall.allowedUDPPortsConfigure through NixOS:
networking.nameserversservices.resolved.enableStore network events and resolutions in memory for future reference. Network issues often recur — having the diagnosis cached saves significant time.
testing
Generate a concise daily infrastructure briefing. Covers: service health, resource usage, security events, overnight incidents, and cost tracking. Designed for Telegram/chat delivery.
devops
Multi-perspective risk analysis using structured persona debate before deploying changes
development
Build software via spec-driven development (github/spec-kit). Whenever the user asks for a feature larger than a one-line tweak, scaffold a spec-kit project, capture WHAT + WHY, declare tech stack, break into tasks, then iterate the implementation until tests pass.
development
Manage NixOS packages declaratively. Search, install (via configuration.nix rebuild), remove, rollback, and list generations. Understands the NixOS declarative model.