mirror of
https://github.com/samvallad33/vestige.git
synced 2026-06-30 21:59:39 +02:00
Release v2.1.23 Receipt Lock hardening
Hardens Sanhedrin Receipt Lock for model-agnostic use, adds fail-open telemetry and receipt docs, fixes smart_ingest batch safety, wires opt-in CUDA Qwen3 device selection, and refreshes dashboard/release assets. Fixes #58 Fixes #60
This commit is contained in:
parent
a8550410b0
commit
5edb163157
161 changed files with 1775 additions and 262 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@vestige/init",
|
||||
"version": "2.1.22",
|
||||
"version": "2.1.23",
|
||||
"description": "Configure Vestige local memory for MCP-compatible AI agents",
|
||||
"bin": {
|
||||
"vestige-init": "bin/init.js"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vestige-mcp-server",
|
||||
"version": "2.1.22",
|
||||
"version": "2.1.23",
|
||||
"mcpName": "io.github.samvallad33/vestige",
|
||||
"description": "Vestige MCP Server — local cognitive memory for MCP-compatible AI agents",
|
||||
"bin": {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ One-click installation bundle for Claude Desktop.
|
|||
|
||||
## For Users
|
||||
|
||||
1. Download `vestige-2.1.22.mcpb` from [GitHub Releases](https://github.com/samvallad33/vestige/releases)
|
||||
1. Download `vestige-2.1.23.mcpb` from [GitHub Releases](https://github.com/samvallad33/vestige/releases)
|
||||
2. Double-click to install
|
||||
3. Restart Claude Desktop
|
||||
|
||||
|
|
@ -34,5 +34,5 @@ vestige-mcpb/
|
|||
│ ├── vestige-mcp-darwin-arm64
|
||||
│ ├── vestige-mcp-linux-x64
|
||||
│ └── vestige-mcp-win32-x64.exe
|
||||
└── vestige-2.1.22.mcpb # Final bundle (generated)
|
||||
└── vestige-2.1.23.mcpb # Final bundle (generated)
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
VERSION="${1:-2.1.22}"
|
||||
VERSION="${1:-2.1.23}"
|
||||
REPO="samvallad33/vestige"
|
||||
TMPDIR="$(mktemp -d)"
|
||||
trap 'rm -rf "$TMPDIR"' EXIT
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"manifest_version": "0.2",
|
||||
"name": "vestige",
|
||||
"display_name": "Vestige",
|
||||
"version": "2.1.22",
|
||||
"version": "2.1.23",
|
||||
"description": "AI memory system built on 130 years of cognitive science. FSRS-6 spaced repetition, synaptic tagging, and local-first storage.",
|
||||
"author": {
|
||||
"name": "Sam Valladares",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue