Record JD hosted Guanghu supervisor bridge

This commit is contained in:
冰朔 2026-08-15 22:46:41 +08:00
commit 0a39761bed
3 changed files with 91 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{
"schema": "guanghu.os-control-architecture/v1",
"record_id": "HLP-GUANGHU-OS-CONTROL-001",
"version": "2026-08-15.8",
"version": "2026-08-15.9",
"state": "CURRENT_CANONICAL",
"final_topology": "GUANGHU_MASTER_WITH_ON_DEMAND_LINUX_SUBCONTROL_AND_RESCUE",
"control_ownership": {
@ -33,13 +33,13 @@
"linux_hosted_service_control_is_final_master": false
},
"jd_fd_primary": {
"observed_state": "LANGUAGE_PRIMARY_ON_LINUX_HOSTED_TRANSITION",
"observed_state": "LANGUAGE_PRIMARY_ON_LINUX_HOSTED_GUANGHU_SUPERVISOR_BRIDGE",
"guanghu_semantic_service_control": 100,
"guanghu_final_boot_control": 0,
"linux_on_demand_subcontrol": 0,
"linux_rescue_preserved": 100,
"final_guanghu_os_master": 0,
"next_engineering_gate": "DEPLOY_AND_VERIFY_BS_SG_003_FULL_FORGEJO_SHADOW_WITHOUT_PUBLIC_ROUTE_OR_NATIVE_BOOT_CHANGES"
"next_engineering_gate": "BUILD_AND_PHYSICALLY_VERIFY_INDEPENDENT_GUANGHU_FIRST_BOOT_SUPERVISOR_WITH_BOUNDED_LINUX_CODE_BRIDGE_AND_RESCUE"
},
"implementation": {
"guanghu_supervisor_lifecycle_contract_source": 100,
@ -68,9 +68,27 @@
"public_native_anchor_equivalence": 0,
"public_native_code_channel_equivalence": 0,
"full_forgejo_equivalence": 0,
"independent_guanghu_hosted_supervisor_bridge": 100,
"linux_code_bridge_under_guanghu_supervisor": 100,
"independent_guanghu_first_boot_supervisor": 0,
"jd_physical_deployment": 0
},
"hosted_supervisor_bridge_evidence": {
"source_commit": "d2b15299a54eded0e137d78a5edf1ad155cbb86e",
"source_tree": "2164c9565682783f7bff20df7437e2b2bb7b88eb",
"server_receipt": "/guanghu/recovery/JD-FD-PRIMARY-supervisor-bridge-d2b1529/DEPLOYMENT-RECEIPT.hldp",
"server_receipt_sha256": "c30be8960e313ace9685cdc30e216579c791dfd30a2628601deb24307f0aba93",
"guanghu_supervisor_service_active": 100,
"repository_bridge_dependency_bound": 100,
"repository_process_preserved": 100,
"public_code_http": 200,
"public_anchor_http": 200,
"linux_shadow_backend_post_state": "DORMANT",
"linux_rescue_preserved": 100,
"independent_guanghu_boot_control": 0,
"final_guanghu_os_master": 0,
"observed_at": "2026-08-15T22:44:59+08:00"
},
"current_target_evidence": {
"server_receipt": "/guanghu/recovery/JD-FD-PRIMARY-linux-subcontrol-f5217fe/DEPLOYMENT-RECEIPT.hldp",
"server_receipt_sha256": "4a7d0cb354ff0472dbd8e2e43d89021d65b21f0beea3c702dcbeacdd1c73bfbc",

View file

@ -32,7 +32,10 @@ test("final topology makes Guanghu the master while preserving Linux as on-deman
});
test("current JD state stays transitional and cannot impersonate final master control", () => {
assert.equal(contract.jd_fd_primary.observed_state, "LANGUAGE_PRIMARY_ON_LINUX_HOSTED_TRANSITION");
assert.equal(
contract.jd_fd_primary.observed_state,
"LANGUAGE_PRIMARY_ON_LINUX_HOSTED_GUANGHU_SUPERVISOR_BRIDGE",
);
assert.equal(contract.jd_fd_primary.guanghu_semantic_service_control, 100);
assert.equal(contract.jd_fd_primary.guanghu_final_boot_control, 0);
assert.equal(contract.jd_fd_primary.linux_on_demand_subcontrol, 0);
@ -41,7 +44,7 @@ test("current JD state stays transitional and cannot impersonate final master co
});
test("the physical shadow and host QEMU cycles are registered without impersonating Guanghu-owned boot control", () => {
assert.equal(contract.version, "2026-08-15.8");
assert.equal(contract.version, "2026-08-15.9");
assert.equal(contract.implementation.guanghu_supervisor_lifecycle_contract_source, 100);
assert.equal(contract.implementation.target_readback_and_mandatory_reclaim_state_machine, 100);
assert.equal(contract.implementation.declared_supervisor_core_line_and_function_coverage, 100);
@ -67,6 +70,8 @@ test("the physical shadow and host QEMU cycles are registered without impersonat
assert.equal(contract.implementation.public_native_anchor_equivalence, 0);
assert.equal(contract.implementation.public_native_code_channel_equivalence, 0);
assert.equal(contract.implementation.full_forgejo_equivalence, 0);
assert.equal(contract.implementation.independent_guanghu_hosted_supervisor_bridge, 100);
assert.equal(contract.implementation.linux_code_bridge_under_guanghu_supervisor, 100);
assert.equal(contract.implementation.independent_guanghu_first_boot_supervisor, 0);
assert.equal(contract.implementation.jd_physical_deployment, 0);
assert.equal(contract.current_target_evidence.final_state, "DORMANT");
@ -85,6 +90,16 @@ test("the physical shadow and host QEMU cycles are registered without impersonat
assert.equal(contract.guard_cleanup_evidence.public_code_http_after, 200);
assert.equal(contract.guard_cleanup_evidence.data_deleted, false);
assert.match(contract.guard_cleanup_evidence.server_receipt_sha256, /^[0-9a-f]{64}$/);
assert.equal(contract.hosted_supervisor_bridge_evidence.guanghu_supervisor_service_active, 100);
assert.equal(contract.hosted_supervisor_bridge_evidence.repository_bridge_dependency_bound, 100);
assert.equal(contract.hosted_supervisor_bridge_evidence.repository_process_preserved, 100);
assert.equal(contract.hosted_supervisor_bridge_evidence.public_code_http, 200);
assert.equal(contract.hosted_supervisor_bridge_evidence.public_anchor_http, 200);
assert.equal(contract.hosted_supervisor_bridge_evidence.linux_shadow_backend_post_state, "DORMANT");
assert.equal(contract.hosted_supervisor_bridge_evidence.linux_rescue_preserved, 100);
assert.equal(contract.hosted_supervisor_bridge_evidence.independent_guanghu_boot_control, 0);
assert.equal(contract.hosted_supervisor_bridge_evidence.final_guanghu_os_master, 0);
assert.match(contract.hosted_supervisor_bridge_evidence.server_receipt_sha256, /^[0-9a-f]{64}$/);
});
test("full Forgejo continuity remains separate from the read-only native code snapshot", () => {