From dc18594d76132a9c3df8e271202a714318d49bb0 Mon Sep 17 00:00:00 2001 From: Andrew Yim Date: Sat, 27 Jun 2026 11:41:39 +0900 Subject: [PATCH] =?UTF-8?q?fix(notion-writer):=20correct=20stale=2002?= =?UTF-8?q?=E2=86=9232=20skill=20paths=20after=20dir=20renumber?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 02-notion-writer dir was renumbered to 32-notion-writer, but the skill's SKILL.md (both code + desktop variants) still pointed venv/cd paths at the nonexistent 02 dir, and the slash-command file had a ~/Projects (should be ~/Project) typo. Fixes invocation. Co-Authored-By: Claude Opus 4.8 (1M context) --- .claude/commands/notion-writer.md | 2 +- custom-skills/32-notion-writer/SKILL.md | 4 ++-- custom-skills/32-notion-writer/desktop/SKILL.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.claude/commands/notion-writer.md b/.claude/commands/notion-writer.md index de432d7..a0275aa 100644 --- a/.claude/commands/notion-writer.md +++ b/.claude/commands/notion-writer.md @@ -24,7 +24,7 @@ Push markdown content to Notion pages or databases via the Notion API. ## Scripts ```bash -cd ~/Projects/our-claude-skills/custom-skills/32-notion-writer/code/scripts +cd ~/Project/our-claude-skills/custom-skills/32-notion-writer/code/scripts # Test connection python notion_writer.py --test diff --git a/custom-skills/32-notion-writer/SKILL.md b/custom-skills/32-notion-writer/SKILL.md index 18604b1..4c68ea3 100644 --- a/custom-skills/32-notion-writer/SKILL.md +++ b/custom-skills/32-notion-writer/SKILL.md @@ -11,14 +11,14 @@ Push markdown content to Notion pages or databases via Claude Code. ## Prerequisites -- Python virtual environment at `~/Project/our-claude-skills/custom-skills/02-notion-writer/code/scripts/venv` +- Python virtual environment at `~/Project/our-claude-skills/custom-skills/32-notion-writer/code/scripts/venv` - Notion integration token (preferred: stored in 1Password — see [Credential handling](#credential-handling) below) - Target pages/databases must be shared with the integration in Notion (Database/Page → ⋯ → Connections → add integration) ## Quick Start ```bash -cd ~/Project/our-claude-skills/custom-skills/02-notion-writer/code/scripts +cd ~/Project/our-claude-skills/custom-skills/32-notion-writer/code/scripts source venv/bin/activate ``` diff --git a/custom-skills/32-notion-writer/desktop/SKILL.md b/custom-skills/32-notion-writer/desktop/SKILL.md index 3c74555..5fdd3d0 100644 --- a/custom-skills/32-notion-writer/desktop/SKILL.md +++ b/custom-skills/32-notion-writer/desktop/SKILL.md @@ -11,14 +11,14 @@ Push markdown content to Notion pages or databases via Claude Code. ## Prerequisites -- Python virtual environment at `~/Project/our-claude-skills/custom-skills/02-notion-writer/code/scripts/venv` +- Python virtual environment at `~/Project/our-claude-skills/custom-skills/32-notion-writer/code/scripts/venv` - Notion integration token (preferred: stored in 1Password — see [Credential handling](#credential-handling) below) - Target pages/databases must be shared with the integration in Notion (Database/Page → ⋯ → Connections → add integration) ## Quick Start ```bash -cd ~/Project/our-claude-skills/custom-skills/02-notion-writer/code/scripts +cd ~/Project/our-claude-skills/custom-skills/32-notion-writer/code/scripts source venv/bin/activate ```