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

推荐订阅源

博客园_首页
C
Check Point Blog
B
Blog RSS Feed
G
Google Developers Blog
H
Help Net Security
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Recent Announcements
Recent Announcements
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
小众软件
小众软件
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
T
Tailwind CSS Blog
J
Java Code Geeks
MyScale Blog
MyScale Blog
雷峰网
雷峰网
有赞技术团队
有赞技术团队
博客园 - 聂微东

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
metaBrain - open-source local memory for AI agents
OpenCow42 · 2026-06-03 · via Hacker News - Newest: "AI"

Open source. Local first. Agent ready.

Local document memory for AI tools, coding agents, and the humans who work with them.

Give every agent one durable, searchable place for notes, source snippets, task context, metadata, tags, links, and version history.

Start small

Install it, then give agents a shared memory.

metaBrain ships as the `mb` CLI, the optional `mbd` local daemon, and the embeddable `MetaBrainCore` Swift library.

brew tap OpenCow42/tap && brew install mb

Made for AI and agents alike

A memory layer agents can actually use.

Agents do not need a private file convention for every task. metaBrain gives them a stable local store with predictable paths, searchable content, tags, metadata, references, and retained versions.

01

Write durable facts

Store summaries, decisions, and task state where the next agent can find them.

mb put /tasks/release-checklist \
  "Prepare first public release." \
  --tag release --meta status=active

02

Search workspace memory

Retrieve context by words, paths, tags, or metadata instead of hunting through scratch files.

mb search "public release" --tag release

03

Patch without rewriting

Apply focused unified diffs to stored documents and keep the old versions available.

mb patch /tasks/release-checklist --patch-file change.diff

Why try it

Small CLI. Useful memory model.

metaBrain keeps the interface plain enough for shell scripts and rich enough for long-running agent workflows.

Workspace local

The default store lives at `.metabrain/store.leveldb`, so tools can discover it without setup ceremony.

Searchable

Current document chunks are indexed for lexical search with tag, metadata, and path filters.

Structured

Documents carry metadata, tags, references, retained versions, and filesystem-like paths.

Versioned

Updates keep snapshots, and `patch` can apply unified diffs to stored document bodies.

Daemon ready

`mbd` can serve multiple local metaBrain databases through one daemon, so agents can work with separate stores concurrently.

Embeddable core

`MetaBrainCore` keeps shared behavior in a Swift library for future tools and interfaces.

Five-command tour

Try the CLI in a clean workspace.

Create a store, write a note, browse the tree, search it, and read the body back. That is enough to feel the shape of the tool.

mb init
mb put /notes/today "Remember the lexical store." --tag planning --meta source=agent
mb list /notes --recursive --dates
mb tree --max-depth 2
mb search "lexical store" --tag planning
mb get /notes/today

Open source

Built in the open for local-first agent work.

The project is BSD 3-Clause licensed, hosted on GitHub, and currently supports macOS, Linux, and Windows.