commit 과 push test

This commit is contained in:
minsung
2026-04-07 20:35:45 +09:00
parent de0ca9876a
commit b20ec32c36
12 changed files with 1826 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Stop 훅: 직전 응답의 토큰 사용량을 프로젝트 누적기에 더한다.
# 실패해도 Claude 응답 흐름을 차단하지 않는다.
set -uo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# __pycache__ 생성 방지 (import 시 .pyc 파일이 hooks 폴더에 생기는 것 방지)
export PYTHONDONTWRITEBYTECODE=1
cat | python3 "$SCRIPT_DIR/aptabase-accumulate.py" 2>/dev/null || true
exit 0