From b12aa792429b62e52db4562d31baf4346b49b1f3 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sat, 3 Jan 2026 11:36:54 -0700 Subject: [PATCH] docs: use $HOME instead of ~ in Makefile examples Replace shell tilde expansion with explicit $HOME environment variable in Makefile example commands for better clarity and consistency across different shell environments. Assisted-by: Kimi K2 Thinking via Crush --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb7d7c7e3cfa27a6b6da5a1ebbc61417d70dddb4..6b33e4ad0ff4db24abf1b5c9a22fdc6f3e1ac252 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,13 @@ make list make all # Install specific skills to Claude Code -SKILL_DIR=~/.claude/skills make authoring-skills formatting-commits +SKILL_DIR=$HOME/.claude/skills make authoring-skills formatting-commits # Remove a specific skill from Amp -make uninstall-authoring-skills SKILL_DIR=~/.config/agents/skills +make uninstall-authoring-skills SKILL_DIR=$HOME/.config/agents/skills # Remove all skills from Codex -make uninstall SKILL_DIR=~/.codex/skills +make uninstall SKILL_DIR=$HOME/.codex/skills ``` ### With symlinks