mirror of
https://github.com/LeoYeAI/openclaw-master-skills.git
synced 2026-07-27 22:15:43 +00:00
- Added 175 new high-quality skills across all categories - 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other - Updated all language READMEs and SKILL.md - Weekly update by MyClaw.ai
13 lines
361 B
Python
13 lines
361 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Configuration for stock-watcher skill.
|
|
Centralized configuration to avoid path confusion.
|
|
"""
|
|
import os
|
|
|
|
# Standardized watchlist file path
|
|
WATCHLIST_DIR = os.path.expanduser("~/.clawdbot/stock_watcher")
|
|
WATCHLIST_FILE = os.path.join(WATCHLIST_DIR, "watchlist.txt")
|
|
|
|
# Ensure directory exists
|
|
os.makedirs(WATCHLIST_DIR, exist_ok=True) |