From 3a642fece76480b1580ee5325687b283664dd5e1 Mon Sep 17 00:00:00 2001 From: olekhondera Date: Mon, 16 Feb 2026 11:48:00 +0200 Subject: [PATCH] update: extend commit-docs-reminder hook to include docs/phases-plan.md in synchronization checklist --- .claude/hooks/commit-docs-reminder.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/hooks/commit-docs-reminder.sh b/.claude/hooks/commit-docs-reminder.sh index 223d841..565f422 100755 --- a/.claude/hooks/commit-docs-reminder.sh +++ b/.claude/hooks/commit-docs-reminder.sh @@ -14,7 +14,7 @@ fi if echo "$COMMAND" | grep -qE 'git\s+commit'; then echo "REMINDER: Before committing, verify that .claude/status-update-checklist.md was followed." >&2 echo "If this commit changes project status, audit findings, or phase progress," >&2 - echo "you MUST synchronize: RULES.md, RECOMMENDATIONS.md, README.md, DOCS.md." >&2 + echo "you MUST synchronize: RULES.md, RECOMMENDATIONS.md, README.md, DOCS.md, docs/phases-plan.md." >&2 echo "If this is a code-only change with no status impact, proceed." >&2 fi