feat: load authoritative empty persona trust registry
This commit is contained in:
parent
c4504fa115
commit
9281587a0f
11 changed files with 343 additions and 15 deletions
|
|
@ -172,6 +172,8 @@
|
|||
"persona_control_authorization_receipt_shape_validation_source_implemented": 100,
|
||||
"persona_control_authorization_signer_registry_contract_source_implemented": 100,
|
||||
"persona_control_authorization_cryptographic_provenance_source_implemented": 100,
|
||||
"persona_control_authorization_registry_source_published": 100,
|
||||
"native_persona_control_authorization_registry_loader_source_integrated": 100,
|
||||
"persona_control_authorization_trusted_signer_registered": 0,
|
||||
"desktop_language_entry_source_integrated": 100,
|
||||
"persona_control_authorization_runtime_integrated": 0,
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ const age = readJson("routing/hololake-age-runtime-architecture.json");
|
|||
const rules = readJson("routing/hololake-engineering-rules.json");
|
||||
|
||||
test("B0 is restored before product organs and remains resident in every cognition step", () => {
|
||||
assert.equal(architecture.version, "2026-08-12.12");
|
||||
assert.equal(architecture.version, "2026-08-12.13");
|
||||
assert.equal(
|
||||
architecture.read_order[1],
|
||||
architecture.cognitive_gravity_and_continuity.architecture_page,
|
||||
|
|
@ -98,6 +98,8 @@ test("the first implementation stage is one vertical AGE loop, not Mirror parall
|
|||
assert.equal(gravity.truth.persona_control_authorization_receipt_shape_validation_source_implemented, 100);
|
||||
assert.equal(gravity.truth.persona_control_authorization_signer_registry_contract_source_implemented, 100);
|
||||
assert.equal(gravity.truth.persona_control_authorization_cryptographic_provenance_source_implemented, 100);
|
||||
assert.equal(gravity.truth.persona_control_authorization_registry_source_published, 100);
|
||||
assert.equal(gravity.truth.native_persona_control_authorization_registry_loader_source_integrated, 100);
|
||||
assert.equal(gravity.truth.persona_control_authorization_trusted_signer_registered, 0);
|
||||
assert.equal(gravity.truth.desktop_language_entry_source_integrated, 100);
|
||||
assert.equal(gravity.truth.persona_control_authorization_runtime_integrated, 0);
|
||||
|
|
@ -106,6 +108,8 @@ test("the first implementation stage is one vertical AGE loop, not Mirror parall
|
|||
assert.equal(architecture.interaction_model.source_contract.canonical_signing_bytes_source_implemented, true);
|
||||
assert.equal(architecture.interaction_model.source_contract.ed25519_verification_source_implemented, true);
|
||||
assert.equal(architecture.interaction_model.source_contract.trusted_signer_source_registered, false);
|
||||
assert.equal(architecture.interaction_model.source_contract.native_authorization_registry_loader_integrated, true);
|
||||
assert.equal(architecture.interaction_model.source_contract.native_authorization_receipt_loader_integrated, false);
|
||||
assert.equal(gravity.truth.real_persona_repository_manifest_bound, 0);
|
||||
assert.equal(gravity.truth.natural_language_partner_adapter_runtime_integrated, 0);
|
||||
assert.equal(gravity.truth.single_age_vertical_loop_implemented, 0);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"schema": "hololake.current-architecture/v1",
|
||||
"architecture_id": "HLP-CURRENT-ARCH-001",
|
||||
"version": "2026-08-12.12",
|
||||
"version": "2026-08-12.13",
|
||||
"state": "CURRENT_CANONICAL",
|
||||
"product": {
|
||||
"formal_name": "光湖语言系统 · 通用人工智能操作平台",
|
||||
|
|
@ -118,6 +118,8 @@
|
|||
"persona_control_authorization_receipt_shape_validation_source_implemented": true,
|
||||
"persona_control_authorization_signer_registry_contract_source_implemented": true,
|
||||
"persona_control_authorization_cryptographic_provenance_source_implemented": true,
|
||||
"persona_control_authorization_registry_source_published": true,
|
||||
"native_persona_control_authorization_registry_loader_source_integrated": true,
|
||||
"persona_control_authorization_trusted_signer_registered": false,
|
||||
"desktop_language_entry_source_integrated": true,
|
||||
"persona_control_authorization_runtime_integrated": false,
|
||||
|
|
@ -392,6 +394,11 @@
|
|||
"persona_control_authorization_receipt_tests": "product-source/hololake-platform/src/lib/personaControlAuthorization.test.ts",
|
||||
"persona_control_authorization_signer_registry_and_verifier": "product-source/guanghu-knowledge-base/server/persona-control-authorization.ts",
|
||||
"persona_control_authorization_signer_registry_and_verifier_tests": "product-source/guanghu-knowledge-base/server/persona-control-authorization.test.ts",
|
||||
"native_persona_control_authorization_registry_loader": "product-source/hololake-platform/src-tauri/src/persona_control_authorization.rs",
|
||||
"authoritative_registry_repository": "REPO-012",
|
||||
"authoritative_registry_source_commit": "21aec6f5042e32e34c892a7a212d8dec5f758437",
|
||||
"authoritative_registry_path": "routing/persona-control-authorization-signers.json",
|
||||
"authoritative_registry_state": "CURRENT_EMPTY_NO_TRUSTED_SIGNER",
|
||||
"receipt_schema": "hololake.persona-control-authorization/v2",
|
||||
"caller_supplied_persona_authorization_boolean_allowed": false,
|
||||
"receipt_shape_validation_is_authority_proof": false,
|
||||
|
|
@ -399,6 +406,7 @@
|
|||
"canonical_signing_bytes_source_implemented": true,
|
||||
"ed25519_verification_source_implemented": true,
|
||||
"trusted_signer_source_registered": false,
|
||||
"native_authorization_registry_loader_integrated": true,
|
||||
"native_authorization_receipt_loader_integrated": false,
|
||||
"partner_deliberation_required": true,
|
||||
"human_utterance_is_direct_command": false,
|
||||
|
|
@ -410,7 +418,8 @@
|
|||
],
|
||||
"focused_tests": "11_OF_11_PASS",
|
||||
"authorization_focused_tests": "13_OF_13_PASS",
|
||||
"authorization_cryptographic_tests": "7_OF_7_PASS"
|
||||
"authorization_cryptographic_tests": "7_OF_7_PASS",
|
||||
"native_authorization_registry_loader_tests": "4_OF_4_PASS"
|
||||
},
|
||||
"ui_plugin_system": {
|
||||
"record_id": "HLP-HOT-PLUGGABLE-UI-001",
|
||||
|
|
|
|||
Loading…
Reference in a new issue