用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/a5c-ai/babysitter --skill real-options-analyzer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Reference for querying the Atlas knowledge graph through its MCP tools — the SECONDARY enrichment/comparison layer that adds best-practice context to systems you have ALREADY scanned from your real sources (`az`, repos, dirs). Use when you need to look up nodes, edges, kinds, clusters, stats, or wiki pages in Atlas to compare against your real inventory. (atlas graph, query atlas, atlas mcp, search the graph, graph neighbors, atlas record, atlas kinds, enrichment layer)
Atlas turns your STATED NEED into a real systems atlas by SCANNING your actual sources (Azure via `az`, git repos, local dirs) and process/data mining them, THEN enriching against the Atlas knowledge graph. Use this skill when asked to inventory/map your real systems, scan your cloud + repos + directories, mine the real processes or data they contain, or collect their real constraints/gotchas. (atlas, scan my systems, inventory our azure account, map my repos, real systems atlas, process mining, data mining, collect nuances, system discovery)
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable processes, babysitter plugins, and reusable procedural insights. Searches GitHub for SKILL.md files, classifies repos by archetype, and maintains structured research under docs/reference-repos/.
正在显示 SKILL.md
基于 SOC 职业分类
| name | real-options-analyzer |
| description | Real options valuation skill for analyzing strategic flexibility and investment timing decisions |
| allowed-tools | ["Read","Write","Glob","Grep","Bash"] |
| metadata | {"specialization":"decision-intelligence","domain":"business","category":"risk","priority":"lower","tools-libraries":["numpy","scipy","custom implementations"]} |
| graph | {"domains":["domain:business-intelligence"],"skillAreas":["skill-area:financial-modeling","skill-area:quantitative-modeling","skill-area:investment-analysis"],"roles":["role:financial-analyst","role:quantitative-analyst","role:strategic-planner"]} |
The Real Options Analyzer skill provides capabilities for valuing strategic flexibility in investment decisions. It extends traditional NPV analysis by quantifying the value of options to defer, expand, contract, abandon, or switch, enabling better decision-making under uncertainty.
# Define real option
real_option = {
"type": "option_to_expand",
"underlying_project": {
"name": "Manufacturing Plant Phase 1",
"base_npv": 5000000,
"initial_investment": 20000000,
"volatility": 0.35, # annual volatility of project value
"dividend_yield": 0.03 # cash flow yield
},
"option_characteristics": {
"expansion_cost": 15000000,
"expansion_factor": 1.5, # 50% capacity increase
"exercise_window": {"start_year": 2, "end_year": 5},
"option_type": "American" # can exercise anytime in window
},
"risk_free_rate": 0.05
}
# Binomial tree configuration
binomial_config = {
"method": "binomial_tree",
"parameters": {
"steps": 50,
"up_factor": "calculated", # u = exp(sigma * sqrt(dt))
"down_factor": "calculated", # d = 1/u
"risk_neutral_probability": "calculated"
},
"outputs": {
"option_value": True,
"optimal_exercise_boundary": True,
"tree_visualization": True
}
}
# Black-Scholes configuration
bs_config = {
"method": "black_scholes",
"parameters": {
"current_value": 25000000, # S: current project value
"exercise_price": 15000000, # K: investment to exercise
"time_to_expiry": 3, # T: years
"volatility": 0.35, # sigma
"risk_free_rate": 0.05, # r
"dividend_yield": 0.03 # q: continuous cash flow yield
},
"option_type": "call" # expansion = call, abandonment = put
}
# Monte Carlo for path-dependent options
monte_carlo_config = {
"method": "monte_carlo",
"simulations": 50000,
"path_model": {
"type": "geometric_brownian_motion",
"parameters": {
"drift": 0.08,
"volatility": 0.35
}
},
"exercise_strategy": "least_squares_monte_carlo", # LSM for American options
"basis_functions": ["laguerre", 3] # polynomial basis
}
| Option Type | Description | Analogy |
|---|---|---|
| Defer | Wait for better information | Call option |
| Expand | Increase scale if successful | Call option |
| Contract | Reduce scale if unfavorable | Put option |
| Abandon | Exit and recover salvage | Put option |
| Switch | Change inputs/outputs | Portfolio of options |
| Compound | Option on an option | Sequential investment |
| Rainbow | Multiple sources of uncertainty | Multi-asset option |
{
"option_type": "defer|expand|contract|abandon|switch|compound",
"underlying_project": {
"current_value": "number",
"volatility": "number",
"dividend_yield": "number"
},
"option_terms": {
"exercise_price": "number",
"time_to_expiry": "number",
"exercise_type": "European|American"
},
"valuation_method": "binomial|black_scholes|monte_carlo",
"parameters": "object",
"sensitivity_analysis": {
"variables": ["volatility", "time", "value"
{
"option_value": "number",
"expanded_npv": "number",
"static_npv": "number",
"flexibility_value": "number",
"greeks": {
"delta": "number",
"gamma": "number",
"vega": "number",
"theta": "number",
"rho": "number"
},
"exercise_boundary": {
"time": ["number"],
"critical_value": ["number"]
},
"sensitivity"
Expanded NPV = Static NPV + Option Value
Decision Rule: