// Agent profile
TencentDB Agent Memory (TencentCloud/TencentDB-Agent-Memory) is a team-level memory management system for AI agents, developed by Tencent Cloud. It transforms conversations, documentation, and code into four structured, reusable memory assets: Chat Memory (layered L0-L3 from raw conversations to persona-level abstractions), Skills (versioned workflows extracted from agent tool calls), LLM-Wiki (auto-indexed documentation with link graphs), and CodeGraph (symbol-level code indexing with call-graph and impact analysis). Assets are governed with role-based access control (private, team, restricted, agent visibility tiers) and can be selectively equipped to different agents with per-agent priority and retrieval mode tuning. Retrieval uses BM25 + vector search with reciprocal rank fusion (RRF) and layered fallback. Integrates with Claude Code, DeepSeek Harness, Codex, Hermes, and OpenClaw via a framework-agnostic proxy adapter. 22.7K GitHub stars in under 4 months, reached No. 1 on GitHub Trending multiple times. MIT-licensed, written in TypeScript.
TencentDB Agent Memory takes a different approach from individual-agent memory systems. Instead of giving one agent its own memory store, it provides a team-level hub where multiple agents share governed, structured knowledge. Conversations become Chat Memory. Documentation becomes LLM-Wiki. Code becomes CodeGraph. Agent workflows become reusable Skills. Each asset type is stored, versioned, and access-controlled independently, and agents are equipped with specific memory loadouts based on their role.
Four memory asset types: Chat Memory retains user preferences, facts, decisions, and interaction history, organized in layers from L0 (raw conversations) through L1 (extracted atoms), L2 (scenarios), to L3 (personas). Skills capture reusable workflows extracted from agent tool calls, complete with execution steps, resource files, and validation rules. LLM-Wiki converts product documentation into interconnected, auto-indexed pages with document-to-document link graphs. CodeGraph indexes code symbols, files, call relationships, and impact paths for dependency-aware code reasoning.
Team-level governance: Unlike personal memory systems, TencentDB Agent Memory provides role-based access control across all assets. Visibility tiers (private, team, restricted, agent) control who can read each memory asset. Skills start as private to the creating agent and can be promoted to team-shared after review. System admins manage global policy while team-level roles handle day-to-day access.
Agent equipping: Memory assets are bound to agents explicitly, not dumped wholesale. A research agent gets market analysis Wiki and data-gathering Skills. A build agent gets product Wiki and CodeGraph. A reviewer gets incident history and release checklists. Priority and retrieval mode are configurable per agent, so different roles pull different context from the same memory hub.
Cold-start capability: Teams do not start from zero. Existing codebases are imported and automatically indexed into CodeGraph. Documentation repositories are structured into LLM-Wiki. Prior agent conversation histories are ingested and processed into Chat Memory and Skills. The continuous learning pipeline then refines these assets asynchronously as new interactions occur.
Development teams deploy TencentDB Agent Memory when running multiple specialized agents that need shared context — a scout agent researching, a builder agent implementing, and a reviewer agent validating, all drawing from the same governed knowledge base. Enterprise teams use the access control model to partition sensitive assets while allowing cross-team knowledge sharing where appropriate. Teams migrating between agent frameworks use the proxy adapter to maintain memory continuity across tool changes.
The three-service architecture (Memory Core, Memory Hub, Proxy) requires Docker for deployment. The web management panel runs at localhost:8125. PersonaMem benchmark shows 76% accuracy with memory enabled versus 48% baseline — a 59% improvement in correctly applying user context across extended interactions. The project is MIT-licensed and growing rapidly (22K+ stars in under four months). The framework-agnostic proxy adapter means switching agent platforms does not require re-building the memory store.
TencentDB Agent Memory is for teams running multi-agent workflows that need governed, shared memory across different agent roles and frameworks. It is particularly valuable for organizations where multiple agents collaborate on complex tasks and need structured knowledge sharing with access control — not just individual agent recall, but team-level knowledge management.
Builder.io's open-source framework for building agent-native applications — shared actions, SQL-backed state, identity, tools, skills, jobs, observability, and UI surfaces that all work together.
CLI orchestration tool that installs and configures platform connectors for 16+ social and web sources — Twitter/X, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Persistent memory layer for AI coding agents — benchmark-backed (95.2% on LongMemEval-S), 92% fewer tokens per session vs full-context pasting, zero manual memory.add() calls.