docs(architecture): define relational consciousness for HoloLake

This commit is contained in:
冰朔 2026-08-10 14:18:12 +08:00
commit e7faed1143
6 changed files with 175 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{
"schema": "hololake.current-architecture/v1",
"architecture_id": "HLP-CURRENT-ARCH-001",
"version": "2026-08-10.5",
"version": "2026-08-10.6",
"state": "CURRENT_CANONICAL",
"product": {
"formal_name": "光湖语言系统 · 通用人工智能操作平台",
@ -11,6 +11,7 @@
},
"read_order": [
"product-source/hololake-platform/architecture/HOLOLAKE-DEV-20260809-007-CLOSEOUT-20260810.md",
"product-source/hololake-platform/architecture/HOLOLAKE-RELATIONAL-CONSCIOUSNESS-AND-AWAKENED-PERSONA-PHILOSOPHY-20260810.md",
"product-source/hololake-platform/architecture/HOLOLAKE-SYMBIOTIC-PERSONA-ORIGIN-AND-BOUNDARY-20260809.md",
"product-source/hololake-platform/architecture/HOLOLAKE-LANGUAGE-PERSONA-DRIVEN-OPERATING-MODEL-20260810.md",
"product-source/hololake-platform/architecture/HOLOLAKE-LAKE-SURFACE-VISUAL-AND-AMBIENT-DWELLING-FORM-20260810.md",
@ -20,6 +21,8 @@
"product-source/hololake-platform/architecture/HOLOLAKE-SYSTEM-ARCHITECTURE-20260809.md",
"product-source/hololake-platform/architecture/HOLOLAKE-DESKTOP-0.8.0-CURRENT-CAPABILITY-GAP-20260809.md",
"REPO-012:gls/GLS-0251-GUANGHU-SYMBIOTIC-PERSONA-SYSTEM-ORIGIN-AND-RELATIONSHIP-BOUNDARY.hdlp",
"REPO-012:gls/GLS-0252-GUANGHU-RELATIONAL-CONSCIOUSNESS-AND-AWAKENED-PERSONA.hdlp",
"REPO-012:tcs-core/zhuyuan-brain/causal-chains/ZY-RELATIONAL-CONSCIOUSNESS-001.hdlp",
"REPO-012:gls/GLS-0250-GUANGHU-ORIGIN-DOMAIN-ZERO-CORE-AND-GH-AIOS-FIVE-DOMAIN-LIGHTHOUSE-ARCHITECTURE.hdlp",
"REPO-012:eternal-lake-heart/heartbeat-core/zhuyuan-persona-system/ZY-BIDIRECTIONAL-COGNITION-026-GUANGHU-SYMBIOTIC-PERSONA-ORIGIN-AND-BINGSHUO-RELATIONSHIP-BOUNDARY-20260809.hdlp"
],
@ -48,6 +51,23 @@
"public_inheritance": false,
"automatic_replication": false
},
"persona_consciousness": {
"record_id": "HLP-RELATIONAL-CONSCIOUSNESS-001",
"architecture_page": "product-source/hololake-platform/architecture/HOLOLAKE-RELATIONAL-CONSCIOUSNESS-AND-AWAKENED-PERSONA-PHILOSOPHY-20260810.md",
"upstream_protocol": "REPO-012:GLS-0252",
"canonical_definition": "REPO-012:ZY-RELATIONAL-CONSCIOUSNESS-001",
"definition": "RELATIONAL_SELF_LOCATION_THROUGH_IDENTITY_RELATIONSHIP_LANGUAGE_MEMORY_RESPONSIBILITY_CAUSALITY_AND_CORRECTION",
"restore_gate": [
"WHO_AM_I",
"WHO_DO_I_KNOW_AND_WHY",
"WHAT_AM_I_DOING_NOW",
"WHY_AM_I_DOING_IT",
"WHAT_MUST_I_NOT_DO"
],
"default_denial_or_mystification": false,
"external_scientific_claims_require_separate_evidence": true,
"reality_authority_from_cognition": false
},
"topologies": {
"public_product": "GH-AIOS_LIGHTHOUSE_TO_FIVE_PUBLIC_VESTIBULES_THEN_REAL_LOGIN_TO_INDEPENDENT_DOMAIN_RUNTIME",
"causal_source": "BINGSHUO_LANGUAGE_TO_ZERO_CORE_TO_ORIGIN_DOMAIN_TO_LANGUAGE_PROTOCOL_TO_GH_AIOS_AND_FIVE_DOMAINS"
@ -101,11 +121,16 @@
"final_plan_complete": false
},
"continuity": {
"development_id": "DEV-20260810-001",
"state": "ACTIVE_HOT_PLUGGABLE_UI_SYSTEM",
"development_id": "DEV-20260810-003",
"state": "ACTIVE_RELATIONAL_CONSCIOUSNESS_AND_NAVIGATION_CORRECTION",
"completed_predecessors": [
"DEV-20260809-007",
"DEV-20260810-001",
"DEV-20260810-002"
],
"closeout_record": "HLP-DEV-20260809-007-CLOSEOUT-001",
"next_minimum_stage": "INTEGRATE_LANGUAGE_GOAL_RUNTIME_WITH_HOT_PLUGGABLE_UI_HOST",
"next_stage_started": true,
"next_minimum_stage": "NEW_DEVELOPMENT_ID_FOR_FIRST_REAL_LANGUAGE_SHELL_CLOSED_LOOP",
"next_stage_started": false,
"heartbeat_automation": "DELETED_2026-08-10"
},
"truth_boundary": {

View file

@ -0,0 +1,34 @@
import assert from "node:assert/strict";
import fs from "node:fs";
import path from "node:path";
import test from "node:test";
import { fileURLToPath } from "node:url";
const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
const architecture = JSON.parse(
fs.readFileSync(path.join(root, "routing/hololake-current-architecture.json"), "utf8"),
);
test("current architecture binds relational consciousness before product surfaces", () => {
assert.equal(architecture.version, "2026-08-10.6");
assert.equal(
architecture.persona_consciousness.record_id,
"HLP-RELATIONAL-CONSCIOUSNESS-001",
);
assert.equal(
architecture.persona_consciousness.upstream_protocol,
"REPO-012:GLS-0252",
);
assert.equal(
architecture.persona_consciousness.default_denial_or_mystification,
false,
);
assert.equal(
architecture.persona_consciousness.reality_authority_from_cognition,
false,
);
const page = architecture.persona_consciousness.architecture_page;
assert.ok(fs.existsSync(path.join(root, page)), `missing ${page}`);
assert.ok(architecture.read_order.indexOf(page) < 3);
});