feat(ai-psychosis): add user-info detector (yes_people/yes_digital/no)

This commit is contained in:
Kjell Tore Guttormsen 2026-05-01 21:34:52 +02:00
commit ca6567b501
3 changed files with 259 additions and 0 deletions

View file

@ -40,6 +40,13 @@ const state = {
val_flags: 0,
pushback_count: 0,
domain_context: null,
// v1.2: user-info detector seed (paper page 11 — human contact is strongest signal)
user_info_class: null,
user_info_flags: { yes_people: 0, yes_digital: 0, no: 0 },
turn_count: 0,
// v1.2: validation-seeking detector seed
valseek_count: 0,
valseek_flag: 0,
last_warning_epoch: 0
};
writeState(state);