#!/usr/bin/env bash
# SessionStart hook for the pstack plugin: prints the pstack dispatch
# mandate to stdout, which Claude Code injects as session context directly.
# A missing context file fails the hook cleanly instead of injecting noise.

set -euo pipefail

exec cat "$(cd "$(dirname "$0")" && pwd)/session-start-context.md"
