Agent skill · Business & Finance

stock-analysis

Run comprehensive stock analysis workflows combining fundamental, technical, and sentiment analysis. Use when analyzing individual stocks, generating recommendations, or running batch analysis. Trigger on stock analysis, recommendation, or valuation discussions.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill stock-analysis --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/analysis/stock-analysis/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Stock Analysis Skill Comprehensive stock analysis combining fundamental, technical, and ML-based sentiment analysis. ## Quick Analysis Commands ### Single Stock Analysis ```bash # Run full analysis for a single stock python -c " from backend.services.analysis import StockAnalyzer analyzer = StockAnalyzer() result = analyzer.analyze('AAPL') print(f''' === {result.ticker} Analysis === RECOMMENDATION: {result.recommendation} Confidence: {result.confidence:.1%} Target Price: \${result.target_price:.2f} Fundamental Score: {result.fundamental_score:.2f}/10 Technical Score: {result.technical_score:.2f}/10 Sentiment Score: {result.sentiment_score:.2f}/10 Key Thesis: {result.thesis} Risk Factors: {chr(10).join(f\" - {r}\" for r in result.risk_factors)} ''') " ``` ### Batch Analysis ```bash # Analyze multiple stocks python -c " from backend.services.analysis import BatchAnalyzer analyzer = BatchAnalyzer() results = analyzer.analyze_batch(['AAPL', 'GOOGL', 'MSFT', 'AMZN']) for r in results: print(f'{r.ticker}: {r.recommendation} ({r.confidence:.0%})') " ``` ## Analysis Components ### 1. Fundamental Analysis ```python from backend.analysis.fundamental import FundamentalAnalyzer fa = Fundamen

What's inside
Steps it walks through
  1. Quick Analysis Commands
  2. Single Stock Analysis
  3. Batch Analysis
  4. Analysis Components
  5. 1. Fundamental Analysis
  6. 2. Technical Analysis
  7. 3. Sentiment Analysis
  8. Analysis Pipeline
  9. Recommendation Scoring
  10. Key Metrics Reference
  11. Fundamental Metrics
  12. Technical Signals
  13. Usage Examples
  14. Compare Stocks
Ships with 1 file
  • metadata.json
Commands it runs
Run full analysis for a single stock
python -c "
from backend.services.analysis import StockAnalyzer
analyzer = StockAnalyzer()
result = analyzer.analyze('AAPL')
Target Price: \${result.target_price:.2f}
Fundamental Score: {result.fundamental_score:.2f}/10
Technical Score: {result.technical_score:.2f}/10
Sentiment Score: {result.sentiment_score:.2f}/10
Key Thesis:
More from claude-skill-registry
All skills →
About this skill
What does the stock-analysis skill do?

Run comprehensive stock analysis workflows combining fundamental, technical, and sentiment analysis. Use when analyzing individual stocks, generating recommendations, or running batch analysis. Trigger on stock analysis, recommendation, or valuation discussions.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill stock-analysis --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going