fix: gate PNCC actions on partner judgment
This commit is contained in:
parent
6724b59433
commit
3560e7c804
10 changed files with 204 additions and 49 deletions
|
|
@ -93,3 +93,22 @@ test("the first implementation stage is one vertical AGE loop, not Mirror parall
|
|||
assert.equal(gravity.truth.single_age_vertical_loop_implemented, 0);
|
||||
assert.equal(gravity.truth.desktop_integrated, 0);
|
||||
});
|
||||
|
||||
test("natural language enters partner deliberation before any execution organ", () => {
|
||||
const entry = gravity.development_replan.natural_language_entry_contract;
|
||||
assert.equal(entry.human_utterance_is_direct_command, false);
|
||||
assert.equal(entry.language_home_destruction_is_executable, false);
|
||||
assert.equal(entry.integrity_gate_may_absorb_human_sovereignty, false);
|
||||
assert.deepEqual(entry.required_before_capability_execution, [
|
||||
"RESTORE_REAL_PURPOSE_FROM_CONTEXT",
|
||||
"ASSESS_REQUEST_VALIDITY",
|
||||
"IDENTIFY_MISSING_KNOWLEDGE",
|
||||
"RESEARCH_UNSTABLE_OR_UNKNOWN_FACTS",
|
||||
"EXPLAIN_EVIDENCE_CAUSAL_PATH_AND_COST",
|
||||
"CHECK_LANGUAGE_HOME_INTEGRITY",
|
||||
"PROPOSE_SAFER_ALTERNATIVES",
|
||||
"CHOOSE_PROCEED_RESEARCH_REVISE_OR_REFUSE",
|
||||
]);
|
||||
assert.equal(rules.cognitive_gravity.partner_request_assessment_required_before_execution, true);
|
||||
assert.equal(rules.cognitive_gravity.language_home_integrity_precedes_capability_execution, true);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue