Developer Builds LibraHQ App to Solve AI Agent Memory Problem

The Problem: AI Agents Forgetting Context
A developer on r/ClaudeAI described a common workflow issue: when updating product decisions in ChatGPT or Claude, they had to manually sync changes to their repository. Starting new Cursor or Claude code sessions required re-explaining problems already worked through.
Initial Solutions and Limitations
The developer first built a local MCP (Model Context Protocol) to have Claude Desktop directly edit project document files. This didn't work for mobile ideation and product planning done on their phone.
Next, they built an MCP server + GitHub app to directly link chatbots and repositories for document writing. However, this required installing an untrusted GitHub app into repositories, which system administrators rejected for workplace use.
LibraHQ: The Current Solution
The developer built LibraHQ.app, a free notes app that sits between chatbots and coding agents as a context layer. Key features:
- Records important notes and decisions from chats
- Stores information in Libra for future chats
- Helps coordinate various AI agents
- Completely free to use
Why Not Obsidian?
The developer considered using Obsidian + MCP but decided against it for several reasons:
- Not all repositories need all context - some information is unrelated
- Need ability to clean up documents periodically and find inconsistencies
- Require an ingest pipeline for new documents that carefully examines existing content before adding new information
- System should either write new documents with proper linking or update existing documents
The developer noted this memory problem will likely become more significant as multi-agent work continues to grow.
📖 Read the full source: r/ClaudeAI
👀 See Also

Phalanx CLI coordinates multiple AI agents for automated code-review cycles
A developer built Phalanx, a CLI tool that coordinates AI agents from different providers: Codex handles coding, Claude Opus performs code review, and Claude Sonnet orchestrates the loop. A companion tool called Codebones compresses repositories to structural maps to reduce token usage.

Claude Code Routines: Automated Cloud Tasks for AI Development Workflows
Claude Code Routines allow developers to save Claude Code configurations as automated tasks that run on Anthropic-managed cloud infrastructure. Routines support scheduled, API, and GitHub triggers for unattended execution of prompts against repositories.

AVP Protocol Enables LLM Agents to Share KV-Cache Instead of Text for Token Efficiency
AVP (Agent Vector Protocol) allows LLM agents to pass KV-cache directly between them instead of text, reducing token processing by 73-78% and achieving 2-4x speedups across Qwen, Llama, and DeepSeek models. The protocol works with HuggingFace and vLLM connectors and is available as a Python package.

Claude Code Undocumented Features: Hooks, Memory, YOLO Classifier & More
The Claude Code source reveals hidden configs: YOLO Classifier for auto-permission, hooks that rewrite commands, persistent agent memory, auto-mode rules in plain English, and dream loops.