From 1d1d31385587554895d49ce97c8a45450b3b3b20 Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Thu, 29 Jan 2026 09:25:14 -0500 Subject: [PATCH] Move SKILL.md to skills/fizzy directory Reorganizes the skill file into a dedicated skills folder structure for better organization and consistency with skill installation paths. --- README.md | 2 +- internal/commands/skill.go | 2 +- SKILL.md => skills/fizzy/SKILL.md | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename SKILL.md => skills/fizzy/SKILL.md (100%) diff --git a/README.md b/README.md index 3cb85ca..e985d8f 100644 --- a/README.md +++ b/README.md @@ -473,7 +473,7 @@ fizzy migrate board BOARD_ID --from SOURCE_ACCOUNT --to TARGET_ACCOUNT --include ### Skill Installation -Install the Fizzy skill file ([SKILL.md](SKILL.md)) for use with AI coding assistants like Codex, Claude Code, or OpenCode. +Install the Fizzy skill file ([SKILL.md](skills/fizzy/SKILL.md)) for use with AI coding assistants like Codex, Claude Code, or OpenCode. ```bash fizzy skill diff --git a/internal/commands/skill.go b/internal/commands/skill.go index 589a7d2..8ef9fdc 100644 --- a/internal/commands/skill.go +++ b/internal/commands/skill.go @@ -12,7 +12,7 @@ import ( "github.com/spf13/cobra" ) -const skillSourceURL = "https://raw.githubusercontent.com/robzolkos/fizzy-cli/refs/heads/master/SKILL.md" +const skillSourceURL = "https://raw.githubusercontent.com/robzolkos/fizzy-cli/refs/heads/master/skills/fizzy/SKILL.md" const skillFilename = "SKILL.md" // SkillLocation represents a predefined skill installation location diff --git a/SKILL.md b/skills/fizzy/SKILL.md similarity index 100% rename from SKILL.md rename to skills/fizzy/SKILL.md