Initial commit with translated description

This commit is contained in:
2026-03-29 13:19:31 +08:00
commit c38a898a3a
11 changed files with 546 additions and 0 deletions

13
scripts/uninstall.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Uninstall stock-watcher skill
set -e
# Remove watchlist directory and files
WATCHLIST_DIR="$HOME/.clawdbot/stock_watcher"
if [ -d "$WATCHLIST_DIR" ]; then
rm -rf "$WATCHLIST_DIR"
echo "Removed watchlist directory: $WATCHLIST_DIR"
fi
echo "Stock watcher skill uninstalled successfully."