risk-balancing
$
npx mdskill add yogsoth-ai/de-anthropocentric-research-engine/risk-balancingBalances portfolio risk and return using advanced optimization techniques
- Solves portfolio allocation with risk-return trade-offs and stakeholder constraints
- Uses Markowitz, CVaR, Risk Parity, and Kelly criterion methods
- Evaluates candidate outcomes, correlations, and risk tolerance to construct efficient frontiers
- Delivers optimized portfolios that align with defined risk and return objectives
SKILL.md
.github/skills/risk-balancingView on GitHub ↗
---
name: risk-balancing
description: Balance portfolio risk and return using Markowitz mean-variance, CVaR, Risk parity, and Kelly criterion methods.
used-by: portfolio-optimization
---
# Risk Balancing
## Purpose
Construct a portfolio that achieves acceptable returns while managing downside risk, correlation between failures, and tail events. Applies Markowitz-style thinking beyond finance to any domain with uncertain outcomes.
## When to use
- Candidates have uncertain outcomes with estimable distributions
- Correlation between candidate failures matters
- Downside protection is as important as upside
- Stakeholders have explicit risk tolerance levels
## Budget
| Dimension | Target |
|-----------|--------|
| Candidates evaluated | 8-20 |
| Risk factors modeled | 2-5 |
| Correlation pairs assessed | key pairs |
| Efficient frontier points | >=5 |
## State Ledger
| Field | Type | Description |
|-------|------|-------------|
| candidates | list | Candidates with expected return and risk estimates |
| correlation_matrix | matrix | Pairwise correlation of candidate outcomes |
| risk_tolerance | number | Stakeholder risk appetite parameter |
| efficient_frontier | list | Risk-return trade-off curve |
| selected_portfolio | list | Final allocation balancing risk and return |
## Available Tactics
| Tactic | When |
|--------|------|
| pareto-frontier-construction | Building the efficient frontier (risk vs return) |
| scenario-stress-testing | Testing portfolio under adverse scenarios |
## Available SOPs
| SOP | Purpose |
|-----|---------|
| objective-definition | Define risk and return metrics |
| optimization-run | Compute efficient frontier |
| pareto-visualization | Visualize risk-return trade-off |
| selection-from-frontier | Select portfolio matching risk tolerance |
| scenario-construction | Define stress scenarios |
| portfolio-evaluation-per-scenario | Test portfolio under stress |
## Execution Guidance
1. Define risk and return metrics via objective-definition
2. Estimate expected returns, variances, and correlations for candidates
3. Construct efficient frontier via optimization-run
4. Visualize risk-return trade-off via pareto-visualization
5. Select portfolio matching risk tolerance via selection-from-frontier
6. Optionally stress-test via scenario-stress-testing tactic
## Output Format
```yaml
strategy: risk-balancing
selected_portfolio:
- candidate: <name>
allocation_weight: <0-1>
expected_return: <value>
risk_contribution: <value>
portfolio_expected_return: <aggregate>
portfolio_risk: <variance or CVaR>
sharpe_ratio: <risk-adjusted return>
method_used: <mean-variance|CVaR|risk-parity|Kelly>
```
More from yogsoth-ai/de-anthropocentric-research-engine
- abductive-hypothesis-generationStrategy: 面对异常的最佳解释推理
- ablation-brainstormRemove components one by one, observe system changes to reveal hidden dependencies and generate ideas from structural gaps.
- ablation-component-mappingMap system architecture to ablatable units for ablation studies
- ablation-designDesign ablation studies to isolate component contributions in ML systems
- ablation-executionRemove components one by one from a system, record the response/impact of each removal.
- abp-vulnerability-classificationClassify assumptions on 2 axes — load-bearing (how much conclusion depends on it) × vulnerable (how likely to be false). Focuses attention on High-Load × High-Vulnerable quadrant.
- abstraction-extractionExtract abstract principles from concrete domain cases. Strips domain-specific details to reveal transferable mechanisms.
- abstraction-ladderPerform bisociation at multiple abstraction levels
- abstraction-ladderingMove between concrete and abstract framings — 3 levels up (Why?) and 3 levels down (How?) to find the most productive research level.
- abstraction-to-designAbstract biological principle to design principle. Bridge from biology to engineering.