Glean 拾遗
Daily · timeline

A few picks a day.

Sun, Jul 19, 2026 3picks
← 07-18
Calendar ▾
2026 · 07
MoTuWeThFrSaSu ··12345678910111213141516171819202122232425262728293031
has picks today
06:01

Persistent Memory Compression System for Coding Agents Across Sessions

持久化 AI 记忆压缩系统,赋予编码智能体跨会话上下文

Claude-Mem is a persistent memory plugin for coding agents like Claude Code. It solves the problem of context amnesia between AI coding sessions by automatically capturing all tool-use observations, generating AI-compressed semantic summaries, and injecting relevant context into future sessions. It uses a progressive disclosure retrieval pattern that saves tokens by loading memory details in layers. Featuring an SQLite backend, a Chroma vector database for hybrid search, a real-time web viewer, and MCP-based natural language search tools, it helps developers maintain project continuity across reboots without manual intervention.

github.com · 11 min · Ai-Memory · Claude Code · Memory · Plugin · SQLite · Vector-Db
06:01

What we’ve learned building cloud agents

Cursor 的云智能体实践总结:环境即产品,Temporal 实现持久执行

Cursor shares one year of lessons from building cloud agents. The biggest takeaway: a cloud agent's output quality depends almost entirely on having a full development environment. Unlike local agents that inherit your laptop's environment, cloud agents need it reconstructed from scratch. This led to building VM hibernation/resumption pipelines, checkpoint/restore/fork mechanisms, secret redaction, network policies, and credential management — essentially enterprise IT for agents. For reliability, early work-stealing architecture managed only one 9 of uptime. Migrating to Temporal's durable execution framework pushed past two 9s, handling over 50 million actions per day across 7 million+ unique workflows, with 40%+ of Cursor's own PRs now coming from cloud agents. Critical architectural decision: decoupling agent loop, machine state, and conversation state allows agents to run across different pod types and subagents to outlive parents. Another insight: as models improve, move logic out of the hardcoded harness into tools the agent controls (e.g., GitHub CLI, Playwright). The post also discusses current harness for computer use and future self-healing environments (autoinstall).

cursor.com · 11 min · Agent Architecture · Agent Infrastructure · Agents · Cursor · Temporal
06:01

Unibase Memory: Share Context Across ChatGPT, Claude, and Gemini

跨模型记忆共享:用Unibase打通ChatGPT、Claude与Gemini

When using multiple AI tools, context is lost between sessions, wasting hours re-explaining. Unibase Memory is a Chrome extension that captures, organizes, and injects memory across ChatGPT, Claude, and Gemini, enabling shared context. The post covers a 5-step setup from installation to advanced workflows (research-to-draft, persistent brand voice, cross-tool building), with local encryption and optional decentralized sync. For engineers and creators juggling multiple AI models, it offers a practical solution to AI memory fragmentation.