investment-council

by vikd1000Verified

A stock picking tool that has 21 legendary investors like Warren Buffet, Peter Lynch, Michael Burry etc debate every stock pick and show you exactly where they agree, and where they don't. The second opinion your investment portfolio actually needs. No API key needed

56
Stars
10
Forks
Python
Language
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/vikd1000/investment-council

Getting Started

Guides for using skills like investment-council.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Investment Council

License: MIT Built for Claude Code Python 3.9+ Investors Not financial advice

Investment Council is a tool that helps you research stocks. You give it a list of stock tickers (like AAPL for Apple) and how much money you have to invest. It then looks at each stock through the eyes of 21 famous investors — people like Warren Buffett and Michael Burry — and tells you what each one would think.

It runs on Claude Code, a tool that lets an AI read and write files on your computer step by step.

This tool does not buy or sell anything for you. It does not need a paid subscription besides Claude Code. It is for learning and research only — not real financial advice.

Consensus score bars and investor × ticker heat map from a sample run

Want to see it in action first? Check out examples/sample-run/. It has a full sample report and an interactive dashboard, built with made-up stock data (the picture above is from it). You can look at that before you run anything yourself.

Why I built this

Most "AI stock picker" tools just give you one opinion. That opinion sounds confident, but it's really just one point of view dressed up to sound smart.

Investment Council does something different. It asks the same question to 21 different investors, each with their own style. One might love a stock. Another might hate it. You get to see all of that — including where they disagree — instead of one flat answer.

The disagreement is actually the useful part. If 5 out of 6 investors like a stock and one doesn't, that tells you something real.

This tool is also not a black box. Every step writes its work to a plain text file before the next step starts. You can open any of these files, read what it decided, change your mind about a piece of it, and the next step will use your correction. Nothing happens in secret.

How it works

The tool runs in six steps, one after another. You can stop and check the work after each step before moving to the next one.

