From 0b393bafeef9e6359ca6bfe3f12bb686a4aa304f Mon Sep 17 00:00:00 2001 From: Tianzhi Jin Date: Thu, 19 Mar 2026 16:26:03 +0800 Subject: [PATCH] Add project scope location for agent skills --- internal/commands/skill.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/commands/skill.go b/internal/commands/skill.go index 615746e..49adaa5 100644 --- a/internal/commands/skill.go +++ b/internal/commands/skill.go @@ -22,7 +22,8 @@ type SkillLocation struct { } var skillLocations = []SkillLocation{ - {Name: "Agents (Shared)", Path: "~/.agents/skills/fizzy/SKILL.md"}, + {Name: "Agents (Global)", Path: "~/.agents/skills/fizzy/SKILL.md"}, + {Name: "Agents (Project)", Path: ".agents/skills/fizzy/SKILL.md"}, {Name: "Claude Code (Global)", Path: "~/.claude/skills/fizzy/SKILL.md"}, {Name: "Claude Code (Project)", Path: ".claude/skills/fizzy/SKILL.md"}, {Name: "OpenCode (Global)", Path: "~/.config/opencode/skill/fizzy/SKILL.md"},