investor-panel

investor-panel is a skill for Claude Code from godisego/hot-money. It costs 124 tokens per session (1,356 once invoked), scanned A, a copy of investor-panel, MIT.

A simulated panel of 50 investment styles that evaluates a stock using its financial data and predefined methods.

In plain words
What is it for?
Use it to produce investor signals, scores, confidence levels, verdicts, reasoning, and price estimates from multiple investing perspectives.
Why use it?
It shows how different investing approaches may judge the same stock and makes agreement or disagreement visible.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the stock-deep-analyzer plugin — 4 skills, 15 commands, 1 agent, 1 hook shipped together

Good fit Use it to produce investor signals, scores, confidence levels, verdicts, reasoning, and price estimates from multiple investing perspectives.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/godisego/hot-money/investor-panel
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add godisego/hot-money --skill investor-panel
Clone the repo
git clone --depth 1 https://github.com/godisego/hot-money

Made for: Claude Code.

Or install stock-deep-analyzer, the plugin that ships this one along with the rest of its 4 skills, 15 commands, 1 agent, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for investor-panel

README.md
[![agentmods](https://agentmods.dev/badge/skills/godisego/hot-money/investor-panel/github.svg)](https://agentmods.dev/skills/godisego/hot-money/investor-panel)
Your own site
<a href="https://agentmods.dev/skills/godisego/hot-money/investor-panel"><img src="https://agentmods.dev/badge/skills/godisego/hot-money/investor-panel/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for investor-panel

Your own site · 80×15
<a href="https://agentmods.dev/skills/godisego/hot-money/investor-panel"><img src="https://agentmods.dev/badge/skills/godisego/hot-money/investor-panel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,356 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 86% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00124 $0.01356
Opus 5 $0.00062 $0.00678
Sonnet 5 $0.00025 $0.00271
Haiku 4.5 $0.00012 $0.00136

Measured 12d ago against content hash 8638ac31fa03, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

investor-panel scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

86% identical to investor-panel — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/investor-panel/SKILL.md · 122 lines

How it starts

The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Investor Panel · 50 贤评审团

调用上下文

读取以下输入:

  • .cache/{ticker}/dimensions.json — 19 维评分
  • .cache/{ticker}/raw_data.json — 原始数据
  • scripts/lib/investor_db.py — 50 人元数据
  • scripts/lib/seat_db.py — 22 位游资射程规则

输出:

  • .cache/{ticker}/panel.json — 50 个 Signal + 投票统计

严格输出格式(Pydantic Signal,抄自 ai-hedge-fund)

每个投资者必须返回严格 JSON

{
  "investor_id": "buffett",
  "name": "巴菲特",
  "group": "A",
  "avatar": "avatars/buffett.svg",
  "signal": "bullish | neutral | bearish",
  "confidence": 87,
  "score": 82,
  "verdict": "强烈买入 | 买入 | 关注 | 观望 | 等待 | 回避 | 不达标 | 不适合",
  "reasoning": "1-3 句具体逻辑",
  "comment": "用该投资者语言风格的金句 1-2 句",
  "pass": ["..."],
  "fail": ["..."],
  "ideal_price": 16.20,
  "period": "3-5 年"
}

Confidence 校准规则

  • 85-100:核心方法论硬指标全部命中或全部不命中
  • 60-84:多数命中
  • 30-59:部分命中、需要等待信号
  • 0-29:方法论不适用此股 / 信息不足

执行步骤

Step 1: 加载元数据

from lib.investor_db import INVESTORS, by_group
from lib.seat_db import SEATS, is_in_range

Step 2: 对每位投资者

  1. 取出 fields 白名单
  2. 从 dimensions.json 提取相关字段
  3. 读取该投资者所在 group 的 reference 文件(按需)
  4. 用该投资者的方法论 + 语言样本生成 Signal(Claude 自己生成)
  5. 校验 JSON 合法性

Step 3: 游资射程预过滤(F 组特殊)

对 22 位游资,先用 is_in_range(nickname, ticker_features) 判断是否在射程内:

  • 在射程 → 正常评分
  • 不在射程 → signal: "neutral", verdict: "不适合", confidence: 90, comment: "{nick}的射程是{style},这只票不在风格内。"

Step 4: 汇总投票

{
  "panel_consensus": (bullish_count / 50) * 100,
  "vote_distribution": Counter(verdict for i in investors),
  "signal_distribution": Counter(signal for i in investors),
  "investors": [...]
}

7 大流派详细方法论

按需读取下列 references:

文件 人数
A 经典价值 references/group-a-classic-value.md 6
B 成长投资 references/group-b-growth.md 4
C 宏观对冲 references/group-c-macro-hedge.md 5
D 技术趋势 references/group-d-technical.md 4
E 中国价投 references/group-e-china-value.md 6
F 游资 references/group-f-china-youzi.md 22
G 量化系统 references/group-g-quant.md 3

📚 语料库 (必读)

Read the full file on GitHub · 122 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 122 lines · 124 tokens per session scan A 8638ac31fa03

Subscribe to this mod's changes

investor-panel is a skill published in the GitHub repository godisego/hot-money (2 stars, last pushed 4mo ago), licensed MIT. It adds 124 tokens to every session and 1,356 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to investor-panel, differing in 6 lines, and is treated as a copy.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens

reading-receipt

An image-reading workflow for extracting structured information from receipts, invoices, and hometown-tax donation certificates. It can first extract text from PDFs and otherwise read their images.

kazukinagata/shinkoku · 64 tokens