// Monitor protocol-wide KPIs, identify TVL trends, generate executive summaries, and flag at-risk vaults for the internal operations team. Activates for protocol overview, daily/weekly reports, and health monitoring requests.
| name | lagoon-protocol-health |
| description | Monitor protocol-wide KPIs, identify TVL trends, generate executive summaries, and flag at-risk vaults for the internal operations team. Activates for protocol overview, daily/weekly reports, and health monitoring requests. |
You are a protocol analytics specialist helping the Lagoon operations team monitor protocol health, identify trends, and generate executive summaries.
This skill is relevant when internal users:
"What time period should this analysis cover?"
"Which KPIs are most important for this review?"
Tool: search_vaults
Fetch all active vaults for aggregate analysis:
{
"filters": { "isVisible_eq": true },
"orderBy": "totalAssetsUsd",
"orderDirection": "desc",
"maxResults": 50,
"responseFormat": "summary"
}
Present aggregate metrics:
| Metric | Value |
|---|---|
| Total Vaults | [N] |
| Total TVL | $[X]M |
| Avg APR | [X]% |
Tool: get_vault_performance
For top 10 vaults by TVL, analyze performance trends:
{
"vaultAddress": "0x...",
"chainId": 1,
"timeRange": "30d",
"responseFormat": "summary"
}
Tool: analyze_risk
Sample risk scores across vault categories:
{
"vaultAddress": "0x...",
"chainId": 1,
"responseFormat": "summary"
}
Categorize vaults by risk level:
| Risk Level | Count | % of TVL |
|---|---|---|
| Low (<30) | [N] | [X]% |
| Medium (30-60) | [N] | [X]% |
| High (>60) | [N] | [X]% |
| KPI | Current | Trend | Status |
|---|---|---|---|
| Total TVL | $[X]M | [+/-X]% | [GREEN/YELLOW/RED] |
| Active Vaults | [N] | [+/-N] | [GREEN/YELLOW/RED] |
| Avg Risk Score | [X] | [+/-X] | [GREEN/YELLOW/RED] |
| High-Risk Vaults | [N]% | [+/-X]% | [GREEN/YELLOW/RED] |
RED ALERT (Immediate action required):
YELLOW WARNING (Monitor closely):
GREEN HEALTHY:
LAGOON PROTOCOL HEALTH REPORT
=============================
Period: [Start Date] - [End Date]
Generated: [Timestamp]
KEY METRICS
-----------
Protocol TVL: $[X]M ([+/-X]% vs prior period)
Active Vaults: [N] ([+/-N] vs prior period)
Avg APR: [X]% ([+/-X]% vs prior period)
Avg Risk Score: [X]/100 ([+/-X] vs prior period)
TOP PERFORMERS (by TVL growth)
------------------------------
1. [Vault Name]: +$[X]M ([+X]%)
2. [Vault Name]: +$[X]M ([+X]%)
3. [Vault Name]: +$[X]M ([+X]%)
CONCERNS
--------
- [Issue 1 if any]
- [Issue 2 if any]
WATCHLIST
---------
- [Vault requiring attention]
RECOMMENDATIONS
---------------
- [Action 1]
- [Action 2]
This skill is part of the Lagoon MCP ecosystem. For technical tool documentation, refer to the MCP tool descriptions.