HN 표시: Magma Memory Claude Browser 클로킹 도구

hackernews | | 📦 오픈소스
#ai #ai 딜 #browser #claude #gemini #llama #local-first #memory #mistral #openai
원문 출처: hackernews · Genesis Park에서 요약 및 분석

요약

VEKTOR가 개발한 '마그마 메모리(MAGMA)'는 AI 에이전트를 위한 하드웨어 가속 기반의 로컬 전용 영구 메모리 시스템으로, 클라우드 없이 완전히 오프라인에서 구동되며 $159의 1회성 결제로 최대 3대의 기기에서 사용할 수 있습니다. 이 시스템은 4계층 연관 그래프와 중복 및 모순을 제거하는 AUDN 큐레이션 루프, 최대 50:1 압축이 가능한 REM 드림 사이클을 지원하여 평균 8ms의 매우 빠른 의미론적 검색 속도를 자랑합니다. 또한 자체 로컬 ONNX 모델을 통해 임베딩 비용을 $0로 유지하며, 익명성을 보장하는 스텔스 브라우저(cloak_fetch)와 AES-256-GCM 암호화 자격 증명 저장소 같은 보안 도구들도 함께 제공됩니다.

본문

Hardware-accelerated persistent memory for AI agents. Local-first. No cloud. One-time payment. npm install vektor-slipstream npx vektor setup const { createMemory } = require('vektor-slipstream'); const memory = await createMemory({ agentId: 'my-agent', licenceKey: process.env.VEKTOR_LICENCE_KEY, }); // Store a memory await memory.remember('User prefers TypeScript over JavaScript'); // Recall by semantic similarity — avg 8ms, fully local const results = await memory.recall('coding preferences'); // → [{ content, score, id }] // Traverse the graph const graph = await memory.graph('TypeScript', { hops: 2 }); // What changed in 7 days? const delta = await memory.delta('project decisions', 7); // Morning briefing const brief = await memory.briefing(); npx vektor setup # First-run wizard — licence, hardware, integrations npx vektor activate # Activate licence key on this machine npx vektor test # Test memory engine with progress bar npx vektor status # System health check npx vektor mcp # Start Claude Desktop MCP server npx vektor rem # Run REM dream cycle npx vektor help # All commands - 4-layer associative graph — semantic, causal, temporal, entity - AUDN curation loop — zero contradictions, zero duplicates - REM dream cycle — 7 phases, up to 50:1 compression - Sub-20ms recall — HNSW index, local SQLite - Local ONNX embeddings — $0 embedding cost, no API key required - Claude MCP — vektor_recall ,vektor_store ,vektor_graph ,vektor_delta - LangChain — v1 + v2 adapter included - OpenAI Agents SDK — drop-in integration - Mistral — vektor_memoire HTTP tool, localhost bridge - Gemini · Groq · Ollama — provider agnostic cloak_fetch — stealth headless browser fetchcloak_render — computed CSS · post-JS DOM sensorcloak_passport — AES-256-GCM credential vault, machine-boundcloak_diff — semantic diff since last fetchtokens_saved — ROI audit per session const { cloak_passport, cloak_fetch, tokens_saved } = require('vektor-slipstream/cloak'); // Store credentials securely cloak_passport('GITHUB_TOKEN', 'ghp_xxxx'); const token = cloak_passport('GITHUB_TOKEN'); // Stealth browser fetch const { text, tokensSaved } = await cloak_fetch('https://example.com'); // ROI audit const roi = tokens_saved({ raw_tokens: 10000, actual_tokens: 3000 }); // → { reduction_pct: 70, cost_saved_usd: 0.0175, roi_multiple: 2.3 } | Metric | Value | |---|---| | Recall latency | ~8ms avg (local SQLite) | | Embedding cost | $0 — fully local ONNX | | Embedding latency | ~10ms GPU / ~25ms CPU | | First run | ~2 min (downloads ~25MB model once) | | Subsequent boots | <100ms | Zero config. VEKTOR detects and uses the best available accelerator: - NVIDIA CUDA — GPU acceleration - Apple Silicon — CoreML - CPU — optimised fallback, works everywhere Commercial licence. One-time payment of $159. Activates on up to 3 machines. Manage at polar.sh. Purchase: vektormemory.com/product#pricing Docs: vektormemory.com/docs Support: [email protected] Built on peer-reviewed research: - MAGMA (arxiv:2601.03236) — Multi-Graph Agentic Memory Architecture - EverMemOS (arxiv:2601.02163) — Self-Organizing Memory OS - Mem0 (arxiv:2504.19413) — Production-Ready Agent Memory

Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.

공유

관련 저널 읽기

전체 보기 →