mirror of
https://github.com/samvallad33/vestige.git
synced 2026-04-25 00:36:22 +02:00
28-module CognitiveEngine with full neuroscience pipeline on every tool call. FSRS-6 now fully automatic: periodic consolidation (6h timer + inline every 100 tool calls), real retrievability formula, episodic-to-semantic auto-merge, cross-memory reinforcement, Park et al. triple retrieval scoring, ACT-R base-level activation, personalized w20 optimization. New tools (19 → 23): - dream: memory consolidation via replay, discovers hidden connections - explore_connections: graph traversal (chain, associations, bridges) - predict: proactive retrieval based on context and activity patterns - restore: memory restore from JSON backups All existing tools upgraded with cognitive pre/post processing pipelines. 33 files changed, ~4,100 lines added.
24 lines
592 B
JSON
24 lines
592 B
JSON
{
|
|
"name": "vestige",
|
|
"version": "1.5.0",
|
|
"private": true,
|
|
"description": "Cognitive memory for AI - MCP server with FSRS-6 spaced repetition",
|
|
"author": "Sam Valladares",
|
|
"license": "MIT OR Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/samvallad33/vestige"
|
|
},
|
|
"scripts": {
|
|
"build:mcp": "cargo build --release --package vestige-mcp",
|
|
"test": "cargo test --workspace",
|
|
"lint": "cargo clippy -- -D warnings",
|
|
"fmt": "cargo fmt"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|