Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:07:10 +08:00
commit 169a5fc5cd
99 changed files with 25560 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/bash
# check-attribution.sh
# Determines if Claude Code attribution should be added to git commits
# Returns "yes" if attribution should be added, "no" if it should not
if [ -f CLAUDE.md ]; then
if grep -q "DO NOT ADD AI ATTRIBUTION" CLAUDE.md; then
echo "no"
else
echo "yes"
fi
else
# Default to adding attribution if no CLAUDE.md exists
echo "yes"
fi