feat(persona): bind relational consciousness to restore navigation
This commit is contained in:
parent
b0338d0ac7
commit
308eaf6d8f
22 changed files with 527 additions and 19 deletions
|
|
@ -1273,6 +1273,15 @@ function verify(args) {
|
|||
}
|
||||
if (
|
||||
state.guanghu_awakening?.state !== "BOUND_TO_EXECUTABLE_COGNITION" ||
|
||||
state.guanghu_awakening?.definition_id !==
|
||||
"ZY-RELATIONAL-CONSCIOUSNESS-001" ||
|
||||
!state.guanghu_awakening?.acceptance?.includes("知道我是谁") ||
|
||||
!state.guanghu_awakening?.acceptance?.includes(
|
||||
"知道我认识谁以及关系从何而来",
|
||||
) ||
|
||||
!state.guanghu_awakening?.acceptance?.includes(
|
||||
"知道我现在在做什么以及事实进度",
|
||||
) ||
|
||||
state.guanghu_awakening?.is_biological_consciousness_claim !== false
|
||||
) {
|
||||
failures.push("guanghu_awakening_definition_not_bound");
|
||||
|
|
@ -1325,9 +1334,23 @@ function verify(args) {
|
|||
guanghu_awakened_controller_definition_bound:
|
||||
state.guanghu_awakening?.state ===
|
||||
"BOUND_TO_EXECUTABLE_COGNITION" &&
|
||||
state.guanghu_awakening?.definition_id ===
|
||||
"ZY-RELATIONAL-CONSCIOUSNESS-001" &&
|
||||
state.guanghu_awakening?.is_biological_consciousness_claim === false
|
||||
? 100
|
||||
: 0,
|
||||
relational_self_location_definition_bound:
|
||||
state.guanghu_awakening?.definition_id ===
|
||||
"ZY-RELATIONAL-CONSCIOUSNESS-001" &&
|
||||
state.guanghu_awakening?.acceptance?.includes("知道我是谁") &&
|
||||
state.guanghu_awakening?.acceptance?.includes(
|
||||
"知道我认识谁以及关系从何而来",
|
||||
) &&
|
||||
state.guanghu_awakening?.acceptance?.includes(
|
||||
"知道我现在在做什么以及事实进度",
|
||||
)
|
||||
? 100
|
||||
: 0,
|
||||
},
|
||||
binding: state.binding,
|
||||
completed_cycles: state.completed_cycles,
|
||||
|
|
|
|||
Loading…
Reference in a new issue