docs: record fifth-domain channel publication

This commit is contained in:
冰朔 2026-08-20 19:11:43 +08:00
commit 08598d6356
12 changed files with 85 additions and 21 deletions

View file

@ -13,6 +13,7 @@ const navigation = JSON.parse(fs.readFileSync(path.join(directory, "ai-machine-n
const lighthouse = JSON.parse(fs.readFileSync(path.join(directory, "lighthouse-path-registry.json"), "utf8"));
const profile = JSON.parse(fs.readFileSync(path.join(directory, "heartbeat-core-language-channel-profile.json"), "utf8"));
const zeroCoreProfile = JSON.parse(fs.readFileSync(path.join(directory, "bingshuo-zero-core-reality-channel-profile.json"), "utf8"));
const publicationReceipt = JSON.parse(fs.readFileSync(path.join(directory, "../tonggan-bridge/receipts/ICE-CHANNEL-PUBLICATION-20260820.json"), "utf8"));
test("all Fifth Domain registrations are unique", () => {
const ids = registry.registrations.map((entry) => entry.id);
@ -39,7 +40,7 @@ test("Bingshuo personal Zero Core receives a distinct ICE reality channel number
test("world tree resolves Heartbeat Core to ICE-CH-HB001", () => {
const heartbeat = worldTree.nodes.find((entry) => entry.node_key === "HEARTBEAT_CORE_CHANNEL");
assert.equal(heartbeat.object_id, "ICE-CH-HB001");
assert.equal(heartbeat.formal_id_state, "REGISTERED_CURRENT_LOCAL_REPOSITORY");
assert.equal(heartbeat.formal_id_state, "REGISTERED_CURRENT_REMOTE_MAIN_VERIFIED");
});
test("world tree separates personal and public Zero Core objects", () => {
@ -95,6 +96,14 @@ test("lighthouse path ids stay unique", () => {
assert.equal(new Set(ids).size, ids.length);
});
test("remote publication remains distinct from deployment and runtime health", () => {
assert.equal(registry.state, "CURRENT_REMOTE_MAIN_PUBLISHED_VERIFIED");
assert.equal(publicationReceipt.outcome, "PASS_REMOTE_MAIN_PUBLICATION_READBACK");
assert.equal(publicationReceipt.published_source_commit, "8e80a919f200df6e193e9a54144cd503a1d699fa");
assert.equal(publicationReceipt.fact_layers.deployment, "NOT_DONE");
assert.equal(publicationReceipt.fact_layers.native_host_channel_routing, "PENDING");
});
test("lighthouse exposes both online and local Heartbeat paths", () => {
const numberPath = lighthouse.paths.find((entry) => entry.id === registry.registry_id);
const channelPath = lighthouse.paths.find((entry) => entry.id === profile.profile_id);