TencentDB Agent Memory

September 8, 2026 · View on GitHub

← Back to README.md · 简体中文: INSTALL_CN.md

This document covers three installation modes:

  1. Full three-in-one stack: memory-core + memory-hub + proxy in one shot (recommended — lets coding agents like Claude Code plug directly into your team memory / knowledge / skill injection).
  2. Memory Hub only: lightweight deploy when Memory Core is already running.
  3. Using Proxy with Claude Code: point a coding agent at the proxy.

Boot memory-core + memory-hub + proxy in one command so coding agents can consume team memory / knowledge / skills through the proxy:

# 1) Fetch the scripts
git clone https://github.com/TencentCloud/TencentDB-Agent-Memory.git
cd TencentDB-Agent-Memory/deploy/global-images

# 2) One-shot boot (interactive)
./start-all.sh

start-all.sh is interactive. When run, it automatically:

  1. Copies .env.example to .env if .env doesn't exist
  2. Walks you through both LLM groups (press Enter to keep the current default):
    • memory group: MEMORY_LLM_BASE_URL / MEMORY_LLM_API_KEY / MEMORY_LLM_MODEL (used internally by memory + hub)
    • proxy group: PROXY_UPSTREAM_URL / PROXY_UPSTREAM_API_KEY / PROXY_UPSTREAM_MODEL (upstream the proxy forwards to; can reuse the memory group)
  3. Immediately probes the LLM connectivity after each group — if it fails, you're prompted to re-enter until it passes (or you abort)
  4. Writes the values back to .env for persistence
  5. Boots the three containers once everything passes

Dry-run validation (optional, checks without starting): ./verify.sh (--skip-llm to skip the LLM probe).

When it finishes, the script automatically:

  1. On the first boot, calls init-admin to create the admin user, generates a random 32-char user_key and persists it to ./.admin-key (reused across restarts of the same volume).

  2. Immediately runs POST /v3/meta/auth/verify to sanity-check the key. Once verified, it prints a ready-to-run block like:

    export ANTHROPIC_BASE_URL=http://127.0.0.1:8096/claude-code/default
    export ANTHROPIC_AUTH_TOKEN='sk-mem-<random 32 chars>'
    claude --model <whatever PROXY_UPSTREAM_MODEL is set to>
    

Default ports:

ServicePortPurpose
Memory Core8420memory read/write, auth, skill/RAG data plane
Panel UI8125team memory control panel
Knowledge8424wiki / code-graph service
Proxy8096LLM request proxy (Anthropic / OpenAI dual-protocol)

Optional: MongoDB storage backend (experimental, off by default)

What it does. The default storage backend is sqlite (zero extra dependencies; data lives on the container volume). MongoDB is an optional data plane for L0/L1/profile/skill documents plus native mongot BM25 search; metadata follows onto the same Mongo instance by default.

Off by default. ./start-all.sh is unchanged; existing sqlite deployments need no action. This remains an experimental feature and is not recommended as the production default.

Enabling it

./start-all-mongo.sh

The interactive flow is identical to ./start-all.sh. The script writes MEMORY_CORE_STORE_MODE=mongodb to .env, so later ./start-all.sh runs stay on MongoDB and do not silently fall back to sqlite.

If MONGODB_ENDPOINT is unset, the script starts a local mongodb-atlas-local container (mongod + mongot in one image — not cloud MongoDB Atlas). Data lands on mongo-local-* volumes, which ./stop-all.sh --purge also removes. To use an external Mongo cluster (cloud Atlas or a self-hosted replica set with mongot), set MONGODB_ENDPOINT in .env.

Disabling it

Comment out MEMORY_CORE_STORE_MODE in .env or set it to sqlite, then run ./start-all.sh.

⚠️ Switching storage backends does not migrate existing data. sqlite and MongoDB use separate data directories / instances: sqlite data lives in MEMORY_CORE_VOLUME, MongoDB data in mongo-local-* (or your external cluster). Data remains on the backend it was written to. This release requires you to back up and migrate manually; a later release will ship an official migration tool. Back up before switching. See deploy/global-images/README.md for operator details.


After deploy: making it useful

Starting the containers is just half the job. To make coding agents actually consume team memory, you also need to (a) create the org structure in the panel and (b) pick them from within an agent session.


⚠️ This section uses Claude Code as an example. If you're using a different agent, jump to its doc directly:

