|
34 | 34 | import sys |
35 | 35 |
|
36 | 36 | SKILL_NAME = "narrative-rotation-index" |
37 | | -SKILL_VERSION = "8.1" |
| 37 | +SKILL_VERSION = "10.0" |
38 | 38 | SKILL_DESCRIPTION = ( |
39 | | - "CMC-native crypto narrative rotation strategy: regime detection, " |
40 | | - "5-bucket relative-strength scoring, and a late-cycle exhaustion detector." |
| 39 | + "CMC-native crypto narrative rotation strategy with stablecoin risk overlay: " |
| 40 | + "regime detection, 5-bucket relative-strength scoring, late-cycle exhaustion, " |
| 41 | + "and defensive rotation via Stablecoin Risk Radar." |
41 | 42 | ) |
42 | 43 |
|
43 | 44 | # Public endpoints NRI exposes as an on-chain agent. The MCP server is the |
44 | 45 | # primary callable surface; the x402-priced HTTP signal API is secondary. |
45 | 46 | AGENT_ENDPOINTS = [ |
46 | 47 | { |
47 | 48 | "name": "MCP", |
48 | | - "endpoint": "https://narrative-rotation-index.example/mcp", |
| 49 | + "endpoint": "https://nri.realdo.org/mcp", |
49 | 50 | "version": SKILL_VERSION, |
50 | | - "capabilities": ["scan_narratives", "score_narrative", "detect_regime"], |
| 51 | + "capabilities": ["scan_narratives", "score_narrative", "detect_regime", "rank_stables", "rotation_target"], |
51 | 52 | }, |
52 | 53 | { |
53 | 54 | "name": "x402-signal-api", |
54 | | - "endpoint": "https://narrative-rotation-index.example/signal", |
| 55 | + "endpoint": "https://nri.realdo.org/signal", |
55 | 56 | "version": SKILL_VERSION, |
56 | | - "capabilities": ["full_scan", "regime_update"], |
| 57 | + "capabilities": ["full_scan", "regime_update", "stablecoin_risk"], |
57 | 58 | }, |
58 | 59 | ] |
59 | 60 |
|
|
0 commit comments