Run a full equity research report on a stock by executing three local scripts with uv run. Read this skill file for exact commands. Do NOT use sessions_spawn...
stock-price-checker-prostock-fundamentalsmarket-news-briefThis skill orchestrates three sub-skills. Run all three commands for the same ticker, then synthesize the results into a unified report.
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py <TICKER>
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py <TICKER>
# For US-listed stocks
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py US
# For German/European stocks (e.g. RHM.DE, SAP.DE, ASML.AS)
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py EUROPE
# For Japanese stocks (e.g. 7203.T)
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py JAPAN
# For Korean stocks (e.g. 005930.KS)
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py SOUTH_KOREA
⚠️
market-news-brieftakes a market scope word (US,EUROPE,ASIA,GLOBAL,UK,GERMANY,NETHERLANDS,JAPAN,SOUTH_KOREA). Do NOT pass a bare company ticker likeAAPLorRHM.DE— it will error. UseUSfor US-listed equities,EUROPEfor European stocks,GLOBALfor a worldwide macro backdrop.
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py AAPL
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py AAPL
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py US
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py RHM.DE
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py RHM.DE
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py EUROPE
uv run /root/.openclaw/workspace/skills/stock-price-checker-pro/src/main.py NVDA
uv run /root/.openclaw/workspace/skills/stock-fundamentals/src/main.py NVDA
uv run /root/.openclaw/workspace/skills/market-news-brief/src/main.py US
After running all three commands, synthesize the results into a structured report:
uv run internally — no manual pip install or environment setup needed..sh wrapper scripts — call uv run src/main.py directly as shown in the examples.uv run reads the inline # /// script dependency block in each main.py and auto-installs yfinance — no pip or venv setup needed.ZIP package — ready to use