Security fix: remove all personal data, rename scripts, anonymize examples

This commit is contained in:
Masahiro Chaen 2026-04-08 00:51:03 +09:00
parent f8d084eae4
commit 2fb60246ff
4 changed files with 28 additions and 26 deletions

View file

@ -58,7 +58,9 @@ echo "--- Counting CLAUDE.md files ---"
CLAUDE_COUNT=0
while IFS= read -r -d '' _f; do
CLAUDE_COUNT=$((CLAUDE_COUNT + 1))
done < <(find "$HOME/work" "$HOME/dev" "$HOME/content" -name "CLAUDE.md" -print0 2>/dev/null)
# Customize these directories to match your folder structure
SEARCH_DIRS=("$HOME/work" "$HOME/dev" "$HOME/content")
done < <(find "${SEARCH_DIRS[@]}" -name "CLAUDE.md" -print0 2>/dev/null)
echo "[$(date '+%F %T')] weekly-sync done: $IC issues, $CLAUDE_COUNT CLAUDE.md files" >> "$LOG"