Linux shell basics - navigation, commands, file operations
Executes Linux shell commands for navigation, file operations, and text searching when you need to explore or manipulate the filesystem. Triggers when users request command-line tasks like listing directories, finding files, or searching logs.
/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.
assets/config.yamlassets/schema.jsonreferences/GUIDE.mdreferences/PATTERNS.mdscripts/helper.pyscripts/validate.pyMaster Linux shell fundamentals for efficient command-line usage.
# Navigate and list
cd /var/log
ls -la
# Find files
find / -name "*.log" -mtime -1
# Search in files
grep -r "error" /var/log/