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

@@ -3,7 +3,7 @@ name: log
description: >
End-of-session logging. Captures key decisions, gotchas, open questions, and discussion
points into memory/log/ for later reflection. Run before ending a session to preserve
context. Fast and low-friction just run /log.
context. Fast and low-friction -- just run /log.
allowed-tools: Read, Write, Glob, Bash(date *), Bash(ls *), Bash(cat *), Bash(find *), Bash(rm *), Bash(mkdir *)
---
@@ -21,7 +21,7 @@ You are capturing key points from the current session into a structured log file
!`ls -1 memory/log/ 2>/dev/null || echo "No log directory yet"`
### Settings
!`cat settings.yaml 2>/dev/null || cat $CLAUDE_PROJECT_ROOT/projects/claude-foundations/settings.yaml 2>/dev/null || echo "No settings file found using defaults: retention_days=7, warn_unreflected_days=14"`
(Read `~/dev/claude/projects/claude-foundations/settings.yaml` using the Read tool. If not found, use defaults: retention_days=7, warn_unreflected_days=14)
### Reflection state (to check what has been reflected)
!`cat .reflection-state.json 2>/dev/null || echo "No reflection state yet"`