원클릭으로
dcf-valuation
当用户需要计算公司内在价值的时候,使用该DCF(折现现金流)内在价值估算工具。触发词:DCF、折现现金流、内在价值、估值、自由现金流折现、intrinsic value、discounted cash flow、合理股价。触发后自动在浏览器中打开网页计算器。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
当用户需要计算公司内在价值的时候,使用该DCF(折现现金流)内在价值估算工具。触发词:DCF、折现现金流、内在价值、估值、自由现金流折现、intrinsic value、discounted cash flow、合理股价。触发后自动在浏览器中打开网页计算器。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | dcf-valuation |
| description | 当用户需要计算公司内在价值的时候,使用该DCF(折现现金流)内在价值估算工具。触发词:DCF、折现现金流、内在价值、估值、自由现金流折现、intrinsic value、discounted cash flow、合理股价。触发后自动在浏览器中打开网页计算器。 |
Open a web-based two-stage DCF (Discounted Cash Flow) calculator in the user's browser for estimating intrinsic equity value (comparable to market cap).
Trigger when the user wants to estimate intrinsic value or fair value using DCF / discounted cash flow methodology.
When the skill is triggered, IMMEDIATELY start the local HTTP server which auto-opens the calculator in the browser. Do NOT ask questions, do NOT present a text form, do NOT wait for input. Run this command directly in the background:
python3 SKILL_DIR/scripts/server.py
Replace SKILL_DIR with the actual absolute path to this skill's directory.
IMPORTANT:
data/valuations.json.After starting the server, tell the user the calculator is now open in their browser. Mention these key points:
data/valuations.json file (syncs via git)If the user wants to discuss results, run sensitivity analysis, or use the CLI script for programmatic calculations, the Python script is available at:
python3 SKILL_DIR/scripts/dcf.py \
--fcf FCF \
--growth-rate GROWTH_RATE \
--growth-years GROWTH_YEARS \
--terminal-growth-rate TERMINAL_RATE \
--discount-rate DISCOUNT_RATE \
--net-cash NET_CASH \
--currency 'SYMBOL'
Do NOT pass --shares parameter. Output focuses on total equity value (market cap level), not per-share price.
Valuation records are stored in SKILL_DIR/data/valuations.json — a JSON array of valuation entries. This file lives in the git repo so it syncs across devices.
The web calculator's "保存估值" button automatically saves records to data/valuations.json via the local server's API. No manual steps needed.
If the server is not running and the user wants to save, either:
Then read SKILL_DIR/data/valuations.json, append the new entry to the array, and write the file back. Each entry has this structure:
{
"company": "Company Name",
"date": "YYYY-MM-DD",
"currency": "¥",
"inputs": {
"fcf": 993,
"growth_rate": 10,
"growth_years": 10,
"terminal_growth_rate": 3,
"discount_rate": 10,
"net_cash": 1999.8,
"market_cap": 9500
},
"results": {
"equity_value": 12345,
"pv_stage1": 5000,
"pv_terminal": 5345,
"enterprise_value": 10345
}
}
When the user asks to compare companies (e.g., "对比一下腾讯和阿里"), read the JSON file and present the latest valuation for each company in a side-by-side table: company name, FCF, equity value, market cap, overvalued/undervalued percentage.
When the user asks about history for a company (e.g., "腾讯之前估值是多少"), filter entries by company name and show them as a timeline: date, FCF, equity value, and what changed between entries.