feat(recall): activation-seed improvements [issues 2-3,5-10] #53
Closed
will.anderson
wants to merge 0 commits from
improve/recall-activation-seed into main
pull from: improve/recall-activation-seed
merge into: :main
:main
:feat/immutable-engram-deletes
:feat/agent-phase1-soul
:hotfix/elc-source-typos
:hotfix/trackb-threat-to-others
:feat/soul-model-self-report
:feat/openai-format-providers
:feat/plan-mode-endpoint
:fix/operator-identity-home-resolution
:fix/wrapper-backlog-endpoints
:fix/list-typed-slice-offset
:feat/connectors-call-route
:fix/chat-vision-attachments
:fix/prevent-engram-corruption
:fix/emergency-regressions
:fix/session-continuity-hook
:fix/context-dedup-shared-ids
:fix/engram-float-parser
:improve/recall-context-format
:improve/recall-context-dedup
:improve/recall-cross-session-continuity
:improve/recall-emotional-recall
:improve/recall-activation-seed
:improve/recall-recall-completeness
:improve/recall-temporal-precision
:improve/recall-engram-scoring
:improve/recall-recall-reliability
:improve/recall-session-start-recall
:improve/reliability-engram-write
:improve/reliability-state-management
:improve/soul-memory-formation
:improve/safety-crisis-detection
:improve/reliability-route-error-recovery
:improve/reliability-llm-retry
:improve/reliability-session-boundary
:improve/reliability-safety-resilience
:improve/reliability-engram-connection
:improve/soul-routes-api
:improve/reliability-cross-session-affective
:propose/agent-workspace-root-read
:improve/reliability-conv-history
:improve/soul-strip
:improve/soul-chat-pipeline
:docs/conversation-retrieval-design
:propose/no-fake-tools-in-chat-mode
:fix/ci-soul-build-single-file
:fix/canonical-self-bridge
:feat/agent-tool-workspace-scope
:fix/agentic-tools-duplicate-web-search
:green/agentic-fixes
:feat/connectors-soul
:feat/layer-safety
:feat/layer-imprint
:feat/layer-stewardship
:test/layer-composition
:test/layer-safety
:test/layer-stewardship
:test/layer-imprint
:feat/memory-delete-update
:feat/native-web-search
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Delete Branch "improve/recall-activation-seed"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Fixes activation-seed quality in
handle_chat,handle_chat_agentic,handle_dharma_room_turn, and the nlg soul path.Issues fixed
engram_is_continuation()(semantic detection using pronouns, continuation openers, length)handle_chatandhandle_chat_agenticusedhist_len-1(always the last assistant entry) as the topic anchor — scan-back now finds the prior user turnworkspace_rootso activation is workspace-awarehandle_dharma_room_turnandhandle_dharma_room_turn_agenticpassed the full transcript toengram_compile();distill_transcript()now extracts the salient tail + question insteaddist/soul-with-nlg.elcalledengram_compile(message)with zero thread enrichment; now usesbuild_activation_seed()for both handle_chat and agentic pathsengram_is_continuation()in both pathstopic_snip_from_entry()takes the TAIL of long assistant replies trimmed to last sentence boundarymulti_turn_topic()for richer thread continuityNew functions added to
chat.eltopic_snip_from_entry(content)— tail-biased 200-char snip with sentence boundarymulti_turn_topic(hist, hist_len)— collect up to 3 prior user turns into seeddistill_transcript(transcript)— recency tail + question context from transcriptbuild_activation_seed(message, hist, hist_len)— central orchestrator for all fixesTest plan
Pull request closed