Linux system architecture - processes, memory, storage, kernel
View on GitHubpluginagentmarketplace/custom-plugin-linux
custom-plugin-linux
January 20, 2026
Select agents to install to:
npx add-skill https://github.com/pluginagentmarketplace/custom-plugin-linux/blob/main/skills/architecture/SKILL.md -a claude-code --skill architectureInstallation paths:
.claude/skills/architecture/# Architecture Skill ## Overview Understanding Linux system architecture including processes, memory, and kernel internals. ## Capabilities - **Processes**: fork, exec, signals - **Memory**: Virtual memory, paging, swap - **Storage**: Block devices, filesystems - **Kernel**: Modules, syscalls, interrupts - **Boot**: GRUB, initramfs, systemd ## Examples ```bash # View process tree pstree -p # Check memory usage free -h cat /proc/meminfo # List kernel modules lsmod ```