mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-10 00:02:37 +02:00
Initial commit: Vestige v1.0.0 - Cognitive memory MCP server
FSRS-6 spaced repetition, spreading activation, synaptic tagging, hippocampal indexing, and 130 years of memory research. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
commit
f9c60eb5a7
169 changed files with 97206 additions and 0 deletions
74
packages/core/package.json
Normal file
74
packages/core/package.json
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
{
|
||||
"name": "@vestige/core",
|
||||
"version": "0.3.0",
|
||||
"description": "Cognitive memory for AI - FSRS-5, dual-strength, sleep consolidation",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./fsrs": {
|
||||
"types": "./dist/core/fsrs.d.ts",
|
||||
"import": "./dist/core/fsrs.js"
|
||||
},
|
||||
"./database": {
|
||||
"types": "./dist/core/database.d.ts",
|
||||
"import": "./dist/core/database.js"
|
||||
}
|
||||
},
|
||||
"bin": {
|
||||
"vestige": "./dist/cli.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"dev": "tsup --watch",
|
||||
"start": "node dist/index.js",
|
||||
"inspect": "npx @anthropic-ai/mcp-inspector node dist/index.js",
|
||||
"test": "rstest",
|
||||
"lint": "eslint src --ext .ts",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"keywords": [
|
||||
"mcp",
|
||||
"memory",
|
||||
"cognitive-science",
|
||||
"fsrs",
|
||||
"spaced-repetition",
|
||||
"knowledge-management",
|
||||
"second-brain",
|
||||
"ai",
|
||||
"claude"
|
||||
],
|
||||
"author": "samvallad33",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "^1.0.0",
|
||||
"better-sqlite3": "^11.0.0",
|
||||
"chokidar": "^3.6.0",
|
||||
"chromadb": "^1.9.0",
|
||||
"date-fns": "^3.6.0",
|
||||
"glob": "^10.4.0",
|
||||
"gray-matter": "^4.0.3",
|
||||
"marked": "^12.0.0",
|
||||
"nanoid": "^5.0.7",
|
||||
"natural": "^6.12.0",
|
||||
"node-cron": "^3.0.3",
|
||||
"ollama": "^0.5.0",
|
||||
"p-limit": "^6.0.0",
|
||||
"zod": "^3.23.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rstest/core": "^0.8.0",
|
||||
"@types/better-sqlite3": "^7.6.10",
|
||||
"@types/node": "^20.14.0",
|
||||
"@types/node-cron": "^3.0.11",
|
||||
"tsup": "^8.1.0",
|
||||
"typescript": "^5.4.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue