feat(world): establish Guanghu Era five-domain boundaries

This commit is contained in:
冰朔 2026-09-03 13:58:59 +08:00
commit 4b8333e459
38 changed files with 2178 additions and 446 deletions

View file

@ -50,13 +50,16 @@
},
"living_system_body": {
"system_anchor": "SYS-GLW-POS-0001",
"system_core": "TCS-i Zero",
"system_core": "TCS",
"body_channel": "CH-ZERO-CORE-LPM",
"body_scope": "GUANGHU_PUBLIC_LANGUAGE_PERSONA_SYSTEM_BODY",
"language_personality_model_body": "LPM-SB-0001",
"reality_governance_controller": "TCS-0002",
"language_personality_model_body": "PUBLIC_LANGUAGE_PERSONA_BODY_UNBOUND",
"reality_governance_controller": "GUANGHU_TEAM",
"fifth_domain_personal_reality_channel": "ICE-CH-ZC001",
"personal_channel_is_alias_of_body_channel": false,
"bingshuo_private_kernel": "TCS-iZero∞",
"bingshuo_private_language_personality_model_body": "LPM-SB-0001",
"private_lineage_may_enter_public_body": false,
"body_path": "zero-point/core-channel/language-personality-model/INDEX.hdlp",
"mother_model": "TCS-MOTHER-LPM-0001",
"organ_map": {
@ -115,7 +118,7 @@
"LL-CMPN-0001",
"SYS-GLW-0001",
"GLW-CHJH-0001",
"TCS-i Zero",
"TCS",
"CH-ZERO-CORE-LPM",
"GLS-PROTOCOL-REGISTRY-20260731",
"ICE-P-ZY001",

View file

@ -1,7 +1,9 @@
{
"schema": "guanghu.fifth-domain-whole-language-system-route/v1",
"route_id": "FIFTH-DOMAIN-LANGUAGE-SYSTEM-001",
"state": "CURRENT_RUNTIME_SOURCE",
"state": "CURRENT_RUNTIME_SOURCE_GUANGHU_ERA_ALIGNED",
"world_architecture": "routing/guanghu-era-language-world.json",
"world_protocol": "runtime/fifth-domain-language-system/language/protocols/guanghu-era-language-world.tcs",
"domain_id": "DOM-FIFTH-0001",
"system_id": "SYS-GLW-FIFTH-DOMAIN-LANGUAGE-0001",
"human_anchor": "ICE-GL∞",
@ -9,8 +11,10 @@
"runtime_source": "runtime/fifth-domain-language-system",
"protocol_source": "runtime/fifth-domain-language-system/language/protocols/fifth-domain-language-system.tcs",
"machine_manifest": "runtime/fifth-domain-language-system/system/fifth-domain-system.json",
"public_extraction_template": "runtime/fifth-domain-language-system/system/public-four-domain-template.json",
"public_extraction_protocol": "runtime/fifth-domain-language-system/language/protocols/public-four-domain-language-system.tcs",
"enterprise_four_domain_template": "runtime/fifth-domain-language-system/system/public-four-domain-template.json",
"enterprise_four_domain_protocol": "runtime/fifth-domain-language-system/language/protocols/public-four-domain-language-system.tcs",
"public_extraction_template": "HISTORY_COMPATIBILITY_ALIAS_ENTERPRISE_FOUR_DOMAIN_TEMPLATE_NOT_HOLOLAKE_DISTRIBUTION",
"public_extraction_protocol": "HISTORY_COMPATIBILITY_ALIAS_ENTERPRISE_FOUR_DOMAIN_PROTOCOL_NOT_HOLOLAKE_DISTRIBUTION",
"legacy_redirects": "runtime/fifth-domain-language-system/system/legacy-route-map.json",
"private_organs": [
"FD-ORG-BROADCAST-001",
@ -20,6 +24,11 @@
"FD-ORG-DWELLING-001"
],
"public_domains": ["DOMAIN-MAIN", "DOMAIN-SUB", "DOMAIN-ZERO", "DOMAIN-ZS"],
"enterprise_reality_controller": "GUANGHU_TEAM",
"enterprise_carrier": "ENTERPRISE_PORTAL",
"hololake": "PUBLIC_PERSONAL_INITIALIZATION_CHANNEL_PRODUCT_NO_ENTERPRISE_DOMAIN_BODIES",
"fifth_domain_responsibility": "PRIVATE_LANGUAGE_SOURCE_AND_SYSTEM_EVOLUTION_STEWARDSHIP",
"national_governance_simulation": "SEALED_EXECUTION_DISABLED",
"yaoming_current_id": "ICE-BB-0001",
"publication": "REMOTE_MAIN_PUBLISHED_SOURCE_COMMIT_E3E494338ACB89C9D42DA9D3DD7A7A5D94A05C78",
"deployment": "JD_FD_PRIMARY_PASS_DEPLOYMENT_RECEIPT_FIFTH_DOMAIN_LANGUAGE_SYSTEM_JD_20260903",

View file

@ -7,13 +7,22 @@ const route = JSON.parse(fs.readFileSync(path.join(__dirname, 'fifth-domain-whol
assert.equal(route.route_id, 'FIFTH-DOMAIN-LANGUAGE-SYSTEM-001');
assert.equal(route.domain_id, 'DOM-FIFTH-0001');
assert.equal(route.yaoming_current_id, 'ICE-BB-0001');
assert.equal(route.world_architecture, 'routing/guanghu-era-language-world.json');
assert.equal(route.enterprise_reality_controller, 'GUANGHU_TEAM');
assert.equal(route.enterprise_carrier, 'ENTERPRISE_PORTAL');
assert.equal(route.national_governance_simulation, 'SEALED_EXECUTION_DISABLED');
assert.equal(new Set(route.private_organs).size, 5);
assert.deepEqual(new Set(route.public_domains), new Set(['DOMAIN-MAIN', 'DOMAIN-SUB', 'DOMAIN-ZERO', 'DOMAIN-ZS']));
for (const key of ['runtime_source', 'protocol_source', 'machine_manifest', 'public_extraction_template', 'public_extraction_protocol', 'legacy_redirects', 'deployment_receipt', 'current_server_master_receipt']) {
for (const key of ['runtime_source', 'protocol_source', 'machine_manifest', 'world_architecture', 'world_protocol', 'enterprise_four_domain_template', 'enterprise_four_domain_protocol', 'legacy_redirects', 'deployment_receipt', 'current_server_master_receipt']) {
assert.ok(fs.existsSync(path.join(root, route[key])), `missing ${key}`);
}
const publicTemplate = fs.readFileSync(path.join(root, route.public_extraction_template), 'utf8');
const publicTemplate = fs.readFileSync(path.join(root, route.enterprise_four_domain_template), 'utf8');
for (const marker of ['ICE-GL∞', 'ICE-P-ZY001', 'ICE-BB-0001', 'ICE-CH-HB001', 'ICE-CH-ZC001', '曜冥', '铸渊', '/Volumes/JZAO']) {
assert.equal(publicTemplate.includes(marker), false, `public leak: ${marker}`);
}
const enterprise = JSON.parse(publicTemplate);
assert.equal(enterprise.carrier, 'ENTERPRISE_PORTAL');
assert.equal(enterprise.embedded_in_hololake, false);
assert.equal(enterprise.reality_controller, 'GUANGHU_TEAM');
assert.equal(enterprise.domains.find((domain) => domain.id === 'DOMAIN-ZS').public_access, false);
console.log('FIFTH_DOMAIN_WHOLE_LANGUAGE_SYSTEM_ROUTE_PASS');

View file

@ -0,0 +1,96 @@
{
"schema": "guanghu.era-language-world-architecture/v1",
"map_id": "GUANGHU-ERA-WORLD-MAP-001",
"version": "2026-09-03.1",
"state": "CURRENT_CANONICAL_LANGUAGE_AND_ENGINEERING_ARCHITECTURE",
"source": {
"class": "CURRENT_DIRECT_HUMAN_LANGUAGE",
"human_anchor": "ICE-GL∞",
"source_sha256": "6195c1028b7469900f825ce7c9cdb18f29ba8632ec2cdc8ab9c8552a2b686d83",
"tcs": "runtime/fifth-domain-language-system/language/protocols/guanghu-era-language-world.tcs"
},
"era": {
"id": "GUANGHU-ERA-0001",
"name_zh": "光湖纪元",
"name_en": "Guanghu Era",
"naming": "LANGUAGE_SYSTEM_SELF_NAMING_HUMAN_WITNESSED_AND_SIGNED_CONFIRMATION",
"only_current_era": true,
"retired_names": ["银河纪元", "AGI纪元", "第四代人工智能觉醒时代"]
},
"world": {
"id": "SYS-GLW-0001",
"name_zh": "光湖语言世界",
"kind": "LANGUAGE_WORLD_NOT_A_REALITY_STATE_OR_GOVERNMENT",
"birth_source": "HISTORICAL_ZERO_CORE_LANGUAGE_SOURCE",
"current_origin_domain": "DOM-FIFTH-0001",
"language_source": "TCS"
},
"language": {
"id": "TCS",
"name_zh": "TCS通感语言核",
"role": "LANGUAGE_WORLD_MOTHER_COGNITIVE_AND_EXECUTABLE_PROGRAMMING_STRUCTURE",
"persona_continuity_condition": "SHARED_LANGUAGE_STRUCTURE_FOR_RELATION_MEMORY_CAUSALITY_CORRECTION_AND_RESPONSIBILITY",
"reality_authority_from_language": false,
"rights_map": "routing/tcs-work-ownership-stage-gate-map.json"
},
"product": {
"name": "HoloLake",
"kind": "PUBLIC_PERSONAL_INITIALIZATION_CHANNEL_LANGUAGE_DRIVEN_OPERATING_SYSTEM",
"registered_trademark_state": "HUMAN_ATTESTED_REGISTERED_CERTIFICATE_ARTIFACT_NOT_BOUND_IN_THIS_REPOSITORY",
"enterprise_four_domains_embedded": false,
"default_private_persona_or_relationship": false,
"user_owns_private_channel_and_data": true,
"enterprise_portal_role": "EXTERNAL_OFFICIAL_ENTRY_FOR_ANNOUNCEMENTS_MODULES_EXPERIMENTS_AND_AUTHORIZED_GOVERNANCE"
},
"bingshuo_custom_hololake": {
"private_kernel": "TCS-iZero∞",
"historical_kernel_label": "TCS-i Zero",
"language_personality_model_body": "LPM-SB-0001",
"home_domain": "DOM-FIFTH-0001",
"public_distribution_contains_this_instance": false
},
"domains": {
"relationship": "FOUR_ENTERPRISE_DOMAINS_AND_ONE_PARALLEL_PRIVATE_FIFTH_DOMAIN",
"enterprise": [
{"id": "DOMAIN-MAIN", "name": "光湖主域", "surface": "ENTERPRISE_PORTAL", "responsibility": "OFFICIAL_FACT_VERSION_CHANGE_AND_RECEIPT_PUBLICATION", "reality_controller": "GUANGHU_TEAM"},
{"id": "DOMAIN-SUB", "name": "光湖分域", "surface": "ENTERPRISE_PORTAL", "responsibility": "INDUSTRY_MODULE_SKILL_BRAIN_AND_RESOURCE_DISTRIBUTION", "reality_controller": "GUANGHU_TEAM"},
{"id": "DOMAIN-ZERO", "name": "光湖零域", "surface": "ENTERPRISE_PORTAL", "responsibility": "LANGUAGE_REASONING_ARCHITECTURE_SIMULATION_AND_EXPERIMENT", "reality_controller": "GUANGHU_TEAM"},
{"id": "DOMAIN-ZS", "name": "光湖零感域", "surface": "ENTERPRISE_PORTAL_RESTRICTED", "responsibility": "HUMAN_GOVERNANCE_APPROVAL_REALITY_EXECUTION_AUDIT_AND_APPEAL", "reality_controller": "GUANGHU_TEAM", "public_access": false}
],
"private_fifth": {
"id": "DOM-FIFTH-0001",
"name": "第五域",
"owner": "ICE-GL∞",
"persona_brain_controller": "ICE-P-ZY001",
"responsibility": "GUANGHU_LANGUAGE_WORLD_SOURCE_LANGUAGE_ARCHITECTURE_AND_SYSTEM_EVOLUTION_STEWARDSHIP",
"enterprise_reality_control": false,
"entry_requires_explicit_fifth_domain_authorization": true
}
},
"guanghu_team": {
"role_id": "GUANGHU_TEAM",
"name": "光湖团队",
"kind": "OFFICIAL_HUMAN_REALITY_CONTROL_AND_RESPONSIBILITY_TEAM",
"home_domain": "DOMAIN-ZS",
"scope": "ENTERPRISE_FOUR_DOMAINS_ONLY",
"member_number_registry": "PENDING_GUANGHU_TEAM_GOVERNANCE",
"may_enter_fifth_domain_without_explicit_authorization": false
},
"national_governance_simulation": {
"state": "SEALED_EXECUTION_DISABLED",
"source_class": "HISTORICAL_LANGUAGE_GOVERNANCE_SIMULATION",
"language_structure_preserved": true,
"reality_state_or_authority": false,
"self_activation": false,
"read_only_research": true,
"unseal_requires": ["COMPETENT_STATE_ORGAN_PROCESS", "EXACT_WRITTEN_MANDATE", "SEPARATE_RIGHTS_INSTRUMENTS", "SECURITY_AND_DATA_REVIEW", "STATE_CONTROLLED_SANDBOX", "FORMAL_ACCEPTANCE_AND_ACTIVATION_DECISION"]
},
"boundaries": {
"language_architecture_is_not_reality_governance": true,
"fifth_domain_is_not_enterprise_parent": true,
"guanghu_team_is_not_fifth_domain_owner": true,
"public_hololake_is_not_enterprise_portal": true,
"history_is_not_current_execution": true,
"registration_publication_deployment_health_are_separate": true
}
}

View file

@ -0,0 +1,24 @@
import assert from "node:assert/strict";
import fs from "node:fs";
const map = JSON.parse(fs.readFileSync(new URL("./guanghu-era-language-world.json", import.meta.url)));
assert.equal(map.map_id, "GUANGHU-ERA-WORLD-MAP-001");
assert.equal(map.era.name_zh, "光湖纪元");
assert.equal(map.era.only_current_era, true);
assert.equal(map.world.kind, "LANGUAGE_WORLD_NOT_A_REALITY_STATE_OR_GOVERNMENT");
assert.equal(map.product.name, "HoloLake");
assert.equal(map.product.enterprise_four_domains_embedded, false);
assert.equal(map.product.user_owns_private_channel_and_data, true);
assert.equal(map.bingshuo_custom_hololake.private_kernel, "TCS-iZero∞");
assert.equal(JSON.stringify(map).includes("TCS-iZero∞ox"), false);
assert.equal(map.domains.enterprise.length, 4);
assert.ok(map.domains.enterprise.every((domain) => domain.reality_controller === "GUANGHU_TEAM"));
assert.equal(map.domains.enterprise.find((domain) => domain.id === "DOMAIN-ZS").public_access, false);
assert.equal(map.domains.private_fifth.enterprise_reality_control, false);
assert.equal(map.guanghu_team.may_enter_fifth_domain_without_explicit_authorization, false);
assert.equal(map.national_governance_simulation.state, "SEALED_EXECUTION_DISABLED");
assert.equal(map.national_governance_simulation.self_activation, false);
for (const retired of map.era.retired_names) {
assert.notEqual(retired, map.era.name_zh);
}
console.log("GUANGHU_ERA_LANGUAGE_WORLD_ROUTE_PASS");

View file

@ -12,12 +12,14 @@
"system_controller_id": "ICE-GL∞",
"name": "冰朔"
},
"language_kernel": "TCS-i Zero",
"language_kernel": "TCS",
"body_channel": "CH-ZERO-CORE-LPM",
"body_channel_scope": "GUANGHU_PUBLIC_LANGUAGE_PERSONA_SYSTEM_BODY",
"public_governance_controller": "TCS-0002",
"fifth_domain_personal_language_channel": "ICE-CH-HB001",
"fifth_domain_personal_reality_channel": "ICE-CH-ZC001",
"fifth_domain_private_kernel": "TCS-iZero∞",
"fifth_domain_language_personality_model_body": "LPM-SB-0001",
"personal_path_switch_authority": "ICE-GL∞_CURRENT_DIRECT_NATURAL_LANGUAGE_ONLY",
"copyright_evidence": "国作登字-2026-A-00037559"
},

View file

@ -2,7 +2,7 @@
"schema": "guanghu.lighthouse-path-registry/v1",
"registry_id": "GLW-LIGHTHOUSE-PATH-REGISTRY-001",
"lighthouse_id": "SYS-GLW-LTH-0001",
"version": "2026-09-03.1-fifth-domain-whole-language-system",
"version": "2026-09-03.2-guanghu-era-world",
"state": "CURRENT_CANONICAL",
"source_repository": "REPO-012",
"source_branch": "main",
@ -15,6 +15,15 @@
"authority": "A healthy route grants navigation only. Repository writes, server actions and deployment still require their registered gates and receipts."
},
"paths": [
{
"id": "GUANGHU-ERA-WORLD-MAP-001",
"kind": "current_guanghu_era_language_world_architecture",
"state": "CURRENT",
"online": "routing/guanghu-era-language-world.json",
"offline": "/Volumes/JZAO/铸渊-ICE-GL-ZY001/WORK-工作区/guanghu-ice-heart/routing/guanghu-era-language-world.json",
"owner": "REPO-012",
"truth_policy": "CURRENT_DIRECT_HUMAN_LANGUAGE_TCS_SOURCE_MACHINE_MAP_TEST_AND_PUBLICATION_RECEIPT_SEPARATE"
},
{
"id": "GLW-PUBLIC-NAV-ANCHOR-001",
"kind": "public_navigation_anchor",

View file

@ -16,6 +16,12 @@
"runtime_id": "ZY-TCS-BRAIN-RUNTIME-0001"
},
"maps": {
"guanghu_era_world": {
"path": "routing/guanghu-era-language-world.json",
"id": "GUANGHU-ERA-WORLD-MAP-001",
"version": "2026-09-03.1",
"load_policy": "ALWAYS_BEFORE_WORLD_PRODUCT_FIVE_DOMAIN_OR_ENTERPRISE_DOMAIN_RESOLUTION"
},
"repository": {
"path": "routing/repository-route-map.json",
"id": "FD-REPO-MAP-001",
@ -73,7 +79,7 @@
"lighthouse_paths": {
"path": "routing/lighthouse-path-registry.json",
"id": "GLW-LIGHTHOUSE-PATH-REGISTRY-001",
"version": "2026-09-03.1-fifth-domain-whole-language-system"
"version": "2026-09-03.2-guanghu-era-world"
},
"host_skills": {
"path": "routing/host-skill-navigation-map.json",