Help us improve
Share bugs, ideas, or general feedback.
From skind-skills
Analyzes US stock SEC filings (10-K/10-Q) with deep research (Gemini or Claude), generating professional investment reports.
npx claudepluginhub skindhu/skind-skills --plugin skind-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/skind-skills:us-stock-researcherThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Institutional-grade deep analysis of US stock SEC filings, outputting professional investment reports.
README.mdfinancial-analysis-framework.mdindustry-analysis-modules.mdmarkdown-formatter-rules.mdprompts/claude-deep-research-protocol.mdprompts/got-research-templates.mdprompts/phase1-filesearch-template.mdprompts/phase1-inline-template.mdprompts/phase2-web-research-template.mdprompts/report-merge-prompt.mdscripts/clean_sec_filing.pyscripts/download_sec_filings.pyscripts/gemini_deep_research.pyscripts/requirements.txtAutomates equity research: downloads concalls and presentations from screener.in, uploads to NotebookLM, generates tailored analysis queries by company and sector, outputs professional PDF deep-dive reports.
Routes broad investment research requests including company briefs, valuation, filings, transcripts, and market data into the appropriate Octagon analyst workflow.
Analyzes 10-K, 10-Q, earnings releases, and proxy statements to extract investment insights from revenue breakdowns, MD&A, risks, and management tone.
Share bugs, ideas, or general feedback.
Institutional-grade deep analysis of US stock SEC filings, outputting professional investment reports.
| Mode | When to Use | Requirements |
|---|---|---|
| Gemini Mode | Default when GEMINI_API_KEY is configured | GEMINI_API_KEY environment variable |
| Claude Native Mode | When no Gemini API or user requests | WebSearch tool access |
Before starting, determine these two paths:
<project_root>: The user's current working directory (where the agent session started). All output files go here.<skill_dir>: The directory containing this SKILL.md file. Use its absolute path to reference scripts.IMPORTANT: Always use absolute paths when running scripts. Never cd into the skill directory.
If user did NOT specify a period, use WebSearch to find the latest filing:
WebSearch: "{company_name} latest 10-K 10-Q SEC filing"
IMPORTANT: Always analyze the MOST RECENT filing by date, regardless of type (10-K or 10-Q).
Example decision logic:
Inform user: "根据搜索,{TICKER} 最新的财报是 {10-K/10-Q}(截至 {period}),将分析该期财报"
python3.11 <skill_dir>/scripts/download_sec_filings.py --ticker <TICKER> --type <10-K|10-Q|6-K> --limit 1 --project-root <project_root>
Output: <project_root>/investment-research/{TICKER}/tmp/sec_filings/cleaned.txt
<skill_dir>/industry-analysis-modules.md<skill_dir>/financial-analysis-framework.md<project_root>/investment-research/<TICKER>/tmp/analysis-framework-YYYY-MM-DD.mdGemini Mode (full two-phase analysis):
python3.11 <skill_dir>/scripts/gemini_deep_research.py \
--input <project_root>/investment-research/<TICKER>/tmp/sec_filings/cleaned.txt \
--prompt <project_root>/investment-research/<TICKER>/tmp/analysis-framework-YYYY-MM-DD.md \
--output-dir <project_root>/investment-research/<TICKER> \
--ticker <TICKER> \
--company <Company Name> \
--phase all
Gemini Mode (local filing analysis only):
python3.11 <skill_dir>/scripts/gemini_deep_research.py \
--input <project_root>/investment-research/<TICKER>/tmp/sec_filings/cleaned.txt \
--prompt <project_root>/investment-research/<TICKER>/tmp/analysis-framework-YYYY-MM-DD.md \
--output-dir <project_root>/investment-research/<TICKER> \
--ticker <TICKER> \
--company <Company Name> \
--phase local
Gemini Mode (web research only, requires local phase output):
python3.11 <skill_dir>/scripts/gemini_deep_research.py \
--input <project_root>/investment-research/<TICKER>/tmp/sec_filings/cleaned.txt \
--prompt <project_root>/investment-research/<TICKER>/tmp/analysis-framework-YYYY-MM-DD.md \
--output-dir <project_root>/investment-research/<TICKER> \
--ticker <TICKER> \
--company <Company Name> \
--phase web \
--phase1-output <project_root>/investment-research/<TICKER>/tmp/phase1-YYYY-MM-DD.md
IMPORTANT: --phase only accepts three values: all, local, web. Do NOT use numeric values like 1 or 2.
Claude Native Mode:
Follow <skill_dir>/prompts/claude-deep-research-protocol.md for complete 7-phase execution.
Format per <skill_dir>/markdown-formatter-rules.md, save to <project_root>/investment-research/{TICKER}/
User Input → Download Filing → Framework Generation → Local: Filing Analysis → Web: Market Research → Integration → Final Report
↓ ↓
(Gemini Deep Research) (Gemini Deep Research)
--phase local): Upload filing via Files API, Gemini analyzes comprehensively--phase web): Web search for competitors, trends, management verification<skill_dir>/prompts/report-merge-prompt.mdUses 7-Phase Deep Research + Graph of Thoughts (GoT) methodology.
For complete execution details, see: <skill_dir>/prompts/claude-deep-research-protocol.md
| Phase | Name | Description |
|---|---|---|
| 1 | Question Scoping | Define goals, download filing |
| 2 | Retrieval Planning | Identify industry, create research plan |
| 3 | Iterative Querying | GoT branches: Financial, Competitive, Industry, Management, Risk |
| 4 | Source Triangulation | Cross-validate findings |
| 5 | Knowledge Synthesis | Structure report per framework |
| 6 | Quality Assurance | Chain-of-Verification |
| 7 | Output Packaging | Format and save |
| Branch | Method | Focus |
|---|---|---|
| A | Read filing | Financial data analysis |
| B | WebSearch | Competitive landscape |
| C | WebSearch | Industry trends |
| D | WebSearch | Management verification |
| E | WebSearch | Risk factors |
| Document | Purpose |
|---|---|
| financial-analysis-framework.md | Base analysis framework |
| industry-analysis-modules.md | Industry-specific modules |
| markdown-formatter-rules.md | Report formatting rules |
| prompts/claude-deep-research-protocol.md | Claude Native 7-phase guide |
| prompts/report-merge-prompt.md | Gemini mode report integration |
<project_root>/investment-research/{TICKER}/
├── tmp/
│ ├── sec_filings/cleaned.txt
│ ├── analysis-framework-YYYY-MM-DD.md
│ ├── phase1-YYYY-MM-DD.md # Local phase (--phase local) output
│ └── phase2-YYYY-MM-DD.md # Web phase (--phase web) output
└── {TICKER}-Investment-Report-YYYY-MM-DD.md