惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🚀 Truenex Memory v0.1.0-alpha.1 – Your local, searchable ...
Marco Mannon · 2026-05-15 · via DEV Community

Marco Mannone

🚀 Truenex Memory v0.1.0‑alpha.1 – Your local, searchable knowledge vault 🧠📦

If you’ve ever lost track of where a config was saved, a file lived in two projects, or you just want a single source of truth for everything you’re building, Truenex Memory is the open‑source solution.

Truenex Memory stores project‑local metadata (think “I added a new API key”, “This repo is obsolete”) and makes that data searchable, importable, and exportable with a single command. It’s the missing glue between your repo’s internal knowledge and your CI/CD pipeline.


📦 Why it matters

  • No more “where is that file?” – The CLI finds it instantly.
  • Immutable audit trail – Every change is recorded and can be restored.
  • CI‑friendly – Global health checks keep your pipelines green.
  • Open‑source – You own the data, you own the code.

🔑 What’s new in v0.1.0‑alpha.1?

Feature What it does 🎉
Local project memory Add, search, list & track lifecycle status (active / obsolete / superseded / conflicting / unverified). 📚
truenex-mem CLI Full --help tree, type‑checked with Typer. 🖥️
MCP stdio server Expose memory_search, memory_add, global_status, global_project_context. 🌐
JSON export/import Human‑readable snapshots you can share. 📤
SQLite store Schema migrated from v1 → v4, safe migration backup/restore. 💾
Manifest‑driven ingestion Dry‑run validation before ingestion.
Global refresh pipeline Health checks + stale catalog cleanup. 🛡️

Code snippet – run the CLI

# Add a new entry
truenex-mem add --project my‑app --key api-key --value "sk‑12345"
# Search everything
truenex-mem search --query "api-key"

🛠️ How to get started

  1. Clone the repo
   git clone https://github.com/marcomnit/truenex-memory.git
   cd truenex-memory

Enter fullscreen mode Exit fullscreen mode

  1. Install dependencies
   pip install -e .

Enter fullscreen mode Exit fullscreen mode

  1. Initialize a project
   truenex-mem init my-app   # creates a SQLite store

Enter fullscreen mode Exit fullscreen mode

  1. Add entries
   truenex-mem add --project my-app --key "database-url" --value "postgres://..."

Enter fullscreen mode Exit fullscreen mode

  1. Search
   truenex-mem search --query "database-url"

Enter fullscreen mode Exit fullscreen mode

  1. Export a snapshot
   truenex-mem export -f my-app.json

Enter fullscreen mode Exit fullscreen mode


📣 Call to action

We’re just in the alpha phase, so your feedback is gold. 👀

  • 👍 Use the “💬” button on the GitHub repo.
  • 🚨 Report bugs or feature ideas via the ISSUE template.
  • 🌍 Fork, extend, or star if you love the idea.

Truenex Memory is a community‑driven tool: the more you use it, the better it gets. Let’s make knowledge searchable, portable, and forever.


Stay curious. Stay organized. 🌟




## Instructions

1. Go to https://dev.to/new
2. Paste the article (without

Enter fullscreen mode Exit fullscreen mode