|
12 | 12 | <a href="https://claude.ai"><img src="https://img.shields.io/badge/Claude_Code-compatible-blueviolet?style=flat-square" alt="Claude Code"></a> |
13 | 13 | <img src="https://img.shields.io/badge/genes-17-gold?style=flat-square" alt="17 Genes"> |
14 | 14 | <img src="https://img.shields.io/badge/attacks-6_types-red?style=flat-square" alt="6 Attack Types"> |
15 | | - <img src="https://img.shields.io/badge/tests-84_passing-brightgreen?style=flat-square" alt="84 Tests"> |
| 15 | + <img src="https://img.shields.io/badge/tests-111_passing-brightgreen?style=flat-square" alt="111 Tests"> |
16 | 16 | <a href="https://colab.research.google.com/github/0xSanei/darwinia/blob/main/notebooks/quickstart.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open in Colab"></a> |
17 | 17 | </p> |
18 | 18 |
|
@@ -236,6 +236,8 @@ python -m darwinia fetch BTCUSD --source coingecko # Fetch from CoinGecko |
236 | 236 | python -m darwinia scan # Discover trending crypto assets |
237 | 237 | python -m darwinia scan --volatile # Most volatile assets |
238 | 238 | python -m darwinia scan --recommend # Recommended pairs for evolution |
| 239 | +python -m darwinia analytics -g 20 -p 50 # Population convergence & clustering |
| 240 | +python -m darwinia tournament -n 8 -g 30 # Champion round-robin leaderboard |
239 | 241 | python -m darwinia dashboard # Web UI |
240 | 242 | python -m darwinia info --json # System info as JSON |
241 | 243 | ``` |
@@ -270,7 +272,8 @@ darwinia/ |
270 | 272 | ├── data/ # Live data fetching (Binance, CoinGecko) |
271 | 273 | ├── macro/ # Macro regime simulation and regime-aware fitness |
272 | 274 | ├── integrations/ # Skill composability layer (SkillBridge, SkillRegistry) |
273 | | -└── __main__.py # CLI entry point |
| 275 | +├── analytics/ # Population statistics, clustering, diversity metrics |
| 276 | +└── __main__.py # CLI entry point (12 commands) |
274 | 277 |
|
275 | 278 | dashboard/ # Streamlit visualization (4 pages) |
276 | 279 | scripts/ # Competitor monitoring, utilities |
@@ -330,7 +333,7 @@ The evolution engine is **domain-agnostic**. The DNA → Fitness → Selection |
330 | 333 |
|
331 | 334 | ```bash |
332 | 335 | make setup # Install dependencies |
333 | | -make test # Run 84 tests |
| 336 | +make test # Run 111 tests |
334 | 337 | make evolve # Run 50 generations |
335 | 338 | make arena # Adversarial arena |
336 | 339 | make dashboard # Streamlit dashboard |
|
0 commit comments