π¦ ClawHub
Chairman Daily Brief
by @buxibuxi
Exclusive morning and evening briefing skill for listed company chairmen. Provides daily briefings from an executive decision-making perspective, covering st...
π‘ Examples
Generate Morning Report
# Single company morning report
node scripts/chairman_daily.mjs morning --symbol 600519.SS --company "Kweichow Moutai"Multi-company morning report (portfolio view)
node scripts/chairman_daily.mjs morning --watchlist holdingsWith industry focus
node scripts/chairman_daily.mjs morning --symbol 002594.SZ --industry "New Energy Vehicles"
Generate Evening Report
# Single company evening report
node scripts/chairman_daily.mjs evening --symbol 0700.HK --company "Tencent Holdings"Full review (with competitor analysis)
node scripts/chairman_daily.mjs evening --symbol 000858.SZ --competitors 000568.SZ,000596.SZSummary mode (key information only)
node scripts/chairman_daily.mjs evening --symbol AAPL --format summary
Manage Watchlist
# Add company to watchlist
node scripts/chairman_daily.mjs watch --action add --symbol 600519.SS --company "Kweichow Moutai" --role selfAdd competitor
node scripts/chairman_daily.mjs watch --action add --symbol 002594.SZ --company "BYD" --role competitor --peer-group "New Energy Vehicles"View watchlist
node scripts/chairman_daily.mjs watch --action listRemove from watchlist
node scripts/chairman_daily.mjs watch --action remove --symbol 600519.SS
OpenClaw Cron Job Setup
# Morning briefing schedule (weekdays 8:00 AM)
openclaw cron add \
--name "Chairman Morning Brief" \
--cron "0 8 * * 1-5" \
--tz Asia/Shanghai \
--session isolated \
--message "Run chairman-daily-brief to generate morning report: node scripts/chairman_daily.mjs morning --watchlist holdings" \
--channel feishu \
--to Evening briefing schedule (weekdays 3:35 PM)
openclaw cron add \
--name "Chairman Evening Brief" \
--cron "35 15 * * 1-5" \
--tz Asia/Shanghai \
--session isolated \
--message "Run chairman-daily-brief to generate evening report: node scripts/chairman_daily.mjs evening --watchlist holdings" \
--channel feishu \
--to
TERMINAL
clawhub install chairman-daily-brief