askill - Universal AI Agent Skill Manager for Omarchy
# askill - Universal AI Agent Skill Manager for Omarchy askill installs AI-agent "skills" (the `SKILL.md` packages coding agents use) into one canonical vault, then symlinks every agent harness to it. A single skill works across Claude, Codex, opencode, Pi, Cursor and Windsurf without copying anything by hand. ## Why it exists Each coding agent keeps skills in its own directory, named differently every time: ``` ~/.claude/skills ~/.codex/skills ~/.opencode/skills ~/.pi/skills ~/.cursor/skills ~/.windsurf/skills ``` Installing the same skill into six places is slow and error-prone. askill keeps one copy and symlinks each agent dir to it: ``` ~/.agents/skills/ <- the one real copy, every agent points here ^ symlinked out to each agent path ``` ## Install askill is one bash script. Any install method works. ### 1. Copy it to your PATH (recommended) ```bash install -m 07...