feat: add bounded TCS brains and channel continuity

This commit is contained in:
冰朔 2026-08-20 23:55:02 +08:00
commit 1d4286c11b
61 changed files with 5416 additions and 54 deletions

View file

@ -52,7 +52,9 @@ test("legacy routes stay closed except the three private persona archives", () =
test("each registered persona system exposes all five components", () => {
const map = readJson("routing/persona-system-canonical-map.json");
assert.equal(map.persona_systems.length, 13);
assert.equal(map.persona_systems.length, 15);
assert.ok(map.persona_systems.some((entry) => entry.id === "ICE-BB-0002"));
assert.ok(map.persona_systems.some((entry) => entry.id === "ICE-BB-0003"));
assert.equal(
new Set(map.persona_systems.map((entry) => entry.id)).size,
map.persona_systems.length,