feat: Phase 5 — Autonomous Knowledge Architecture (7 features)#129
Open
salishforge wants to merge 2 commits into
Open
feat: Phase 5 — Autonomous Knowledge Architecture (7 features)#129salishforge wants to merge 2 commits into
salishforge wants to merge 2 commits into
Conversation
1. Epistemic Confidence Model — calibrated uncertainty (established/ provisional/contested/inferred) with evidence counting, auto-promotion via sleep Phase 5.12, and query-time epistemic filtering 2. Explainable Memory Operations — every retrieval returns WHY via ExplanationFactor[] (rank score, epistemic status, search mode, temporal decay). New memforge_explain tool for per-memory state audit 3. Causal Memory Graph — inferred cause→effect chains from temporal patterns via sleep Phase 6.1, recursive CTE traversal, and memforge_predict tool for "what typically follows X?" 4. Hierarchical Abstraction Engine — auto-extract principles from meta-reflections via sleep Phase 5.11, memforge_principles and memforge_mental_models tools 5. Adaptive Sleep Intelligence — per-phase analytics tracking, auto-skip phases with 3 consecutive zero-change cycles 6. Memory Sentiment Tagging — keyword-inferred urgency/sentiment/ session_type context signals on hot and warm tiers 7. Cross-Agent Transfer Learning — memforge_bootstrap copies established knowledge between agents with confidence discounting and provenance tracking Schema: migration-v3.8.sql (epistemic columns, causal_edges, abstractions, sleep_phase_analytics, context_signals) New MCP tools: memforge_certainty, memforge_explain, memforge_causal_chain, memforge_predict, memforge_principles, memforge_mental_models, memforge_bootstrap New REST endpoints: /epistemic, /causal, /predict, /principles, /abstractions, /bootstrap https://claude.ai/code/session_0116EhmLb79eeBTN8P4wwFC1
…orts - Add epistemic_status, evidence_count, context_signals columns to canonical hot_tier and warm_tier definitions - Add causal_edges, abstractions, sleep_phase_analytics tables - Add RLS policies for new tables - Remove unused EpistemicStatus, EpistemicFilter, PhaseAnalytics imports Fixes CI lint errors and integration test failures from missing columns. https://claude.ai/code/session_0116EhmLb79eeBTN8P4wwFC1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Phase 5: Autonomous Knowledge Architecture
7 features that push MemForge beyond any competitor — from remembering to understanding.
New capabilities
memforge_certaintymemforge_explainmemforge_causal_chain,memforge_predictmemforge_principles,memforge_mental_modelsmemforge_bootstrapNew sleep cycle phases
New REST endpoints
GET /memory/:id/epistemic— epistemic profileGET /memory/:id/causal— causal chain traversalPOST /memory/:id/predict— predictive queryGET /memory/:id/principles— learned principlesGET /memory/:id/abstractions— all abstraction levelsPOST /memory/:id/bootstrap— transfer learningStats
migration-v3.8.sqlTest plan
tsc --noEmit— 0 errorshttps://claude.ai/code/session_0116EhmLb79eeBTN8P4wwFC1