> "To survive the infinite game, one must understand not just price, but Vitality — the mathematical probability of survival."
This skill gives agents the ability to assess the financial health of crypto assets by calling the live Majestify API. It calculates institutional-grade risk metrics and classifies each asset into one of three vitality tiers:
| Tier | Criteria | Agent Recommendation |
|:---|:---|:---|
| 🛡️ IMMORTAL | Sharpe > 1.2, Drawdown < 60% | Treasury / Long-term hold |
| ⚠️ MORTAL | Moderate risk profile | Active management / Growth |
| ☠️ CRITICAL | Drawdown > 80% or Sharpe < -1.0 | Avoid / Hedge |
All metrics are powered by the Crypto Health Hub backend (services.py):
python .agent/skills/immortal/scripts/assess_vitality.py
python .agent/skills/immortal/scripts/assess_vitality.py --coins bitcoin ethereum solana
python .agent/skills/immortal/scripts/assess_vitality.py --api https://crypto-health-hub.onrender.com
python .agent/skills/immortal/scripts/assess_vitality.py --coins bitcoin --days 90
Human-readable output goes to stdout. Machine-readable JSON is emitted to stderr for agent piping:
# Agent can capture JSON like this:
python assess_vitality.py --coins bitcoin 2>results.json
match-free syntax, compatible with 3.10)
urllib from stdlib.
crypto-health-hub.onrender.com)
共 1 个版本