AgentDocs
CodeBuddyagents/codebuddy/
WorkBuddyagents/workbuddy/
Codexagents/codex/
DeepSeek Harnessagents/dsh/
OpenCodeagents/opencode/
Hermes / OpenClaw / Othersagents/README.md

Step 1: Log into the panel

Open http://localhost:8125 in your browser (Panel UI).

  • The first visit asks for a user_key — use the admin one printed at the end of start-all.sh (stored in deploy/global-images/.admin-key, a sk-mem-... string)
  • Once logged in, admin can directly use asset management features like Wiki, CodeGraph, and Skill, and create business assets such as Team / Agent / Task.
  • If you prefer to separate ops from business (recommended), create a normal business user → copy that user's user_key → log out → log back in as the new user.

Permission model (understand this first, or the later steps won't add up):

  • admin is the "ops account": responsible for organization-level actions — creating Teams, creating users, and adding users into Teams. The "New Team" and "New User" entries in the panel are visible only to admin.
  • Business users are the "app accounts": they manage assets (Agent / Task / Skill / Wiki / CodeGraph / memory) inside the Teams the admin added them to, and use their own user_key to drive coding agents like Claude Code.
  • Even in a single-machine local playground, keeping this split is recommended — don't use the admin key to drive CC.
  • Note: in 2.0.0-beta.1, admin could not own business assets; starting from 2.0.0 stable, admin can directly operate on assets.

Knowledge Service Swagger (optional, for API poking): http://localhost:8424/docs

Important (entry-point convention in the current version): the panel has no standalone "Users" menu. Creating a business user lives inside a Team's member management, so the order is: admin creates a Team first, then creates the business user inside that Team. Only admin can do this step.

After logging in as admin:

  1. Create a Team first: click the Team switcher in the top-left (the dropdown in the header showing the current team name) → "+ New Team" at the bottom of the panel → enter a name → create. (This entry is admin-only.)
  2. Open that Team's member management: left sidebar → "Members""Add Member" in the top-right.
  3. In the dialog, switch the mode to "Create New User & Add to Team" → enter a username (letters / digits / underscore only) → click "Create & Add".
    • To assign an initial key yourself, toggle "Custom User_Key"; otherwise the core generates one automatically.
  4. On success, the dialog shows the new user's user_key (sk-mem-...) exactly oncecopy and save it right away; the panel won't show the full value again.

In addition to the panel, this flow can also be completed via the API. Note that it requires two steps: user/create only creates the user account and does not add it to any Team; to "create a user and add them to a team", you must also call team-member/add. Both endpoints require admin / team-admin privilege — calling them with an ordinary business user's key returns permission_denied:

ADMIN_KEY=$(cat ./.admin-key)

# Step 1: create the user (account only, NOT added to any team). Note the returned data.user_id and data.default_user_key
curl -sS -X POST http://localhost:8420/v3/meta/user/create \
  -H "x-tdai-user-key: $ADMIN_KEY" \
  -H "x-tdai-service-id: default" \
  -H "Content-Type: application/json" \
  -d '{"username":"you"}' | jq

# Step 2: add that user_id to an existing Team (replace TEAM_ID; role is usually member)
curl -sS -X POST http://localhost:8420/v3/meta/team-member/add \
  -H "x-tdai-user-key: $ADMIN_KEY" \
  -H "x-tdai-service-id: default" \
  -H "Content-Type: application/json" \
  -d '{"team_id":"<TEAM_ID>","user_id":"<user_id from step 1>","role":"member"}' | jq

⚠️ Running only step 1 (user/create) creates a user that belongs to no team — it can't manage anything in the panel and won't appear in the session picker. You must also run step 2 team-member/add to match the panel's "Create New User & Add to Team". team-member/add requires the team_id Team to already exist, and you cannot add yourself.

The data.default_user_key (sk-mem-...) returned by step 1 is the login key for the new user — save it now; the panel won't show the full value again after creation.

Then log out of the panel and log back in with this new key — you're now a normal business user, and you can manage assets (Agent / Task / Skill / Wiki / memory) inside the Team the admin already added you to.

Creating a Team in the panel is admin-only. After logging in, a business user won't see the "New Team" entry — this is the panel's permission design, not a bug. When a business user needs a new Team, there are two ways: ① ask an admin to create it in the panel and add you; ② create it yourself via the team/create API with your own key (set owner_user_id to yourself — you automatically become that Team's admin). See the next step.

Step 2: Create Team / Agent / Task in the panel

Every memory entry attaches to a team / agent / task triple:

  1. Team: the Team switcher in the top-left (the header dropdown showing the current team name) → "+ New Team" at the bottom
    • A Team owns everything: memory, skill, knowledge

    • ⚠️ Only admin can create a Team in the panel; it's normal that a business user doesn't see this entry — ask an admin to create it and add you

    • 💡 Want a business user to self-serve a Team? There's no panel entry, but you can call the API with your own key and set owner_user_id to your own user_id — the core creates the Team and automatically makes you its admin (no separate add-member step needed):

      # Call with the business user's OWN user_key created in Step 1.5
      # "name" is the team name — change it to whatever you want (the example uses repro-own-team)
      curl -sS -X POST http://localhost:8420/v3/meta/team/create \
        -H "x-tdai-user-key: <that business user's user_key>" \
        -H "x-tdai-service-id: default" \
        -H "Content-Type: application/json" \
        -d '{"name":"repro-own-team","owner_user_id":"<that business user's user_id>"}' | jq
      

      name is the team's display name and is up to you (avoid duplicates under the same user, or it returns 409). team/create requires owner_user_id in the body to equal the user_id of the calling key (i.e. you can only create Teams you own), otherwise it returns permission_denied. Once created you are the owner and admin, and can manage assets / run sessions inside this Team right away.

  2. Agent: enter a Team → left sidebar "Agents" → New
    • Fill a clear description + system prompt (the agent's role)
    • e.g. bug-fix engineer, frontend reviewer, SQL tuner
  3. Task (optional): left sidebar "Task Board""New Task"
    • A Task is the concrete piece of work: "fix login XSS", "ship v1.4"
    • Memories link to Tasks; skipping Task still works but L2/L3 lose the Task dimension
    • To give the first session a "skip Task" shortcut, configure defaultTaskId on the proxy (see below)

Get at least 1 Team ready (admin-created in the panel, or self-served by a business user via the API above), at least 1 Agent inside it; Task is optional.

Step 3: Point Claude Code at the Proxy

export ANTHROPIC_BASE_URL=http://127.0.0.1:8096/claude-code/default
export ANTHROPIC_AUTH_TOKEN="<the sk-mem-... from Step 1.5>"
claude --model <whatever PROXY_UPSTREAM_MODEL is set to>
  • ANTHROPIC_BASE_URL reroutes CC's API from anthropic.com to the local proxy; the trailing default is the memory instance ID (x-tdai-service-id) — always default in this local deploy
  • ANTHROPIC_AUTH_TOKEN is the business user's user_key (the default_user_key returned in Step 1.5); proxy uses it to look up user_id via core, and only teams/agents/tasks owned by this user show up in the next step's picker
  • --model uses the upstream model name you configured in PROXY_UPSTREAM_MODEL (proxy forwards to PROXY_UPSTREAM_URL)

Step 4: First CC turn — pick Team → Agent → Task

Every new CC session, the proxy uses CC's native AskUserQuestion tool to walk you through three consecutive picks:

┌─────────────────────────────────────────────────┐
│  1. Please pick the Team for this session:     │
│     ○ Team A                                    │
│     ○ Team B                                    │
│                                                 │
│  2. Please pick an Agent under Team A:         │
│     ○ bug-fix engineer                         │
│     ○ frontend reviewer                        │
│                                                 │
│  3. Optionally pick a Task:                    │
│     ○ Fix login XSS                            │
│     ○ [Skip task binding]                      │
└─────────────────────────────────────────────────┘

Answer each with CC's usual arrow-key + Enter. Once done:

  • Proxy binds this session to that team/agent/task
  • Every subsequent turn, proxy auto-injects that agent's L2/L3 memory, skills, and knowledge into the system prompt
  • L0 (raw dialogue) is captured into memory-core's sqlite by default; if the experimental MongoDB backend is enabled, it is stored in MongoDB
  • Background workers extract L1 (memory) → L2 (scene) → L3 (persona) as thresholds are hit

Only a new CC session triggers the picker; subsequent turns inside the same claude process reuse the binding.

Step 5: Watch memory grow

After a chat, look in the panel:

  • Left sidebar → Memory → Chat Memory: L0 dialogue sliced into scenes
  • Agent detail page → Profile: L2 scenes + L3 persona accumulate
  • Skill list: if the LLM decides "this is a reusable how-to", it gets auto-extracted into a Skill

Memory-core /health also shows whether the pipeline is doing work:

curl -s http://localhost:8420/health | jq .services.pipelineWorker

Expect tasksConsumed / tasksCompleted to grow with dialogue.

FAQ

Q: CC session doesn't prompt me to pick anything? PROXY_ENABLE_SESSION_INIT=1 isn't set. start-all.sh defaults to PROXY_FULL_STACK=1 which enables it; if you overrode .env or ran PROXY_FULL_STACK=0, restart: PROXY_FULL_STACK=1 ./start-proxy.sh.

Q: The picker is empty (or only shows entries owned by someone else)? Make sure the current account has created at least one Team and Agent in the panel. If using the admin account, ensure you've created the relevant assets; if using a business user, check that you've created Agents under the corresponding team.

Q: I logged in as a business user but there's no "New Team" button? This is the panel's permission design, not a bug: creating a Team in the panel is admin-only. You have two options: ① ask an admin to log in → top-left Team switcher → "+ New Team", then add you under that Team's "Members"; ② create it yourself via the team/create API (set owner_user_id to your own user_id — you become that Team's admin; see Step 2). Either way, after you log back in the Team shows up in the picker.

Q: Panel shows "Panel API 8125 not started"? docker ps and check tdai-memory-hub is healthy. If not, look at docker logs tdai-memory-hub — most commonly a mis-set REMOTE_INSTANCE_URL or LLM_BASE_URL.

Q: L1/L2 never runs, records/ stays empty? Default promptMode=chat extracts memory from ordinary conversation. If you set code but the dialogue is small talk, the LLM decides there is nothing worth persisting and returns 0. Switch back to chat or have a real work-style conversation with the agent (edit files, run tests, give conclusions).

Q: How do I switch to another team/agent mid-work? Start a fresh claude session (new window / new session ID) — the picker runs again.


Memory Hub only

When Memory Core is already running on port 8420, one command pulls the Memory Hub image so you get the team memory panel:

docker pull docker.io/agentmemory/memory-hub:latest

Boot Panel + Knowledge Service:

docker run -d --name tdai-memory-hub \
  --add-host=host.docker.internal:host-gateway \
  -p 8125:8125 -p 8424:8424 \
  -v tdai-panel-data:/data/knowledge \
  -e REMOTE_INSTANCE_URL=http://host.docker.internal:8420 \
  -e REMOTE_INSTANCE_KEY=local \
  -e KNOWLEDGE_PUBLIC_BASE_URL=http://host.docker.internal:8424/v3 \
  -e LLM_MODE=custom \
  -e LLM_BASE_URL=<OPENAI_COMPATIBLE_BASE_URL> \
  -e LLM_API_KEY=<YOUR_API_KEY> \
  -e LLM_MODEL=<MODEL_ID> \
  docker.io/agentmemory/memory-hub:latest

Open http://localhost:8125.

Using Proxy with Agents

The Proxy supports 9 agent clients. Full setup instructions, adaptation details, and FAQs for each agent are in the agents/ directory:

AgentConfig methodDocs
Claude Codeenv vars or ~/.claude/settings.jsonagents/claude-code/
CodeBuddy~/.codebuddy/models.jsonagents/codebuddy/
WorkBuddy~/.workbuddy/models.jsonagents/workbuddy/
Codex~/.codex/config.toml (⚠️ first turn requires Plan mode)agents/codex/
DeepSeek Harness (dsh)~/.dsh/settings.yaml + .credentials.yamlagents/dsh/
OpenCode~/.config/opencode/opencode.jsonagents/opencode/
Hermes~/.hermes/config.yaml + header preselectagents/hermes/
OpenClaw~/.openclaw/openclaw.json + header preselectagents/openclaw/
Pipi-plugin extension (env vars)MemoryCore/pi-plugin/
Other platformsHeader preselect (generic)agents/README.md

The proxy pipeline in order: auth (validates user_key) → sessionInit (interactive team/agent/task picker) → injection (L2/L3 memory + skill + knowledge blended into the system prompt) → forward to the upstream LLM.

Disable the full pipeline (passthrough only): PROXY_FULL_STACK=0 ./start-proxy.sh.

Using Proxy with Pi

Pi is an open-source AI coding-agent harness. Pi is a first-class agent-source (pi) — its system prompts use a label-line format (Available tools:, Guidelines:) that is distinct from Claude Code (markdown headings) and CodeBuddy (XML tags), so the proxy ships a dedicated PiProfile parser. By installing the pi-plugin extension and pointing Pi at a custom tdai provider, Pi chat requests route through the Proxy for team memory — L3 persona, L2 scene index, L0 conversation capture, and on-demand L0/L1/L2 search.

Connection

Point Pi at the Proxy via the pi-plugin extension:

http://<proxy-host>:<port>/pi/<spaceId>/v1
  • <agent-source>: pi (first-class)
  • <spaceId>: memory instance ID (default for local deployments)
  • The /v1 suffix is required in the base URL: the OpenAI-completions provider appends /chat/completions but does not insert /v1, so including /v1 makes the request hit the Proxy's explicit /:agent/:spaceId/v1/chat/completions route.

Setup

  1. Install the pi-plugin (see MemoryCore/pi-plugin/README.md).
  2. Set the env vars (no secrets in files): TDAI_PROXY_URL, TDAI_SPACE_ID, TDAI_TEAM_ID, TDAI_AGENT_ID, TDAI_USER_KEY, TDAI_MODEL, and optionally TDAI_TASK_ID.
  3. Load the extension: pi -e /path/to/pi-plugin (or auto-discover from ~/.pi/agent/extensions/).
  4. Run: pi --provider tdai --model <model>.

Required Headers

Injected automatically by the pi-plugin extension:

HeaderSource
Authorization: BearerTDAI_USER_KEY (the user's API key, not the admin/gateway key)
x-team-id / x-agent-idenv vars (static per host)
x-task-idTDAI_TASK_IDoptional. Omit for broad recall across the agent's memories; set to narrow recall to a task. A stale/unknown task_id is dropped (not a hard mismatch), so it never blocks registration. (See Known limitation: x-task-id for the header preselect agents that still require it.)
x-conversation-iddynamic per Pi session (extension before_provider_headers hook)

Unlike the header-preselect agents (Hermes / OpenClaw), Pi does not require x-task-id: task_id is an optional business dimension in the kernel, and the proxy registers from team + agent alone (broad recall when the task is absent). If the required identity env vars (TDAI_USER_KEY, TDAI_TEAM_ID, TDAI_AGENT_ID) are missing, the plugin warns at load and skips registration so Pi still starts.

Optional: sessionInit.defaultTaskId (the "no task binding" option)

What it does. By default, the Task pick in the session-init form only lists the Tasks the user actually created in the panel. If they haven't created any, or they simply don't want to bind this session to any Task, the form gets stuck / bypasses. Setting sessionInit.defaultTaskId fixes that: the proxy prepends a virtual Task entry — labeled 本次不关联任务 ("Don't bind a task this time") — to the head of every team's task list. Picking it registers the session against that fallback task_id, so the flow completes cleanly without any real Task being attached.

When to enable it. Turn it on when:

  • You have Agents but no Tasks yet, and want CC / CodeBuddy users to finish the first-run picker without being blocked;
  • You want a "one-click skip Task" option on every session so users don't have to type or arrow-nav out of the picker;
  • You're running L2/L3 memory + skill without needing the Task dimension (Task is optional across the whole memory model — see Step 2 above).

How it behaves.

  • The virtual entry always appears first in the task list under every team. Real Tasks follow after it.
  • Picking it binds this session to task_id = <your defaultTaskId>. This ID does not need to exist in the control plane — the proxy skips getTask for it and injects no [Task] block into the system prompt. team / agent binding is still fully active, so memory / skill / knowledge injection all work normally.
  • Not configured → the picker only shows real Tasks (unchanged legacy behavior). Prior to this feature there was no "don't-bind-a-task" option at all — the picker simply couldn't produce a Task-less session through the standard form path.

Configuration

Add defaultTaskId under the existing sessionInit block of your proxy config.yaml (start-proxy.sh's generated config already has sessionInit; just append one line):

sessionInit:
  enabled: true
  maxRetries: 3
  injectAgentContext: true
  injectTaskContext: true
  defaultTaskId: "no-task"     # any stable string; not required to exist in the kernel
  headerAutoSelect:
    enabled: true
    teamHeader: "x-team-id"
    agentHeader: "x-agent-id"
    taskHeader: "x-task-id"
    onMismatch: "form"

Pick any short, stable value — no-task, default, or your own UUID all work. The value ends up recorded on session-init requests and in logs / telemetry, so if you look at traces later you'll see this ID marking sessions that opted out of Task binding.

💡 Same regeneration caveat as the /analyse marker: if you rely on deploy/global-images/start-proxy.sh, the generated config.yaml is overwritten on every start — either patch the script's YAML template to include defaultTaskId, or point PROXY_CONFIG_DIR at a directory holding your own hand-edited config.yaml.

Optional: /analyse URL marker (asset injection effectiveness review)

What it does. The Proxy ships a debug/evaluation feature called asset reflection. When enabled, any request whose URL contains an /analyse/ path segment gets a <asset_reflection> block appended to the end of its system prompt. That block instructs the LLM, in its final reply, to add a short debrief calling out — for each cloud asset tool it actually invoked this turn (<skill_tools>, <tdai_memory_tools>, <knowledge_tools>) — whether the tool helped or not (what key info it got, what detour it avoided, or why the call missed). Tools that were not invoked are omitted; if nothing was invoked, the reply must still emit the fixed line 【资产反思】本轮未使用任何云端资产工具。

This is designed as an internal effectiveness probe: you point a subset of traffic (a benchmark run, an ad-hoc curl, a Team's staging CC session) at the /analyse URL and read back the model's own per-tool debrief, so you can measure whether the memory / skill / knowledge injections are earning their tokens. It is intentionally opt-in and not meant for production user traffic.

Path shape

Insert /analyse as a segment between /{agent}/{spaceId} and the protocol tail. Structure is identical to /cost-guard. Examples:

# Claude Code (Anthropic Messages)
http://<proxy-host>:<port>/claude-code/<spaceId>/analyse/v1/messages

# CodeBuddy (OpenAI Chat Completions)
http://<proxy-host>:<port>/codebuddy/<spaceId>/analyse/v1/chat/completions

# Codex (OpenAI Responses)
http://<proxy-host>:<port>/codex/<spaceId>/analyse/v1/responses
http://<proxy-host>:<port>/codex/<spaceId>/analyse/responses   # base_url without /v1

# OpenCode (OpenAI Chat Completions, same protocol as CodeBuddy)
http://<proxy-host>:<port>/opencode/<spaceId>/analyse/v1/chat/completions
http://<proxy-host>:<port>/opencode/<spaceId>/analyse/chat/completions   # base_url without /v1

Non-/analyse requests are untouched — the injector emits nothing and the upstream KV-cache prefix stays byte-identical to normal traffic.

Enabling it (dual gate)

Gate 1 — config flag. injection.assetReflection.markerOptIn defaults to truestart-proxy.sh's generated config and config.example.yaml both set it to true, and dropping the key altogether still resolves to true. You only need to add the block below to the proxy config.yaml when you want to explicitly disable the marker:

injection:
  enabled: true
  injectors:
    - skill
    - knowledge
    - tdai-memory
  assetReflection:
    markerOptIn: false      # default true; set false to reject /analyse marker

When markerOptIn is explicitly set to false, any request carrying an /analyse/ segment is rejected with 404 analyse_marker_disabled — a safety net for deployments that don't want the reflection capability, so a client that "thinks" it enabled the marker can't silently fall through to plain forwarding.

Gate 2 — URL segment. Even with markerOptIn: true, the reflection block is only appended when the request URL actually contains /analyse/. Plain /claude-code/<spaceId>/v1/messages traffic runs exactly as before.

Effective tag list

The tags listed inside the reflection block are computed from the injectors actually registered on this node (skill / tdai-memory / knowledge). If none of these injectors is enabled, the block is empty (the injector short-circuits). This means the marker is only useful when at least one asset injector is on the pipeline.

💡 If you're using start-proxy.sh from deploy/global-images/, the generated config.yaml is regenerated on every launch. Either edit start-proxy.sh to include the assetReflection block, or point PROXY_CONFIG_DIR at a directory holding your own hand-edited config.yaml and skip regeneration.

Known limitation: x-task-id

⚠️ Current version limitation: x-task-id is required for Hermes / OpenClaw.

The Proxy's header auto-select mechanism requires all three of x-team-id + x-agent-id + x-task-id to complete session registration directly. Without x-task-id, the Proxy falls back to an interactive form flow — which Hermes / OpenClaw cannot respond to, resulting in session bypass (no memory injection or conversation recording).

Inconveniences:

  1. Users must create a Task in the admin panel beforehand and obtain the task_id, increasing onboarding friction.
  2. Switching tasks requires manually editing the config file.

In the next version, we will make x-task-id optional: when not provided, the Proxy will auto-select the agent's default task or skip task binding entirely.

Known limitation: x-conversation-id

⚠️ Current version limitation: Hermes and OpenClaw require x-conversation-id to be statically specified in the config file. This differs from Claude Code / CodeBuddy (where the SDK automatically manages the session ID).

Current limitations:

  1. All requests sharing the same conversation ID belong to the same session — memory injection and conversation recording are bound to this ID.
  2. Starting a new conversation requires manually changing the conversation ID, otherwise the previous session state continues.
  3. Some clients may not carry extra headers on tool-call follow-up requests, causing those turns to skip memory injection and conversation recording.

In the next version, the Proxy will support automatic generation and management of conversation IDs, eliminating the need for clients to specify this field manually.

Optional: Analytics & observability (off by default)

What it does. The Analytics page in the Panel rolls up how this stack is actually being used: how often each cloud-asset tool (skill / memory / knowledge) is invoked, its hit rate, LLM-side token and usage distribution, and per-team / per-agent comparisons — so you can judge whether the memory assets you've curated are earning their keep, and where onboarding is going sideways.

Off by default. This capability does not start automatically — it is split across three services, and skipping ClickHouse on any of them leaves the corresponding data blank:

RoleServiceWhat it does
Capture (memory / skill tool calls)ProxyEvery memory / skill cloud-asset tool call is written to ClickHouse usage_logs / tool_call_logs
Capture (wiki / code-graph tool calls)KnowledgeEvery wiki / code-graph tool call is written to ClickHouse tool_call_logs
Query APICoreExposes read-only /v3/analytics/* endpoints that aggregate the ClickHouse tables Proxy wrote to
Query APIKnowledgeExposes its own read-only /v3/analytics/* endpoints against its tool_call_logs
RenderingPanelOn startup probes Core / Knowledge /v3/analytics/config; only the ones that return configured: true get their charts rendered, the rest show "Not enabled"

Put briefly: Proxy + Knowledge write, Core + Knowledge query, Panel renders. You can turn on just a subset — for instance, if you only want skill / memory analytics and don't care about Wiki yet, you can skip Knowledge-side capture.

⚠️ The three ClickHouse pointers may target the same instance or separate ones, but Core's analytics.clickhouse.endpoint must point at the same ClickHouse that Proxy writes to — otherwise Core can't see any of Proxy's data.

Step 1: Provision a ClickHouse instance

Spin up ClickHouse (or reuse an existing one) and make sure its HTTP port (default 8123) is reachable. For the simplest setup, let Proxy and Knowledge share the same database (e.g. context_proxy); you can also split them.

# Example: one command for a local ClickHouse
docker run -d --name tdai-clickhouse \
  -p 8123:8123 -p 9000:9000 \
  -e CLICKHOUSE_DB=context_proxy \
  -e CLICKHOUSE_USER=default \
  -e CLICKHOUSE_PASSWORD=<your-ch-password> \
  clickhouse/clickhouse-server:latest

Table schemas are created automatically by Proxy / Knowledge on first write (CREATE TABLE IF NOT EXISTS) — no DDL needed by hand.

Step 2: Turn on ClickHouse export in Proxy

Edit proxy's config.yaml (the template generated by start-proxy.sh already has a clickhouse: block, defaulted to enabled: false):

clickhouse:
  enabled: true
  url: "http://<ch-host>:8123"       # ClickHouse HTTP endpoint
  database: context_proxy            # DB name; must match Core below
  table: usage_logs                  # usage table
  rawTable: usage_raw                # raw usage fallback table
  user: default
  password: "<your-ch-password>"
  flushIntervalMs: 5000
  flushThreshold: 50
  ttlDays: 30

Proxy writes memory / skill tool calls plus LLM token usage per turn into usage_logs and tool_call_logs. Write failures degrade silently and never block Proxy's forwarding path.

💡 If you rely on deploy/global-images/start-proxy.sh, the generated config.yaml is overwritten on every start. Either patch the script's YAML template to add the clickhouse block, or point PROXY_CONFIG_DIR at a directory holding your own hand-maintained config.yaml.

Step 3: Turn on ClickHouse export + query API in Knowledge

Knowledge's ClickHouse config lives in .env — edit MemoryKnowledge/.env (or whatever env file start-memory-hub.sh uses):

# ═══ Telemetry export (writes tool_call_logs) ═══
KNOWLEDGE_CLICKHOUSE_ENABLED=true
KNOWLEDGE_CLICKHOUSE_URL=http://<ch-host>:8123
KNOWLEDGE_CLICKHOUSE_DATABASE=context_proxy      # match Proxy above
KNOWLEDGE_CLICKHOUSE_TABLE=tool_call_logs
KNOWLEDGE_CLICKHOUSE_USER=default
KNOWLEDGE_CLICKHOUSE_PASSWORD=<your-ch-password> # required if CH auth is on
KNOWLEDGE_CLICKHOUSE_FLUSH_INTERVAL_MS=5000
KNOWLEDGE_CLICKHOUSE_FLUSH_THRESHOLD=50
KNOWLEDGE_CLICKHOUSE_TTL_DAYS=90

# ═══ /v3/analytics/* query API auth ═══
# Query endpoints require x-tdai-user-key to match this admin key.
# Panel uses the admin user_key by default.
KNOWLEDGE_ANALYTICS_ADMIN_KEY=<admin sk-mem-... or any stable string>

Leaving KNOWLEDGE_ANALYTICS_ADMIN_KEY empty makes the /v3/analytics/* data endpoints return 503 (the /config probe still works, and Panel just marks Wiki / Code-Graph charts as "Not enabled"). Once set, Panel can pull data. The simplest value is the admin user_key (the sk-mem-... in .admin-key); any stable string works — the frontend sends this key as x-tdai-user-key when hitting Knowledge's analytics endpoints.

Step 4: Turn on the analytics query API in Core

Core needs a read-only ClickHouse query module pointed at the CH that Proxy is writing to. Edit MemoryCore/tdai-gateway.yaml (or whichever yaml start-memory-core.sh uses):

analytics:
  clickhouse:
    enabled: true
    endpoint: "http://<ch-host>:8123"   # must point at the same CH Proxy writes to
    username: "default"
    password: "<your-ch-password>"      # inject via secret / .env
    database: "context_proxy"           # match Proxy's database

This is entirely separate from Core's existing observability.clickhouse (which exports OTel traces to tdai_eval) — that one pushes Core's own traces outward, this one reads back the telemetry Proxy already persisted.

Once configured, Core exposes 16 additional read-only /v3/analytics/* endpoints, and Panel uses them to render session-init / tool-call / usage charts.

Step 5: Restart the stack and verify

# Restart (if using the one-shot deploy)
./stop-all.sh
./start-all.sh

Sanity checks:

# Core probe: configured=true means analytics is on
curl -s http://localhost:8420/v3/analytics/config \
  -H "x-tdai-service-id: default" \
  -H "x-tdai-user-key: <admin sk-mem-...>" | jq

# Knowledge probe (no user_key needed for /config)
curl -s http://localhost:8424/v3/analytics/config \
  -H "x-tdai-service-id: default" | jq

Both should return {"configured": true, ...}. Then open the Panel "Analytics" page — you'll see rollups of Proxy / Knowledge tool calls. If either side returns configured: false, Panel simply marks those charts as "Not enabled" without erroring out.

Cheat sheet for common problems.

  • Panel says "Not enabled" or "No data" → curl both /config endpoints first; fix the ClickHouse config of whichever side reports configured: false.
  • Proxy is receiving requests but Core can't see data → the most likely cause is Core's analytics.clickhouse.database / endpoint not matching Proxy's clickhouse.database / url.
  • Knowledge /v3/analytics/* returns 401 → KNOWLEDGE_ANALYTICS_ADMIN_KEY is unset, or doesn't match the x-tdai-user-key Panel is sending.

Stop / cleanup

./stop-all.sh            # stop containers, keep volumes & admin key
./stop-all.sh --purge    # nuke volumes, admin key, and generated proxy config

More

Additional installation modes (OpenClaw, Hermes, CodeBuddy, WorkBuddy, SDK, running from source, K8s, platform notes) — see deploy/global-images/README.md and MemoryCore/README.md.