An agent skill for managing Omarchy Linux systems using natural language.
This skill enables AI coding agents to configure and manage Omarchy systems. It uses a discovery-based approach - teaching the agent how to find and understand Omarchy's ~145 commands rather than hardcoding documentation that goes stale.
git clone https://github.com/robzolkos/omarchy-skill.git ~/.claude/skills/omarchygit clone https://github.com/robzolkos/omarchy-skill.git ~/.config/opencode/skill/omarchyOnce installed, your agent will automatically use this skill when you ask about Omarchy. Examples:
- "Change my theme to catppuccin"
- "Add a keybinding for Super+E to open file manager"
- "Configure my external monitor"
- "Make the window gaps smaller"
- "Set up night light to turn on at sunset"
- "Show me what omarchy commands are available for bluetooth"
- "Increase waybar height"
- "Change my terminal font"
- Hyprland - Window manager, keybindings, monitors, appearance
- Waybar - Status bar modules and styling
- Walker - App launcher
- Themes - System-wide theming
- Terminals - Alacritty, Kitty, Ghostty
- System - Updates, screenshots, screen recording, power
Instead of exhaustively documenting every command, this skill teaches agents to discover commands dynamically:
# Find all omarchy commands
compgen -c | grep -E '^omarchy-' | sort -u
# Read a command's source
cat $(which omarchy-theme-set)This means the skill stays current as Omarchy evolves.
- omarchy-waybar-skill - Focused skill for Waybar configuration
MIT