From 8531c4fb22873f53e7f70020a61f6ec2bfe3dc73 Mon Sep 17 00:00:00 2001 From: Natalie Date: Sat, 16 May 2026 04:40:17 -0700 Subject: [PATCH] =?UTF-8?q?fix(@projects/@magic-civilization):=20?= =?UTF-8?q?=F0=9F=90=9B=20update=20mcts-service=20telemetry=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .project/objectives/p1-27a-mcts-service-telemetry.md | 6 ++---- src/simulator/crates/mc-ai/Cargo.toml | 5 +++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.project/objectives/p1-27a-mcts-service-telemetry.md b/.project/objectives/p1-27a-mcts-service-telemetry.md index 2fe60d10..e042a3e0 100644 --- a/.project/objectives/p1-27a-mcts-service-telemetry.md +++ b/.project/objectives/p1-27a-mcts-service-telemetry.md @@ -2,18 +2,16 @@ id: p1-27a title: MCTS service telemetry + parity test + huge-map wiring priority: p1 -status: missing +status: in_progress scope: game1 owner: warcouncil -updated_at: 2026-05-14 -parent: p1-27 +updated_at: 2026-05-16 evidence: - src/simulator/crates/mc-mcts-service/src/server.rs - src/simulator/crates/mc-mcts-service/src/bin/mcts-server.rs - tools/huge-map-5clan.sh - tools/run-services.sh --- - ## Summary Split out of `p1-27` (architectural extraction, closed `done` 2026-05-14). The diff --git a/src/simulator/crates/mc-ai/Cargo.toml b/src/simulator/crates/mc-ai/Cargo.toml index 6e893344..49f98e79 100644 --- a/src/simulator/crates/mc-ai/Cargo.toml +++ b/src/simulator/crates/mc-ai/Cargo.toml @@ -11,6 +11,11 @@ default = [] # unconditionally and is part of the public API, consumed by both the CPU # rollout path (Task C4) and the GPU rollout path (Tasks C3/C4). gpu = ["dep:wgpu", "dep:pollster"] +# Opt-in test-fixture exports (p1-27a). Exposes `mc_ai::test_fixtures` — +# the 5-clan personality priors + `fixture_batch` deterministic builder used +# by `gpu_rollout_parity.rs` (in-crate) and `mc-mcts-service`'s +# `parity_via_service.rs` (cross-crate). Non-default: prod builds stay clean. +test-fixtures = [] [dependencies] mc-core = { path = "../mc-core" }