From bdd484d5d4e7ed863accc0f14e70967cb23686af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hlav=C3=A1=C4=8Dek?= Date: Mon, 25 May 2026 13:38:05 +0200 Subject: [PATCH] docs: add Skills workflow guidance to CLAUDE.md Consolidate skill-related guidance under a unified ## Skills section. Adds a Skills Workflow note reminding contributors that publishing requires a manifest version bump and that skill renames need explicit user approval. Existing Skill Script Path Conventions become a sibling subsection. --- CLAUDE.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index 0d99c17..c55d2f6 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -8,7 +8,13 @@ When adding new commands, agents, or skills to a plugin: 3. Bump the version in `.claude-plugin/marketplace.json` for the corresponding plugin entry 4. Update the root README.md feature list for the affected plugin (add/remove items from the list) -## Skill Script Path Conventions +## Skills + +### Skills Workflow + +- When creating or modifying skills in the AI kit, remember publishing requires a version bump in the skill manifest. Don't rename skills without explicit user approval. + +### Script Path Conventions - Scripts must detect their own location using `SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"` and derive `SKILL_DIR="$(dirname "$SCRIPT_DIR")"` - Scripts run from the user's **project root**, never from the skill directory