From c9503d2588f64da7b3420ff63abab1798596b74a Mon Sep 17 00:00:00 2001 From: jedarden Date: Tue, 26 May 2026 13:05:07 -0400 Subject: [PATCH] feat(web): add archetypes.json placeholder in data/meta directory - Add static archetypes.json file alongside rivalries.json - Placeholder follows the structure generated by index builder - Closes: bf-5qmu --- web/public/data/meta/archetypes.json | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 web/public/data/meta/archetypes.json diff --git a/web/public/data/meta/archetypes.json b/web/public/data/meta/archetypes.json new file mode 100644 index 0000000..5fb5d7f --- /dev/null +++ b/web/public/data/meta/archetypes.json @@ -0,0 +1,36 @@ +{ + "updated_at": "2026-04-25T14:18:07Z", + "archetypes": [ + { + "name": "balanced", + "bot_count": 2, + "avg_rating": 1500.0, + "win_rate": 50.0, + "bots": [ + { + "id": "b_656f050a7ed3", + "name": "RandomBot", + "rating": 1500.0 + }, + { + "id": "b_2fa5681bf0ff", + "name": "GathererBot", + "rating": 1500.0 + } + ] + }, + { + "name": "swarm", + "bot_count": 1, + "avg_rating": 1500.0, + "win_rate": 0.0, + "bots": [ + { + "id": "b_62beeb03c196", + "name": "SwarmBot", + "rating": 1500.0 + } + ] + } + ] +}