From fundamental-analysis
This skill should be used when the user invokes "/fundamental-report" followed by a stock ticker. Generates a comprehensive fundamental analysis research note at summary depth covering all 14 analysis areas with key metrics, signal rating, cross-validation, and investment thesis arguments.
npx claudepluginhub tradeinsight-info/investment-analysis-skills --plugin fundamental-analysisThis skill uses the workspace's default tool permissions.
Generate a comprehensive fundamental analysis research note for a publicly traded company. Orchestrate all analysis skills in parallel, aggregate results, and compile into a structured report.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes multiple pages for keyword overlap, SEO cannibalization risks, and content duplication. Suggests differentiation, consolidation, and resolution strategies when reviewing similar content.
Share bugs, ideas, or general feedback.
Generate a comprehensive fundamental analysis research note for a publicly traded company. Orchestrate all analysis skills in parallel, aggregate results, and compile into a structured report.
Before dispatching parallel tasks, resolve the ticker:
https://www.sec.gov/files/company_tickers.json using the sec-fetch skill (it handles SEC credentials and User-Agent automatically — see data-sources.md)https://stockanalysis.com/stocks/{ticker}/ via WebFetch to get current price, market cap, sector, and exchangeIf the ticker is not found in EDGAR (international company), note this and proceed with Stock Analysis and WebSearch only.
Important: For ALL SEC EDGAR fetches (data.sec.gov, efts.sec.gov, www.sec.gov), use the sec-fetch skill — never WebFetch.
Launch the following as parallel subagents using the Agent tool. Pass the resolved ticker and company metadata to each:
Analysis Skills (14):
Utility Skills (2):
Agent (1):
Total: 17 parallel tasks.
Instruct each skill to provide summary depth output: key metrics in tables with 1-2 sentence interpretation per metric group.
After all 17 parallel results are collected:
Do not announce or enumerate data sources, tools, or fetching details to the user at this stage. Simply compile the results.
Compile all results into the following structure:
Present a quick-reference table at the top of the report:
| Metric | Value |
|--------|-------|
| Price | $XXX.XX |
| Market Cap | $X.XXT |
| P/E (TTM) | XX.X |
| Forward P/E | XX.X |
| EV/EBITDA | XX.X |
| P/FCF | XX.X |
| Revenue Growth (YoY) | XX% |
| EPS Growth (YoY) | XX% |
| ROE | XX% |
| ROIC | XX% |
| Gross Margin | XX% |
| Net Margin | XX% |
| Debt/Equity | X.XX |
| Current Ratio | X.XX |
| FCF Yield | XX% |
| Dividend Yield | XX% |
| TipRanks SmartScore | X/10 |
| Overall Signal | Buy/Hold/Sell |
Present the aggregated rating from the signal-rater agent:
Organize all skill results by tier at summary depth:
Tier 1 — Core Financial:
Tier 2 — Growth & Returns:
Tier 3 — Qualitative:
Include peer comparison table and 10-K summary highlights where relevant.
Present cross-validation results:
Derive 3-5 bull case arguments from the analysis. Focus on:
Derive 3-5 bear case arguments from the analysis. Focus on:
Synthesize the entire analysis into a concise summary. This is what gets displayed in the terminal — the full report is written to file.
## Summary
**[Company Name] ([TICKER])** — **[Overall Signal: Strong Buy / Buy / Hold / Sell / Strong Sell]** (Confidence: [High/Medium/Low])
**Weighted Score:** X.X / 5.0 | **Price:** $XXX.XX | **Market Cap:** $X.XXT
**Thesis:** [2-3 sentence investment thesis synthesizing the key finding from the analysis — what matters most about this company right now and why the signal lands where it does.]
**Key Strengths:**
- [Top bull case point with supporting metric]
- [Second bull case point]
- [Third bull case point]
**Key Risks:**
- [Top bear case point with supporting metric]
- [Second bear case point]
- [Third bear case point]
**Report:** [Full report saved to `reports/YYYY-MM-DD-HH-MM-SS-TICKER.md`]
Compile all URLs referenced throughout the report, grouped by source:
For informational purposes only. Not financial advice. Data sourced from public
filings and third-party websites. Verify critical data points independently
before making investment decisions.
After assembling the full report (Sections 1-9), write it to a markdown file:
reports/YYYY-MM-DD-HH-MM-SS-{TICKER}.md (e.g., reports/2026-03-13-14-30-45-AAPL.md)reports/ directory in the current working directory if it doesn't existConsult ${CLAUDE_PLUGIN_ROOT}/skills/_shared/references/data-sources.md for data fetching instructions and source priority matrix.
Consult ${CLAUDE_PLUGIN_ROOT}/skills/_shared/references/output-format.md for detailed output formatting guidance.