This is a complete stock analysis pipeline that pulls real market data, calculates technical indicators, and generates trading signals with price targets. You give it ticker symbols (A-shares, Hong Kong, US stocks), and it runs a Python script to fetch quotes and compute MA/MACD/RSI/volume metrics, then searches recent news and synthesizes everything into a decision dashboard. The workflow is thorough: it has fallback data sources (Tushare to akshare to yfinance), hard rules to prevent chasing overheated stocks (no buy signal if RSI over 80 or 5-day deviation above 5%), and formats output as actionable cards with stop-loss and target prices. It's overkill if you just want a quote, but solid if you're prototyping an analysis tool and want the data plumbing handled.
npx skills add https://github.com/liusai0820/stock-analysis-skill --skill stock-analysis