#!/bin/sh # --- pql plan import --- # Auto-installed by pql init. Replays new changelog files into # pql.db, then re-syncs decisions from decisions/*.md so the # markdown-sourced half stays in step with whatever the merge # brought in. Both ops are idempotent — a no-op merge is a no-op # hook (D-8, D-16). pql plan import 2>/dev/null || true pql decisions sync 2>/dev/null || true # --- end pql ---