Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
borghei avatar

Business Investment Advisor

  • 70 installs
  • 451 repo stars
  • Updated July 21, 2026
  • borghei/claude-skills

business-investment-advisor is a skill that screens investment opportunities, analyzes portfolio risk, and generates due-diligence checklists.

About

This skill screens investment opportunities, analyzes portfolio composition and risk, and generates due-diligence checklists. It ships three Python tools that read JSON inputs and output ranked opportunities, risk reports, and scored checklists. It targets business owners, angel investors, and corporate development teams evaluating investments from $50K to $50M.

  • Screens and ranks investment opportunities by ROI, risk, and payback
  • Analyzes portfolio diversification, concentration risk, and sector exposure
  • Generates structured due-diligence checklists with 0-10 scoring

Business Investment Advisor by the numbers

  • 70 all-time installs (skills.sh)
  • Ranked #554 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

business-investment-advisor capabilities & compatibility

Capabilities
investment screening · portfolio analysis · due diligence
Use cases
data analysis · research
Pricing
Free
From the docs

What business-investment-advisor says it does

investment analysis toolkit for screening opportunities, analyzing portfolio composition, and generating due diligence checklists.
SKILL.md
Designed for business owners, angel investors, and corporate development teams evaluating investments from $50K to $50M.
SKILL.md
Analyze portfolio diversification and risk exposure
SKILL.md
npx skills add https://github.com/borghei/claude-skills --skill business-investment-advisor

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs70
repo stars451
Last updatedJuly 21, 2026
Repositoryborghei/claude-skills

What it does

Screen and rank investment opportunities, assess portfolio risk, and run due diligence.

Who is it for?

Business owners, angel investors, and corp-dev teams evaluating investments from $50K to $50M.

Skip if: Executing trades or moving money.

When should I use this skill?

You need to screen investments, analyze a portfolio, or run due diligence on a target.

What you get

Ranked opportunities with scores, a portfolio risk report, and a scored due-diligence checklist.

  • ranked opportunities
  • portfolio risk report
  • due diligence checklist

By the numbers

  • 3 Python tools included
  • designed for $50K to $50M investments
  • due diligence items scored 0-10

Files

SKILL.mdMarkdownGitHub ↗

Business Investment Advisor Skill

Overview

Production-ready investment analysis toolkit for screening opportunities, analyzing portfolio composition, and generating due diligence checklists. Designed for business owners, angel investors, and corporate development teams evaluating investments from $50K to $50M.

Quick Start

# Screen investments by criteria (ROI, risk, payback)
python scripts/investment_screener.py opportunities.json --min-roi 15 --max-payback 36

# Analyze portfolio diversification and risk exposure
python scripts/portfolio_analyzer.py portfolio.json

# Generate due diligence checklist for an investment target
python scripts/due_diligence_checklist.py --type saas --stage series-a --amount 500000

Tools Overview

ToolPurposeInputOutput
investment_screener.pyFilter & rank investmentsJSON with opportunity dataRanked opportunities + scores
portfolio_analyzer.pyPortfolio risk & diversificationJSON with holdingsRisk report + recommendations
due_diligence_checklist.pyDD checklist generationInvestment parametersStructured checklist + scoring

Workflows

Workflow 1: Opportunity Evaluation Pipeline

1. Compile investment opportunities into JSON format (see Common Patterns) 2. Run investment_screener.py with your criteria filters 3. Review ranked results focusing on composite score 4. For top candidates, run due_diligence_checklist.py to generate investigation plan 5. After DD completion, update portfolio model and run portfolio_analyzer.py

Workflow 2: Portfolio Health Check

1. Export current holdings to JSON format 2. Run portfolio_analyzer.py to assess diversification 3. Review concentration risk, sector exposure, and liquidity analysis 4. Use recommendations to identify rebalancing opportunities 5. Screen new opportunities with investment_screener.py to fill gaps

Workflow 3: Due Diligence Sprint

1. Run due_diligence_checklist.py with target parameters 2. Assign checklist items to team members with deadlines 3. Score each item as investigation progresses (0-10) 4. Re-run with --score-file to get weighted DD score 5. Use composite score to support go/no-go decision

Reference Documentation

See references/investment-frameworks.md for detailed frameworks including:

  • Investment scoring methodology
  • Risk assessment matrix
  • Portfolio diversification guidelines
  • Due diligence phase frameworks
  • Industry-specific evaluation criteria

Common Patterns

Pattern: Investment Opportunities JSON

{
  "opportunities": [
    {
      "name": "TechCo SaaS",
      "type": "equity",
      "sector": "technology",
      "stage": "series-a",
      "amount": 250000,
      "expected_roi_pct": 25.0,
      "risk_level": "high",
      "payback_months": 36,
      "revenue": 1200000,
      "revenue_growth_pct": 85.0,
      "gross_margin_pct": 78.0,
      "burn_rate_monthly": 80000,
      "runway_months": 18
    }
  ]
}

Pattern: Portfolio Holdings JSON

{
  "portfolio": {
    "total_invested": 2000000,
    "holdings": [
      {
        "name": "Investment A",
        "type": "equity",
        "sector": "technology",
        "invested": 250000,
        "current_value": 375000,
        "date_invested": "2024-06-15",
        "stage": "series-a",
        "liquidity": "illiquid",
        "status": "active"
      }
    ]
  }
}

Risk Level Definitions

LevelExpected ReturnLoss ProbabilityTypical Payback
Low5-10%< 10%< 24 months
Medium10-20%10-30%24-48 months
High20-40%30-50%36-60 months
Very High40%+> 50%48+ months

Related skills

FAQ

What size investments is it designed for?

It is designed for business owners, angel investors, and corporate development teams evaluating investments from $50K to $50M.

What are the three tools?

investment_screener.py to filter and rank, portfolio_analyzer.py for risk and diversification, and due_diligence_checklist.py to generate checklists.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.