agentsclimarketplace

Super hedge fund skill

Skill StanleyChanH/super-hedge-fund-skill/super-hedge-fund-skill

Claude Code Skill that transforms Claude into a multi-agent hedge fund analyst with 8 AI agents for comprehensive stock analysis

Install
npx -y skills add StanleyChanH/super-hedge-fund-skill --skill super-hedge-fund-skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Multi-agent stock analysis system with Claude-powered investor personas. Use when user mentions stock tickers (AAPL, TSLA, NVDA, GOOGL, MSFT), asks about stock analysis/investment decisions/trading signals, or uses keywords like stock analysis, investment decision, trading advice, hedge fund, bullish/bearish. Triggers on stock ticker symbols and investment-related questions.

SKILL.md

3.3 KB, as published. Nobody here has run it

Super Hedge Fund Skill

Multi-agent stock analysis system combining rule-based analytics with Claude-powered investor personas.

⚠️ Educational purposes only - NOT investment advice

Workflow

digraph workflow {
    rankdir=TB;
    node [shape=box, style="filled,rounded", fillcolor="#f0f0f0"];

    input [label="1. Parse Input\nExtract tickers"];
    data [label="2. Fetch Data\nPrice/Financials/News"];
    agents [label="3. Run Agents\nRule + Claude"];
    risk [label="4. Risk Analysis\nVolatility/Position"];
    output [label="5. Generate Report\nMarkdown"];

    input -> data -> agents -> risk -> output;
}

Agents Quick Reference

AgentTypeFocus
FundamentalRuleROE, margins, debt, growth
TechnicalRuleEMA, RSI, MACD, momentum
ValuationRuleDCF, Owner Earnings
SentimentRule+ClaudeNews, insider trades
BuffettClaudeMoat, ROE, intrinsic value
WoodClaudeDisruptive tech, growth
BurryClaudeDeep value, contrarian
LynchClaudePEG, understandable biz

Execution

Step 1: Parse Input

Extract: ticker symbols, date range, capital
Mode: full (default) or brief

Step 2: Fetch Data

Use WebSearch for:
- Current price & 52-week range
- Financial metrics (ROE, P/E, margins, debt)
- Recent news headlines

Step 3: Run Agents

Rule-based (deterministic):
- Fundamental analysis → signal + confidence
- Technical analysis → signal + confidence
- Valuation analysis → signal + confidence

Claude-powered (interpretive):
- For each investor persona, analyze with their philosophy
- Return: {signal, confidence, reasoning}

Step 4: Risk Analysis

Calculate: annual volatility from price data
Determine: risk level → position limit
  - Low (<15%): 25% max
  - Medium (15-30%): 20% max
  - High (30-50%): 15% max
  - Very High (>50%): 10% max

Step 5: Aggregate & Output

Count signals: bullish / bearish / neutral
Determine consensus by majority
Generate Markdown report

Signal Icons

SignalIcon
Bullish🟢
Bearish🔴
Neutral🟡

Common Mistakes

MistakeFix
Giving real investment adviceAlways add disclaimer
Missing data errorsUse fallback estimates
Single-agent relianceMust aggregate 8+ signals
Overconfident signalsShow confidence %, acknowledge uncertainty

References

  • references/investor-agents.md - Investor persona prompts and frameworks
  • references/analysis-methods.md - Detailed scoring and calculation methods
  • assets/report-template.md - Markdown report template

Scripts

  • scripts/analysts.py - Rule-based analyst implementations
  • scripts/investor_prompts.py - Claude investor persona prompts
  • scripts/report_generator.py - Markdown report generation
  • scripts/data_fetcher.py - Data fetching utilities

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.