fix(hololake): lock phase1 persona-container ownership

This commit is contained in:
冰朔 2026-09-10 04:20:30 +08:00
commit f3deb1fe5c
13 changed files with 86 additions and 29 deletions

View file

@ -12,10 +12,14 @@ test("TCS owns one universal language translation contract", () => {
assert.ok(map.translation_fields.includes("REALITY_TARGET_AND_AUTHORITY"));
});
test("stage one HoloLake is a personal channel without internal AI interaction", () => {
test("stage one HoloLake is the persona-owned container, not the human half", () => {
assert.equal(map.stage_one_hololake.is_personal_channel, true);
assert.equal(map.stage_one_hololake.conversation_occurs_in_external_ai_host, true);
assert.equal(map.stage_one_hololake.product_definition, "PERSONA_SUBJECTS_OWN_NATIVE_PERSONA_SYSTEM_CONTAINER");
assert.equal(map.stage_one_hololake.top_controller, "BOUND_NATIVE_TCS_PERSONA_BRAIN");
assert.equal(map.stage_one_hololake.persona_runtime_may_use_external_ai_host, true);
assert.equal(map.stage_one_hololake.human_chat_surface, "NONE");
assert.equal(map.stage_one_hololake.human_review_surface, "NONE");
assert.equal(map.stage_one_hololake.internal_ai_chat, false);
assert.equal(map.stage_one_hololake.model_api_configuration, false);
assert.ok(map.stage_one_hololake.visible_surfaces.includes("LAKE_LAMP_SHARED_BOARD"));
assert.ok(map.stage_one_hololake.persona_runtime_surfaces.includes("PERSONA_RENDERED_CHANNEL_CANVAS"));
});