Skip to main content
monte-carlo-engine Monte Carlo simulation engine skill for probabilistic modeling, risk quantification, and uncertainty propagation
Ir a la instalación Skills Marketplace Descubre y explora habilidades de IA creadas por la comunidad.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Copiar promptMostrar detalles del prompt Un comando directo omite el prompt de revisión. Revisa el origen antes de ejecutarlo.
npx skills add https://github.com/a5c-ai/babysitter --skill monte-carlo-engineEl comando permanece en una sola línea. Desplázate horizontalmente para revisarlo antes de copiarlo.
¿Prefieres una copia local? Descarga los archivos que SkillsMP tiene disponibles ahora.
Descargar Zip Descargando... Ocupaciones relacionadas SOC
Basado en la clasificación ocupacional SOC
name monte-carlo-engine description Monte Carlo simulation engine skill for probabilistic modeling, risk quantification, and uncertainty propagation allowed-tools ["Read","Write","Glob","Grep","Bash"] metadata {"specialization":"decision-intelligence","domain":"business","category":"simulation","priority":"high","shared-candidate":true,"tools-libraries":["numpy","scipy.stats","pymc","chaospy","SALib"]} graph {"domains":["domain:business-intelligence"],"skillAreas":["skill-area:quantitative-modeling","skill-area:statistical-analysis","skill-area:financial-risk-modeling"],"roles":["role:data-scientist","role:quantitative-analyst","role:risk-analyst"]}
Monte Carlo Engine
Overview
The Monte Carlo Engine skill provides comprehensive probabilistic simulation capabilities for quantifying uncertainty, assessing risk, and propagating variability through complex models. It supports multiple sampling strategies, correlation handling, and statistical analysis of simulation outputs for data-driven decision support.
Capabilities
Random variate generation (normal, triangular, PERT, uniform, lognormal, beta, etc.)
Latin Hypercube Sampling (LHS)
Correlation structure handling (Cholesky decomposition, copulas)
Convergence monitoring and adaptive iteration
Statistical output analysis (mean, variance, percentiles)
Tornado diagram generation
Value at Risk (VaR) and CVaR calculation
Parallel simulation execution
Used By Processes
Monte Carlo Simulation for Decision Support
Strategic Scenario Development
What-If Analysis Framework
Predictive Analytics Implementation
Usage
Distribution Specification
input_variables = {
"revenue" : {
"distribution" : "triangular" ,
"parameters" : {"min" : 800000 , "mode" : 1000000 , "max" : 1500000 }
},
"cost" : {
"distribution" : "normal" ,
"parameters" : {"mean" : 600000 , "std" : 50000 }
},
"market_share" : {
"distribution" : "PERT" ,
"parameters" : {"min" : 0.05 , "mode" : 0.10 , "max" : 0.20 }
},
"unit_price" : {
"distribution" : "uniform" ,
"parameters" : {"min" : 45 , "max" : 55 }
}
}
Correlation Matrix
correlations = {
"variables" : ["revenue" , "cost" , "market_share" ],
"matrix" : [
[1.0 , 0.6 , 0.3 ],
[0.6 , 1.0 , 0.2 ],
[0.3 , 0.2 , 1.0 ]
]
}
Model Function
def profit_model (inputs ):
revenue = inputs["revenue" ]
cost = inputs["cost" ]
profit = revenue - cost
return {"profit" : profit, "margin" : profit / revenue}
Sampling Strategies
Simple Random Sampling : Standard Monte Carlo
Latin Hypercube Sampling : Better coverage with fewer samples
Quasi-Monte Carlo : Low-discrepancy sequences (Sobol, Halton)
Importance Sampling : Focus on tail events
Convergence Monitoring
Running mean and standard deviation
Coefficient of variation convergence
Percentile stability
Adaptive stopping criteria
Input Schema {
"input_variables" : {
"variable_name" : {
"distribution" : "string" ,
"parameters" : "object"
}
} ,
"correlations" : {
"variables" : [ "string" ] ,
"matrix" : "2D array"
} ,
"model" : "function or expression" ,
"simulation_options" : {
"iterations" : "number" ,
"sampling_method" : "random|lhs|quasi_mc" ,
"random_seed" : "number" ,
"parallel" : "boolean" ,
"convergence_threshold" : "number"
} ,
"output_options" : {
"percentiles" : [ "number" ] ,
"risk_metrics" : [ "VaR" , "CVaR" ] ,
"confidence_level" : "number"
}
}
Output Schema {
"summary_statistics" : {
"output_variable" : {
"mean" : "number" ,
"std" : "number" ,
"median" : "number" ,
"min" : "number" ,
"max" : "number" ,
"percentiles" : "object"
}
} ,
"risk_metrics" : {
"VaR" : "number" ,
"CVaR" : "number" ,
"probability_of_loss" : "number"
} ,
"convergence_info" : {
"iterations_run" : "number" ,
"converged" : "boolean" ,
"stability_scores" : "object"
} ,
"raw_results" : "array (optional)" ,
"tornado_data" : "object" ,
"visualization_paths" : [ "string" ]
}
Best Practices
Use at least 10,000 iterations for stable percentile estimates
Apply Latin Hypercube Sampling for efficiency
Validate input distributions with subject matter experts
Include correlations for realistic results
Monitor convergence before accepting results
Perform sensitivity analysis to identify key drivers
Document all distribution assumptions
Integration Points
Receives distributions from Risk Distribution Fitter
Feeds into Sensitivity Analyzer for importance analysis
Supports Value at Risk Calculator for risk metrics
Connects with Decision Tree Builder for decision node valuation
Integrates with Real Options Analyzer for option valuation
Más de este repositorio 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)
assimilate-popular-workflows 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/.