abcVideo 플레이어 소스 (client / server / shared / pythonsource / docs / .claude). .gitignore 적용으로 node_modules·storage·samplevideo·미디어 등 대용량 일괄 제외. 103 files, ~964K. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
331 B
Bash
9 lines
331 B
Bash
#!/usr/bin/env bash
|
|
# PostToolUse(Write) 훅: 히스토리 파일 필수 필드 검증
|
|
# 대상: docs/*/history/*.md
|
|
# 필수 항목(소요 시간, Context 사용량) 누락 시 exit 2로 Write 차단
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cat | python3 "$SCRIPT_DIR/guard-history-fields.py"
|