From bb3dbfdb5ae92b55b7e4686e4904995184261232 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Wed, 6 May 2026 12:11:27 -0700 Subject: [PATCH] docs(skill): document discord notify working directory --- plugin/skills/version-bump/SKILL.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugin/skills/version-bump/SKILL.md b/plugin/skills/version-bump/SKILL.md index 3300f9cb..3e6359f3 100644 --- a/plugin/skills/version-bump/SKILL.md +++ b/plugin/skills/version-bump/SKILL.md @@ -48,7 +48,11 @@ description: Automated semantic versioning and release workflow for Claude Code ``` (Runs `node scripts/generate-changelog.js`, which pulls releases from the GitHub API and rewrites `CHANGELOG.md`.) 10. **Sync changelog**: Commit and push the updated `CHANGELOG.md`. -11. **Notify**: `npm run discord:notify vX.Y.Z` if applicable. +11. **Notify**: Run the Discord notification from `~/Scripts/claude-mem/`, where the `.env` with Discord webhook details lives: + ```bash + cd ~/Scripts/claude-mem/ && npm run discord:notify vX.Y.Z + ``` + Do this even when the release worktree does not have a local `.env`. 12. **Finalize**: `git status` — working tree must be clean. ## Checklist @@ -60,4 +64,5 @@ description: Automated semantic versioning and release workflow for Claude Code - [ ] **`npm publish` succeeded and `npm view claude-mem@X.Y.Z version` confirms it** (so `npx claude-mem@X.Y.Z` resolves) - [ ] GitHub release created with notes - [ ] `CHANGELOG.md` updated and pushed +- [ ] Discord notification run from `~/Scripts/claude-mem/` - [ ] `git status` shows clean tree