Fix skill frontmatter and simplify distill skill instructions

Replace non-ASCII characters in log and distill-best-practices
frontmatter that silently prevented skill loading. Simplify distill
skill instructions. Update install.sh for new skills.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Paul O'Reilly
2026-03-17 11:15:45 +13:00
parent bc822d9d3c
commit 5a59d463de
4 changed files with 29 additions and 44 deletions

View File

@@ -1,13 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
# Symlink all skills from this repo into ~/.claude/skills/ (personal scope)
# so they're available across all Claude Code projects.
# Symlink all skills from this repo into the active Claude profile's skills/
# directory so they're available across all Claude Code projects.
#
# Uses CLAUDE_CONFIG_DIR if set (active profile), otherwise falls back to ~/.claude.
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
REPO_DIR="$(dirname "$SCRIPT_DIR")"
SKILLS_SRC="$REPO_DIR/skills"
SKILLS_DST="$HOME/.claude/skills"
SKILLS_DST="${CLAUDE_CONFIG_DIR:-$HOME/.claude}/skills"
GREEN='\033[0;32m'
YELLOW='\033[1;33m'