mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-10 00:02:37 +02:00
- Route ingest tool through smart_ingest (Prediction Error Gating) to prevent duplicate memories when content is similar to existing entries - Fix Intel Mac release build: use macos-13 runner for x86_64-apple-darwin (macos-latest is now ARM64, causing silent cross-compile failures) - Sync npm package version to 1.1.2 (was 1.0.0 in package.json, 1.1.0 in postinstall.js BINARY_VERSION) - Add vestige-restore to npm makeExecutable list - Remove abandoned packages/core/ TypeScript package (pre-Rust implementation referencing FSRS-5, chromadb, ollama — 32K lines of dead code) - Sync workspace Cargo.toml version to 1.1.2 Closes #5 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
673 B
JSON
37 lines
673 B
JSON
{
|
|
"name": "vestige-mcp-server",
|
|
"version": "1.1.2",
|
|
"description": "Vestige MCP Server - AI Memory System for Claude and other assistants",
|
|
"bin": {
|
|
"vestige-mcp": "bin/vestige-mcp.js",
|
|
"vestige": "bin/vestige.js"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node scripts/postinstall.js"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"claude",
|
|
"ai",
|
|
"memory",
|
|
"vestige"
|
|
],
|
|
"author": "Sam Valladares",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/samvallad33/vestige.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"os": [
|
|
"darwin",
|
|
"linux",
|
|
"win32"
|
|
],
|
|
"cpu": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|