
Fundamentals & Valuation
business-investment-advisor
Business Investment Advisor is a production-ready toolkit for screening opportunities, analyzing portfolio composition, and generating due-diligence checklists for investments sized $50K–$50M.
總覽
Business Investment Advisor is a production-ready toolkit for screening opportunities, analyzing portfolio composition, and generating due-diligence checklists for investments sized $50K–$50M.
Business Investment Advisor is a production-ready toolkit for screening opportunities, analyzing portfolio composition, and generating due-diligence checklists for investments sized $50K–$50M. It provides CLI tools to filter and rank deals by ROI, risk, and payback period, analyze portfolio diversification and concentration risk, and produce structured DD checklists with scoring and investigative tasks. Typical use cases include opportunity screening, portfolio health checks, rebalancing recommendations, and rapid due-diligence sprints for target companies (e.g., SaaS, Series A). Core features include JSON-based inputs/outputs for automation, composite scoring, sector and liquidity analysis, and prescriptive recommendations to close exposure gaps. The skill is aimed at business owners, angel investors, and corporate development teams who need repeatable, auditable investment decision workflows.
Skill.md
這個 Skill 如何運作
Business Investment Advisor is a production-ready toolkit for screening opportunities, analyzing portfolio composition, and generating due-diligence checklists for investments sized $50K–$50M.
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
| Tool | Purpose | Input | Output |
|---|---|---|---|
investment_screener.py | Filter & rank investments | JSON with opportunity data | Ranked opportunities + scores |
portfolio_analyzer.py | Portfolio risk & diversification | JSON with holdings | Risk report + recommendations |
due_diligence_checklist.py | DD checklist generation | Investment parameters | Structured checklist + scoring |
Workflows
Workflow 1: Opportunity Evaluation Pipeline
- Compile investment opportunities into JSON format (see Common Patterns)
- Run
investment_screener.pywith your criteria filters - Review ranked results focusing on composite score
- For top candidates, run
due_diligence_checklist.pyto generate investigation plan - After DD completion, update portfolio model and run
portfolio_analyzer.py
Workflow 2: Portfolio Health Check
- Export current holdings to JSON format
- Run
portfolio_analyzer.pyto assess diversification - Review concentration risk, sector exposure, and liquidity analysis
- Use recommendations to identify rebalancing opportunities
- Screen new opportunities with
investment_screener.pyto fill gaps
Workflow 3: Due Diligence Sprint
- Run
due_diligence_checklist.pywith target parameters - Assign checklist items to team members with deadlines
- Score each item as investigation progresses (0-10)
- Re-run with
--score-fileto get weighted DD score - 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
| Level | Expected Return | Loss Probability | Typical Payback |
|---|---|---|---|
| Low | 5-10% | < 10% | < 24 months |
| Medium | 10-20% | 10-30% | 24-48 months |
| High | 20-40% | 30-50% | 36-60 months |
| Very High | 40%+ | > 50% | 48+ months |
最適合用於
何時使用
Business Investment Advisor is a production-ready toolkit for screening opportunities, analyzing portfolio composition, and generating due-diligence checklists for investments sized $50K–$50M.

01 · 會前準備
準備決策簡報
在投資委員會開會前,把零散證據整理成結構化的論據。

02 · 團隊協作
統一交接標準
讓分析師、投資組合經理與 Agent 產出一致的研究結果。

03 · 即時更新
更新投資邏輯
出現新催化劑、KPI 發布或財報結果後,更新情境假設。
社群回饋
越用越好用。
隨著 Skill 被使用與評審,回饋將顯示在這裡。
探索更多
相關 Skills
查看全部Industry Primer
Analyze an industry's structure, profit pools, key players, supply chain, and regime drivers. Use when starting research on an industry, mapping market structure, or framing sector-level opportunity…
Bear Case Builder
Stress test consensus with bearish counter-narratives, failure modes, and probability-severity analysis. Use when building downside cases, short theses, or risk scenarios against a bullish narrative.
Business Model Comp Matching
Match a company to the right peer set by business model, revenue mix, margin structure, and economics. Use when standard comp sets are misleading or when the user asks for more precise peer selection.