From c348c97ea027d97fc0f633e41a35595ec5396fe0 Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Mon, 20 Apr 2026 23:53:04 -0400 Subject: [PATCH] fix(claude): correct oh-my-claudecode skill path to avoid extra nesting Skills were installed at ~/.claude/skills/oh-my-claudecode//SKILL.md but Claude Code expects ~/.claude/skills//SKILL.md. Link the source directly into the skills directory. --- home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home.nix b/home.nix index bb1b6d4..7a70b2d 100644 --- a/home.nix +++ b/home.nix @@ -216,7 +216,7 @@ source = "${caveman}/skills/caveman-help"; recursive = true; }; - home.file.".claude/skills/oh-my-claudecode" = { + home.file.".claude/skills" = { source = "${oh-my-claudecode}/skills"; recursive = true; };