Files

21 lines
689 B
Bash
Raw Permalink Normal View History

2026-02-15 14:28:13 -08:00
#!/bin/bash
# agent-skills session start hook
# Injects the using-agent-skills meta-skill into every new session
2026-02-15 14:28:13 -08:00
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILLS_DIR="$(dirname "$SCRIPT_DIR")/skills"
META_SKILL="$SKILLS_DIR/using-agent-skills/SKILL.md"
2026-02-15 14:28:13 -08:00
if [ -f "$META_SKILL" ]; then
CONTENT=$(cat "$META_SKILL")
# Output as JSON for Claude Code hook consumption
cat <<EOF
{
"priority": "IMPORTANT",
"message": "agent-skills loaded. Use the skill discovery flowchart to find the right skill for your task.\n\n$CONTENT"
2026-02-15 14:28:13 -08:00
}
EOF
else
echo '{"priority": "INFO", "message": "agent-skills: using-agent-skills meta-skill not found. Skills may still be available individually."}'
2026-02-15 14:28:13 -08:00
fi