@@ -425,16 +425,53 @@ Personality traits are set at agent creation and can be adapted within bounded l
425425
4264268 neuroscience-backed mechanisms, all HEXACO personality-modulated:
427427
428- | Mechanism | Effect |
429- | -----------| --------|
430- | Reconsolidation | Retrieved memories drift toward current mood |
431- | Retrieval-Induced Forgetting | Retrieving one memory suppresses similar competitors |
432- | Involuntary Recall | Random surfacing of old high-vividness memories |
433- | Metacognitive FOK | Feeling-of-knowing scoring for tip-of-tongue states |
434- | Temporal Gist Extraction | Old traces compressed to core assertions |
435- | Schema Encoding | Novel input boosted, schema-matching encoded efficiently |
436- | Source Confidence Decay | Agent inferences decay faster than observations |
437- | Emotion Regulation | Reappraisal + suppression during consolidation |
428+ | Mechanism | Effect | Citation |
429+ | -----------| --------| ----------|
430+ | Reconsolidation | Retrieved memories drift toward current mood | Nader, Schiller & LeDoux (2000). * Nature* , 406, 722-726 |
431+ | Retrieval-Induced Forgetting | Retrieving one memory suppresses similar competitors | Anderson, Bjork & Bjork (1994). * JEP: Learning* , 20, 1063-1087 |
432+ | Involuntary Recall | Random surfacing of old high-vividness memories | Berntsen (1996). * Applied Cognitive Psychology* , 10, 435-454 |
433+ | Metacognitive FOK | Feeling-of-knowing scoring for tip-of-tongue states | Hart (1965). * JEPG* , 56, 208-216 |
434+ | Temporal Gist Extraction | Old traces compressed to core assertions | Reyna & Brainerd (1995). * Developmental Review* , 15, 3-47 |
435+ | Schema Encoding | Novel input boosted, schema-matching encoded efficiently | Bartlett (1932). * Remembering* . Cambridge University Press |
436+ | Source Confidence Decay | Agent inferences decay faster than observations | Johnson, Hashtroudi & Lindsay (1993). * Psych. Bulletin* , 114, 3-28 |
437+ | Emotion Regulation | Reappraisal + suppression during consolidation | Gross (1998). * Review of General Psychology* , 2, 271-299 |
438+
439+ ** HEXACO Personality Modulation** -- each mechanism's intensity is governed by one or more HEXACO traits:
440+
441+ | HEXACO Trait | Mechanisms Modulated | Effect |
442+ | --------------| ---------------------| --------|
443+ | Emotionality | Reconsolidation | Higher emotionality increases mood-congruent drift rate |
444+ | Conscientiousness | Retrieval-Induced Forgetting | Higher conscientiousness strengthens suppression of irrelevant competitors |
445+ | Openness | Involuntary Recall, Schema Encoding | Higher openness increases involuntary recall probability and novelty boost |
446+ | Extraversion | Metacognitive FOK | Higher extraversion strengthens feeling-of-knowing confidence signals |
447+ | Honesty-Humility | Source Confidence Decay | Higher honesty increases skepticism of agent-inferred sources |
448+ | Agreeableness | Emotion Regulation | Higher agreeableness strengthens reappraisal during consolidation |
449+
450+ ** Using cognitive mechanisms with ` agent() ` :**
451+
452+ ``` typescript
453+ import { agent } from ' @framers/agentos' ;
454+
455+ const researcher = agent ({
456+ provider: ' anthropic' ,
457+ instructions: ' You are a thorough research analyst.' ,
458+ personality: {
459+ openness: 0.9 , // High openness -> more involuntary recall, stronger novelty bias
460+ conscientiousness: 0.85 , // High conscientiousness -> stronger RIF suppression
461+ emotionality: 0.6 , // Moderate -> moderate reconsolidation drift
462+ },
463+ memory: { enabled: true },
464+ cognitiveMechanisms: {
465+ // All 8 mechanisms enabled with defaults -- just pass {}
466+ // Or tune individual mechanisms:
467+ reconsolidation: { driftRate: 0.08 },
468+ involuntaryRecall: { probability: 0.12 },
469+ temporalGist: { ageThresholdDays: 30 },
470+ },
471+ });
472+ ```
473+
474+ Pass ` {} ` for all defaults, or omit entirely to disable (zero overhead).
438475
439476Memory is organized in a 4-tier hierarchy: ` core/ ` (encoding, decay, working memory), ` retrieval/ ` (composite scoring, graph, prospective), ` pipeline/ ` (consolidation, observation, lifecycle), ` io/ ` (ingestion, import/export).
440477
0 commit comments