#!/bin/bash # agent-skills session start hook # Injects the using-agent-skills meta-skill into every new session SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" SKILLS_DIR="$(dirname "$SCRIPT_DIR")/skills" META_SKILL="$SKILLS_DIR/using-agent-skills/SKILL.md" if [ -f "$META_SKILL" ]; then CONTENT=$(cat "$META_SKILL") # Output as JSON for Claude Code hook consumption cat <