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:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user