flowchart TD
    Q("`📝 **You fill in**
    setup/questionnaire.md
    tickers, capital, investors`")

    S1["`🐍 **Step 1 - Fetch**
    plain Python, no AI
    pulls real prices and fundamentals, does the math`"]

    subgraph AI["Claude Code takes it from here - one command per step"]
        direction TB
        S2["`**Step 2 - Investor Opinions**
        each of the 21 investors writes what they think`"]
        S3["`**Step 3 - Consensus**
        lines up all opinions side by side, a heat map`"]
        S4["`**Step 4 - Risk Sizing**
        figures out how much of each stock is safe to buy`"]
        S5["`**Step 5 - Decision**
        BUY / ADD / HOLD / SELL / PASS, with reasons`"]
        S2 --> S3 --> S4 --> S5
    end

    OUT("`📊 **Step 6 - Report**
    investment brief and interactive dashboard.html`")

    Q --> S1 --> S2
    S5 --> OUT

    classDef input fill:#0f172a,stroke:#d97757,stroke-width:2px,color:#f9fafb
    classDef data fill:#0f2a1f,stroke:#34d399,stroke-width:2px,color:#f9fafb
    classDef step fill:#1f2937,stroke:#818cf8,stroke-width:1px,color:#f9fafb
    classDef output fill:#1f2937,stroke:#34d399,stroke-width:2px,color:#f9fafb

    class Q input
    class S1 data
    class S2,S3,S4,S5 step
    class OUT output
    style AI fill:transparent,stroke:#374151,color:#9ca3af

You check the work after every step — nothing moves to the next one without you looking first.

The numbers are never made up. Step 1 is a plain Python script. It pulls real numbers (like stock price and profit margin) and does the math itself. The AI never invents a number — it only writes the reasoning in plain English, on top of numbers it was already given.

Quickstart

1. Install the two things you need

pip install -r requirements.txt

2. Fill in your settings

Open setup/questionnaire.md and fill in:

  • TICKERS — the stocks or funds you want to look at
  • CAPITAL — how much money you have to invest
  • INVESTORS — which of the 21 investors to use (or just write all)
  • HOLDINGS (optional) — stocks you already own, if you want advice on those too

3. Pull the real data

python stages/01_fetch/fetch.py

This grabs live prices and numbers from Yahoo Finance. It's free, and you don't need an account or a password.

4. Run the rest in Claude Code

Open this folder in Claude Code. Then type each of these, one at a time, and wait for each to finish:

Run stage 02 — analyst signals
Run stage 03 — consensus
Run stage 04 — risk
Run stage 05 — decision
Run stage 06 — report

After each step, look at what it wrote. If you disagree with anything, change it before you move to the next step.

5. Read your report

Your finished report is here: stages/06_report/output/investment_brief.md. There's also a dashboard.html file in the same folder — open it in any web browser to see it laid out visually.

Want more detail on every step? Read HOW_TO_USE.md.

What makes this more than a simple prompt

Per-ticker detail cards from the dashboard, showing BUY/PASS calls, key metrics, and the bull and bear case for each stock

  • 21 real investor styles, not just names. Each investor has their own scoring rules, based on how they actually think about money. Michael Burry looks for hidden risk. Peter Lynch looks for simple businesses growing faster than people expect.
  • Math and opinions are kept separate. A plain Python script does all the number crunching. The AI only adds the reasoning on top. A checker script (validate.py) makes sure the two never drift apart.
  • It knows about taxes. If you tell it what you already own, it's smart about which account to sell from first, so you don't pay tax you didn't need to. It recognizes both Canadian accounts (TFSA, RRSP, LIRA) and American accounts (401k, IRA, Roth IRA, Brokerage) out of the box — other countries' account types work too, they just default to being treated as taxable until you add them to the list.
  • It pays attention to the bigger picture. It checks current interest rates every time it runs, so investors who care about the economy (like Druckenmiller or Soros) have real numbers to react to, not guesses.

What's in this folder

investment-council/
├── CLAUDE.md                    ← tells the AI how this whole thing works
├── CONTEXT.md                   ← a map of which step does what
├── HOW_TO_USE.md                ← the full, detailed guide
├── setup/questionnaire.md       ← you fill this in before each run
├── _config/
│   ├── investor-personas/       ← the 21 investor styles + 1 fund checker
│   ├── risk-rules.md            ← how much of each stock is safe to buy
│   └── portfolio-rules.md       ← how BUY/SELL/HOLD decisions get made
├── stages/
│   ├── 01_fetch/                ← pulls real data and does the math
│   ├── 02_analyst_signals/      ← each investor's opinion
│   ├── 03_consensus/            ← the heat map of agreement/disagreement
│   ├── 04_risk/                 ← how big each position should be
│   ├── 05_decision/             ← the actual BUY/SELL/HOLD calls
│   └── 06_report/               ← the final report + dashboard
├── archive_run.py               ← saves an old run before you start a new one
└── validate.py                  ← checks nothing has drifted out of sync

What you need

  • Python 3.9 or newer, plus two small packages (pip install -r requirements.txt installs them)
  • Claude Code — no other paid AI subscription needed

Does it work with ChatGPT or other AI tools?

This was built and tested using Claude Code. But it's not tied to Claude in a technical sense — it's really just plain text instructions plus a Python script, so any AI coding tool that can read and write files on your computer (like Cursor, Aider, Windsurf, or OpenAI's Codex CLI) should be able to run it too.

One thing to know: plain ChatGPT in your browser can't run this. It has no way to reach files on your computer.

One small difference you might notice: Step 2 normally has the AI open 21 separate mini-conversations at once (one per investor), which is a Claude Code feature. Other tools may need to go through the investors one at a time instead — that's already explained inside stages/02_analyst_signals/CONTEXT.md.

Please read this

This project is for learning and research only. It does not buy or sell real stocks for you. Nothing it writes is financial advice. Always do your own research, and talk to a real financial advisor before you make investing decisions.

License

MIT — free to use, copy, and change.

Frequently Asked Questions

What is investment-council?

investment-council is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by vikd1000. A stock picking tool that has 21 legendary investors like Warren Buffet, Peter Lynch, Michael Burry etc debate every stock pick and show you exactly where they agree, and where they don't. The second opinion your investment portfolio actually needs. No API key needed. It has 56 GitHub stars.

Is investment-council safe to use?

Yes. investment-council passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install investment-council?

Clone the repository with "git clone https://github.com/vikd1000/investment-council" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is investment-council written in?

investment-council is primarily written in Python. It is open-source under vikd1000 on GitHub, so you can review or fork the full source.

Are there alternatives to investment-council?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh investment-council against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details