Linux system management - packages, services, users
Manages Linux system administration tasks including packages, services, users, and permissions. Use when you need to install software, configure system services, manage users, or modify file permissions on Linux systems.
/plugin marketplace add pluginagentmarketplace/custom-plugin-linux/plugin install custom-plugin-linux@pluginagentmarketplace-linuxThis skill inherits all available tools. When active, it can use any tool Claude has access to.
*-SKILL.mdassets/config.yamlassets/schema.jsonleadership-SKILL.mdpm-SKILL.mdreferences/GUIDE.mdreferences/PATTERNS.mdscripts/validate.pyComprehensive Linux system management including packages, services, and user administration.
# Update system
sudo apt update && sudo apt upgrade -y
# Create new user
sudo useradd -m -s /bin/bash newuser
sudo passwd newuser