Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:16:51 +08:00
commit 4e8a12140c
88 changed files with 17078 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Stop Claude Code Telemetry Stack
echo "Stopping Claude Code telemetry stack..."
# Navigate to telemetry directory
cd ~/.claude/telemetry || exit 1
# Stop containers
docker compose down
echo "✅ Telemetry stack stopped!"
echo ""
echo "Note: Data is preserved in Docker volumes."
echo "To start again: ./start-telemetry.sh"
echo "To completely remove all data: ./cleanup-telemetry.sh"