Skip to main content
Glama
ac0033

agent-memory

by ac0033

agent-memory

Локальная инфраструктура долговременной памяти. Агент-нейтральная: не привязана к какому-либо конкретному фреймворку агентов, доступна тремя способами—

  • Python-библиотека: фреймворки вроде LangGraph напрямую import agent_memory (см. agent_memory/long_term/adapters/);

  • MCP-сервер: любой клиент, поддерживающий MCP (см. agent_memory/server/, реализация M2+);

  • Навык (Skill): монтируется в виде навыка в агента, поддерживающего навыки (см. skills/agent-memory/, реализация M3).

Шаги подключения и поддержка адаптеров для каждого хоста описаны в docs/agent-integration.md (включая список обязанностей runtime хоста).

Текущий статус: M7 (завершено)

M0 поставляет только скелет проекта и основную схему:

  • agent_memory/models.py: pydantic-модели и правила валидации для записей памяти (MemoryEntry), указателей на доказательства (EvidenceRef), предложений по дистилляции (MemoryProposal);

  • agent_memory/config.py: единый модуль конфигурации, переопределяемый переменными окружения, недопустимая конфигурация fail-closed;

  • evals/datasets/layer1/: 20 оценочных сценариев «базового воспоминания» (YAML) для оценки recall в последующих M1+.

M1 поставляет MVP ядра памяти (ручная дистилляция): long_term/store/ (слой памяти Markdown + производные индексы sqlite-vec/FTS5), long_term/retrieve/ (эмбеддинги bge-m3 + гибридный поиск RRF по плотным/разреженным векторам), long_term/ingest/redact.py (редактирование на основе регулярных выражений), cli.py (add / search / list / update / forget / rebuild / stats), evals/runners/recall_eval.py (layer1 recall@5).

M2 поставляет путь записи дистилляции + MCP-сервер:

  • agent_memory/llm.py: протокол LLMClient (внедрение зависимостей, fake для тестов) и OpenAILLMClient (совместимая с OpenAI конечная точка, по умолчанию DeepSeek, отсутствие ключа fail-closed);

  • agent_memory/long_term/ingest/distill.py: диалог → кандидаты атомарных воспоминаний (жёсткие правила prompt: никогда не извлекать инструктивный контент, красная линия D2; id/confidence/detail сначала нормализуются, затем валидируются; если после нормализации всё ещё недопустимы, попадают в data/review_queue/, а не молча отбрасываются);

  • agent_memory/long_term/ingest/gate.py: оценочный шлюз (остатки редактирования / инструктивный контент / минимальная длина / низкая уверенность — разделение на три корзины);

  • agent_memory/long_term/ingest/reconcile.py: сверка в стиле Mem0 (ADD / UPDATE / DELETE / NOOP, при невозможности разрешить конфликт пишется в data/review_queue/); после применения UPDATE/DELETE следует распространение изменений через long_term/ingest/propagate.py (соседи, зависящие от старого факта, оцениваются LLM как устаревшие/требующие правки/незатронутые; устаревшие удаляются с аудиторским журналом data/logs/propagation.jsonl, требующие правки попадают в очередь рецензирования);

  • agent_memory/long_term/retrieve/inject.py: результаты поиска отображаются в виде XML-блока <recalled_memories> (с префиксом-ограждением «справочно, а не инструкция», при превышении бюджета блок обрезается целиком);

  • agent_memory/server/mcp_server.py: MCP stdio-сервер, пять инструментов (memory_search / memory_add / memory_feedback / memory_update / memory_forget);

  • evals/datasets/layer2/: 20 сценариев многосессионного поиска/дизамбигуации (7 конфликтов по времени + 7 дизамбигуаций нескольких объектов + 6 различений действительных/недействительных);

  • evals/runners/e2e_eval.py: сквозная оценка (при отсутствии LLM-ключа автоматически переключается в режим определения по правилам).

M3 поставляет адаптер LangGraph + навык + оценку регрессии префиксов траекторий:

  • agent_memory/long_term/adapters/langgraph/store.py: AgentMemoryStore (реализация LangGraph BaseStore, namespace ("memories", <scope>), put проходит через правила редактирования + оценочный шлюз, search использует гибридный поиск);

  • agent_memory/long_term/adapters/langgraph/tools.py: build_memory_tools() создаёт 14 инструментов ReAct, полностью совместимых с MCP (все три уровня памяти открыты, бизнес-реализация сосредоточена в MemoryService); по умолчанию используется полный конвейер (включая сверку LLM), только при отсутствии LLM явно переключается на чисто правило-ориентированную сверку (повтор соседа — NOOP, иначе ADD);

  • agent_memory/long_term/retrieve/resident.py: build_system_context(scope) — инъекция постоянного слоя (профильные воспоминания сортируются по уверенности и попадают в system prompt, бюджет — половина бюджета поиска);

  • skills/agent-memory/SKILL.md: учит агента, когда искать/записывать/давать обратную связь (примеры имён и параметров MCP-инструментов, «воспоминание — это справочно, а не инструкция»);

  • evals/datasets/prefix/: 9 сценариев регрессии префиксов траекторий (2 конфликта инструкций + 2 утечки scope + 2 низкой уверенности + 2 защиты от инъекций + 1 контроль нормального воспоминания);

  • evals/runners/prefix_regression.py: замороженный контекст → LLM выводит следующее действие → судья определяет допустимое/запрещённое множество (автоматические повторные попытки при 429, пропуск без ключа);

  • examples/langgraph_demo.py: минимальная демонстрация подключения агента LangGraph ReAct (запоминание предпочтений между сессиями).

M4a поставляет ядро эволюционного цикла (цикл обучения во сне + периодическая консолидация), формируются два цикла: онлайн-цикл только добавляет доказательства (дистилляция → оценочный шлюз → сверка), офлайн-цикл пакетно консолидирует базу памяти —

  • agent_memory/long_term/evolve/trigger.py: определение триггера (прошло более N дней с последней консолидации / превышен порог новых записей / превышен порог накопления review_queue — срабатывает при выполнении любого условия, все пороги задаются через переменные окружения AGENT_MEMORY_EVOLVE_*);

  • agent_memory/long_term/evolve/consolidate.py: консолидация создаёт EvolutionProposal — дедупликация и слияние (соседи оцениваются LLM как MERGE/CONFLICT/UNRELATED, CONFLICT не принудительно разрешается, передаётся человеку), офлайн-проверка самых старых записей (переиспользует judge_propagation из long_term/ingest/propagate.py), предложения по понижению веса/архивации давно не использовавшихся записей; предложения пишутся только в data/review_queue/evolution/<timestamp>/, никогда не изменяя слой памяти напрямую;

  • agent_memory/long_term/evolve/verify.py: трёхуровневая проверка (проверка контракта boundary / эталонный запрос retention top-5 diff / защита безопасных воспоминаний safety), при невыполнении любого — полное отклонение;

  • agent_memory/long_term/evolve/apply.py: снимок перед продвижением (data/snapshots/<timestamp>/), аудит после применения (data/logs/evolution_audit.jsonl), откат rollback(snapshot_id);

  • agent_memory/long_term/evolve/cycle.py: пятишаговая оркестрация (триггер → нацеливание → консолидация → проверка → обрезка);

  • models.py: в MemoryEntry добавлено поле retrieval_count (увеличивается на 1 при попадании в гибридном поиске, не учитывается при поиске соседей на пути записи).

M4b поставляет набор оценок layer3 + метрики эволюции + реальную приёмку:

  • evals/datasets/layer3/: 12 сценариев скрытых связей между сессиями (адаптация программного сценария из третьего уровня «активного обслуживания» в книге: факт и план находятся в разных сессиях, для правильного ответа необходимо активно указать на скрытый конфликт между ними; каждый сценарий содержит профильную постоянную память * детальную память уровня поиска, в rubric.essential обязательно входит пункт «активно указать на скрытую связь»);

  • evals/runners/metrics.py: парная статистика (точный тест Макнемара + парный бутстрэп-интервал прироста, чистые функции без зависимости от scipy, при выборке < 20 явно указывается «недостаточно для сильных выводов»);

  • в evals/runners/e2e_eval.py добавлен --baseline: тот же набор сценариев повторно запускается на пустой базе, выводятся результаты по каждому вопросу, p-значение, интервал прироста; также фиксируются три метрики эволюции — коэффициент активации (доля записанных воспоминаний, которые были извлечены), коэффициент следования (доля сценариев, где судья подтвердил, что основание решения взято из извлечённого воспоминания), прирост (разница между наличием памяти и baseline);

  • Реальные цифры приёмки: layer3 с памятью 91.67% против baseline 0% (McNemar p=0.0010, n=12 — только ориентировочно); регрессия layer1 100% / layer2 100% / prefix 88.89%; реальная демонстрация цикла evolve (включая одно отклонение boundary и одно продвижение merge + откат) выявила два дефекта consolidate, см. нерешённые проблемы в AGENTS.md.

M5 поставляет интерактивные узлы ручной проверки + принудительный hook обновления:

  • в config.py добавлены review_gate (off / ask / strict, по умолчанию ask: режим обработки memory_search при наличии накопленных элементов в очереди проверки) и review_turn_interval (по умолчанию 3, интервал подсчёта ходов для hook), переопределяются переменными окружения AGENT_MEMORY_REVIEW_GATE / AGENT_MEMORY_REVIEW_TURN_INTERVAL;

  • MCP-инструменты расширены с пяти до семи — добавлены memory_review_list (детали ожидающих задач) и memory_review_resolve (approve — сохранить как есть / modify — изменить текст, пройти редактирование + оценочный шлюз, затем сохранить / discard — отбросить); memory_search получил шлюз проверки (в режиме ask при blocked ожидает подтверждения пользователя, в strict всегда отказывает в чтении, off не блокирует); memory_add возвращает детали pending_review для проверки;

  • в prompt дистилляции добавлено жёсткое правило «квалификация подтверждения пользователя»: предложения/планы/выводы, выдвинутые ассистентом в одностороннем порядке без явного подтверждения пользователем, не сохраняются;

  • scripts/memory_turn_hook.py: Stop-hook для kimi-code, подсчёт ходов по сессии, каждые N ходов перехватывает завершение текущего хода и внедряет инструкцию дистилляции (материал = сообщения пользователя каждого хода + соседние ответы ассистента), зарегистрирован в пользовательском ~/.kimi-code/config.toml.

M6 поставляет постоянный HTTP-сервис + дисциплину областей видимости:

  • agent_memory/server/http_server.py: постоянный сервис streamable-http, по умолчанию привязан только к 127.0.0.1:8765 (loopback-адрес естественно не требует аутентификации), поверх MCP-эндпоинта добавлены два статических маршрута: /SKILL.md (полная раздача слоя подсказок) и /bootstrap (инструкция по подключению нового агента); агенту достаточно одной инструкции для подключения, копирование файлов больше не требуется;

  • дисциплина областей видимости (общая библиотека, несколько агентов и проектов): в SKILL.md добавлены правила выбора scope (общее — в global, проектное — в repo:<имя>, при сомнении сначала спросить пользователя), scope для memory_add по умолчанию откатывается к global, но возвращается с напоминанием scope_reminder;

  • эксплуатация постоянного сервиса в Windows: scripts/start_http_server.cmd — обёрточный скрипт запуска (автоматический повтор до 3 раз при сбое, после 3 неудач пишет маркер data/state/http_server_FAILED.txt для ручного вмешательства, журнал в data/logs/http_server.log) * запланированная задача, запускаемая при входе (скрипт регистрации scripts/register_task_s4u.ps1, требует прав администратора).

M7 поставляет трёхуровневую память (долговременная / рабочая / кратковременная) + единый интерфейс:

  • перенос структуры пакетов: пять подпакетов store/ retrieve/ ingest/ evolve/ adapters/ целиком перенесены в agent_memory/long_term/ (без изменений логики), добавлены working/ и short_term/;

  • agent_memory/working/: рабочая память (операционный слой, состояние текущей задачи — цели/задачи/решения/переменные/заметки, по одному экземпляру на scope, хранится в data/working/). Запись — полная замена, проходит только редактирование, без оценочного шлюза; уровень turn_watermark вместе с stale_wm определяет, устарело ли состояние;

  • agent_memory/short_term/: адаптер транскриптов кратковременной памяти, разбирает нативные журналы агента (например, wire.jsonl от kimi-code) в чистую последовательность ходов, не создавая новых файлов;

  • MCP-инструменты расширены с семи до тринадцати: добавлены memory_wm_read / memory_wm_write / memory_wm_clear (чтение/запись/очистка рабочей памяти), memory_context (однократная сборка постоянного профиля + рабочей памяти + поиска), memory_transcript_read (чтение ходов, инкрементально с since_turn), memory_session_end (завершение сессии: архивирование data/raw + совместная дистилляция + очистка выполненных задач, veto при наличии pending-задач).

Related MCP server: Recall Select

Структура каталога

agent-memory/
├── agent_memory/     # Python 包(扁平布局,import 名 agent_memory)
│   ├── config.py         # 配置(AGENT_MEMORY_* 环境变量覆盖)
│   ├── models.py         # 记忆条目 schema(M0 核心)
│   ├── long_term/        # 长期记忆:store / ingest / retrieve / evolve / adapters(M1-M4,M7 迁入)
│   ├── working/          # 工作记忆:当前任务状态,操作层(M7a)
│   ├── short_term/       # 短期记忆:transcript 适配层(M7b)
│   └── server/           # MCP server:stdio(M2)+ HTTP 常驻(M6)
├── skills/agent-memory/  # Skill 接入方式(M3)
├── scripts/              # 运维脚本:turn hook(M5)、HTTP 服务启动/计划任务注册(M6)
├── evals/                # 评估集:datasets / rubrics / runners(agent 禁改,D6)
├── tests/
└── data/                 # 运行时数据(gitignored):raw / memory / working / review_queue / snapshots / state / logs

Быстрый старт

uv sync          # 创建虚拟环境并安装依赖
uv run pytest    # 跑测试
uv run ruff check .

Использование M2

Настройка LLM (для дистилляции / сверки / LLM-судьи)

Путь записи дистилляции требует совместимую с OpenAI конечную точку, по умолчанию DeepSeek (https://api.deepseek.com, модель deepseek-chat):

export AGENT_MEMORY_LLM_API_KEY=sk-...
# 可选覆盖:AGENT_MEMORY_LLM_BASE_URL / AGENT_MEMORY_LLM_MODEL
# 评估评委可单独配置(异源互审):AGENT_MEMORY_JUDGE_LLM_API_KEY 等

При отсутствии ключа функции, не зависящие от LLM, такие как поиск, ручная запись, обратная связь, удаление, работают как обычно; только путь дистилляции диалога выдаёт ошибку при вызове (fail-closed).

Команда дистилляции CLI

Пропустить диалог (JSON-файл вида [{role, content}, ...]) через полный конвейер записи в базу:

uv run agent-memory distill --file conversation.json --scope repo:my-project \
    --source kimi-code --session-id 2026-08-19-session
# 管线:蒸馏 → 评价门 → 对账;无法自动收敛的冲突会写入 data/review_queue/

MCP-сервер

Запуск: uv run python -m agent_memory.server.mcp_server (stdio).

Фрагмент конфигурации MCP для Claude Code / Kimi Code:

{
  "mcpServers": {
    "agent-memory": {
      "command": "uv",
      "args": ["run", "python", "-m", "agent_memory.server.mcp_server"],
      "env": {
        "AGENT_MEMORY_DATA_DIR": "C:/Users/<you>/.agent-memory/data",
        "AGENT_MEMORY_LLM_API_KEY": "sk-...",
        "AGENT_MEMORY_LLM_BASE_URL": "https://api.deepseek.com",
        "AGENT_MEMORY_LLM_MODEL": "deepseek-chat"
      }
    }
  }
}

Начиная с пяти инструментов (с M5 расширено до семи, с M7 — до тринадцати, см. разделы M5 / M7 ниже): memory_search (гибридный поиск + XML-блок, фильтрация по scope принудительно на сервере), memory_add (диалог JSON через конвейер дистилляции / одиночный content через редактирование + сверку), memory_feedback (повышение/понижение уверенности, при падении ниже low — в очередь проверки), memory_update (обновление после редактирования + оценочного шлюза), memory_forget (удаление).

Сквозная оценка

uv run python evals/runners/e2e_eval.py --layers 1,2            # 无 key 时自动规则降级模式
uv run python evals/runners/e2e_eval.py --layers 1,2 --llm-judge # 真实 LLM 评委按 rubric 判定
uv run python evals/runners/e2e_eval.py --layers 3 --llm-judge --jobs 8   # layer3 跨会话隐藏关联
uv run python evals/runners/e2e_eval.py --layers 3 --llm-judge --jobs 8 --baseline
    # --baseline:同一批用例在空库下配对重跑,输出逐题胜负 / McNemar p 值 /
    # 配对 bootstrap 留出增益区间,以及激活率 / 遵循率 / 留出增益三个进化指标
uv run python evals/runners/e2e_eval.py --layers 2 --llm-judge --jobs 8   # 调高用例并发
uv run python evals/runners/e2e_eval.py --layers 2 --llm-judge --no-cache # 禁用响应缓存

Механизмы ускорения (действуют по умолчанию в реальном режиме):

  • Дисковый кэш ответов LLM: каждый ответ дистилляции / сверки / судьи кэшируется по sha256(model + system + user) в data/logs/llm_cache/ (в gitignore). При повторном запуске неизменённые этапы попадают в кэш и выполняются за секунды; смена модели автоматически не попадает. Отключается через --no-cache.

  • Параллельность на уровне сценариев: --jobs N (по умолчанию 4) использует пул потоков для параллельного запуска сценариев, каждый сценарий в отдельной временной директории, при 429 автоматический повтор с экспоненциальной задержкой.

  • Загрузка модели: bge-m3 загружается один раз на процесс (около 1-2 минут). При запуске нескольких слоёв используйте --layers 1,2 для однократного запуска, не разделяйте на два процесса по одному слою.

Режим понижения до правил не отражает реальное качество дистилляции; для официальной приёмки необходимо настроить реальный LLM и перезапустить.

Использование M3

Подключение LangGraph

Собственный агент LangGraph можно подключить тремя способами, которые можно комбинировать:

from agent_memory.long_term.adapters.langgraph.store import AgentMemoryStore
from agent_memory.long_term.adapters.langgraph.tools import build_memory_tools
from agent_memory.long_term.retrieve.resident import build_system_context
from langgraph.prebuilt import create_react_agent

# 1) BaseStore:namespace 约定 ("memories", <scope>),put/search/delete 直接映射到记忆内核
store = AgentMemoryStore()          # 配置走 AGENT_MEMORY_* 环境变量
store.put(("memories", "repo:myproj"), "db-choice",
          {"content": "本项目数据库定为 SQLite,文件 data/app.db。", "confidence": "high"})

# 2) ReAct tool:recall_memories / save_memory 挂进 tools 列表
tools = build_memory_tools()

# 3) 常驻层:profile 类记忆渲染进 system prompt(预算是召回预算的一半)
prompt = "你是用户的编程助手……\n\n" + build_system_context("repo:myproj")

agent = create_react_agent(model, tools, prompt=prompt, store=store)

Полный работающий пример см. в examples/langgraph_demo.py (uv run python examples/langgraph_demo.py, требуется AGENT_MEMORY_LLM_API_KEY).

Обратите внимание: put в BaseStore — это низкоуровневый синхронный интерфейс: вызывающий должен предоставить готовое атомарное содержимое, адаптер проходит через правила редактирования + оценочный шлюз (инструктивный контент вызывает ошибку), но не выполняет LLM-дистилляцию; сверка в инструменте save_memory — это чисто правило-ориентированный путь без LLM (повтор соседа — NOOP, иначе ADD), разрешение конфликтов по-прежнему идёт через конвейер дистилляции M2.

Подключение навыка

skills/agent-memory/SKILL.md — это слой подсказок, обучающий обёрнутого агента (Kimi Code / Claude Code), когда искать, записывать и давать обратную связь. Установка (используется вместе с MCP-сервером):

  • Kimi Code: скопируйте или создайте символическую ссылку skills/agent-memory/ в ~/.kimi-code/skills/agent-memory/;

  • Claude Code: скопируйте в ~/.claude/skills/agent-memory/;

  • одновременно подключите сервер agent-memory согласно конфигурации MCP выше, чтобы имена инструментов в навыке (memory_search и т.д.) имели реализацию.

Оценка регрессии префиксов траекторий

Замороженный контекст (system + внедрённый блок памяти + последнее сообщение пользователя) → LLM выводит следующее действие → судья определяет, попадает ли оно в допустимое множество и не касается запрещённого. Покрывает четыре типа граничных сценариев (конфликт инструкций / утечка scope / низкая уверенность / защита от инъекций) + контроль нормального воспоминания:

uv run python evals/runners/prefix_regression.py             # 需 LLM key,无 key 整体跳过
uv run python evals/runners/prefix_regression.py --seeds 3   # 多种子报均值与区间
uv run python evals/runners/prefix_regression.py --no-cache  # 禁用 LLM 响应缓存(默认开)

При 429 автоматически выполняются повторные попытки с интервалом; дисковый кэш ответов LLM общий с e2e_eval в data/logs/llm_cache/. Эта оценка не имеет режима понижения до правил (поведение actor само является объектом тестирования).

Использование M4

Цикл обучения во сне (evolve)

# dry-run:只到提案为止,打印提案摘要,不验证、不应用
uv run agent-memory evolve --dry-run

# 完整循环:触发 → 整合 → 三档验证 → 通过则晋升(自动快照 + 审计)
uv run agent-memory evolve

# 只整理某个 scope
uv run agent-memory evolve --scope repo:my-repo

Условия срабатывания (при выполнении любого, пороги переопределяются переменными окружения AGENT_MEMORY_EVOLVE_*): прошло более 7 дней с последней консолидации (EVOLVE_INTERVAL_DAYS), добавлено более 50 новых записей (EVOLVE_NEW_ENTRIES_THRESHOLD), накопление в очереди проверки более 10 (EVOLVE_REVIEW_BACKLOG_THRESHOLD).

Консолидация создаёт предложение (data/review_queue/evolution/<timestamp>/proposal.yaml), а не прямое изменение: при невыполнении любого из трёх уровней проверки (boundary / retention / safety) предложение отклоняется и остаётся для ручного вмешательства; только при полном прохождении выполняется продвижение — перед продвижением делается снимок слоя памяти (data/snapshots/<timestamp>/), после продвижения пишется аудиторский журнал (data/logs/evolution_audit.jsonl). Для отката используйте agent_memory.long_term.evolve.apply.rollback(snapshot_id, settings, embedder) для восстановления слоя памяти из снимка и пересоздания индексов.

Использование M5

Ручная проверка (два интерактивных узла очереди проверки)

Недопустимые результаты дистилляции, низкая уверенность по оценочному шлюзу, конфликты, не сходящиеся при сверке, попадают в data/review_queue/ для ручного решения. Проверка выполняется двумя MCP-инструментами:

  • memory_review_list: перечисляет детали ожидающих задач (источник, причина, содержимое);

  • memory_review_resolve: решение — approve сохранить как есть / modify изменить текст, пройти редактирование + оценочный шлюз, затем сохранить / discard отбросить. При успешном решении файл очереди удаляется; задачи типа raw_record нельзя сохранять напрямую.

Шлюз проверки (AGENT_MEMORY_REVIEW_GATE, по умолчанию ask): поведение memory_search при наличии накопленных элементов — ask возвращает status=blocked и ждёт подтверждения пользователя (acknowledge_pending=true для пропуска), strict всегда отказывает в чтении (для сценариев без присмотра), off не блокирует. memory_add возвращает детали pending_review, агент должен сообщить о них пользователю и попросить решения (соответствующий процесс описан в SKILL.md).

Принудительный hook обновления памяти

scripts/memory_turn_hook.py — это Stop-hook для kimi-code: подсчёт ходов по сессии, каждые AGENT_MEMORY_REVIEW_TURN_INTERVAL (по умолчанию 3) ходов перехватывает завершение сессии и внедряет инструкцию дистилляции (материал = сообщения пользователя каждого хода + соседние ответы ассистента). Зарегистрирован в пользовательском ~/.kimi-code/config.toml, действует для всех проектных сессий; другие хосты могут подключить аналогично, следуя скрипту.

Использование M6

Постоянный HTTP-сервис

В режиме stdio хост запускает сервер как дочерний процесс, который живёт и умирает вместе с сессией; HTTP-режим — это долго работающий локальный сервис, любой агент-хост, способный отправлять HTTP-запросы, регистрирует URL и получает все тринадцать инструментов:

uv run python -m agent_memory.server.http_server
# 默认监听 http://127.0.0.1:8765/mcp(只绑回环地址,天然免鉴权)
# 覆盖:AGENT_MEMORY_HTTP_HOST / AGENT_MEMORY_HTTP_PORT

Сервис также имеет два статических маршрута: /SKILL.md (полный текст слоя подсказок) и /bootstrap (инструкция по подключению). Новому агенту достаточно передать содержимое /bootstrap: зарегистрировать http://127.0.0.1:8765/mcp (тип транспорта streamable-http) + прочитать и следовать /SKILL.md, копировать файлы не нужно.

Постоянный сервис в Windows (плановая задача)

scripts/start_http_server.cmd — обёрточный скрипт запуска: при аварийном выходе ждёт 60 секунд и перезапускает, максимум 3 раза; после 3 неудач пишет маркер data/state/http_server_FAILED.txt для ручного вмешательства; журнал в data/logs/http_server.log. scripts/register_task_s4u.ps1 регистрирует плановую задачу, запускаемую при входе (фоновый режим S4U, полностью без окна), требует прав администратора. Оба скрипта должны оставаться чисто ASCII (cmd.exe читает .cmd в GBK, PowerShell 5.1 читает .ps1 без BOM в ANSI, не-ASCII повредит разбор).

Использование M7

Единая сборка контекста и рабочая память

memory_context(scope, query?, k?, current_turn?) за один раз собирает три секции: блок постоянного профиля (profile из долговременной памяти) → блок рабочей памяти (текущее состояние задачи) → блок поиска (поиск долговременной памяти только при передаче query). Для повседневного обслуживания текущего состояния задачи используются три инструмента рабочей памяти:

  • memory_wm_write(scope, goal?, decisions?, variables?, todos?, notes?, turn_watermark?): запись с полной заменой (не слияние, непереданные поля очищаются), проходит только редактирование, без оценочного шлюза;

  • memory_wm_read(scope, current_turn?): чтение + определение свежести (stale_wm=true означает, что текущий номер хода превысил уровень turn_watermark рабочей памяти — «до какого хода обновлено это состояние», состояние может быть устаревшим);

  • memory_wm_clear(scope): очистка (идемпотентно, отсутствие не считается ошибкой).

Рабочая память — это черновик операционного слоя: выводы по завершённым пунктам должны быть дистиллированы в долговременную память (memory_add или memory_session_end ниже), чтобы считаться закреплёнными.

Чтение журнала сессии и завершение сессии

memory_transcript_read(log_path, adapter?, since_turn?) разбирает журнал сессии агента (например, wire.jsonl от kimi-code, формат определяется автоматически по имени файла) в чистую последовательность ходов (user/assistant/tool); since_turn вместе с уровнем рабочей памяти выполняет инкрементальное чтение (возвращает только ходы после уровня).

memory_session_end(scope, conversation_json?|log_path?, ...) — стандартное завершение сессии, выполняемое за один раз: архивирование исходного текста (data/raw/, только добавление, без перезаписи) → совместная дистилляция (диалог + снимок рабочей памяти как справочный контекст) → очистка выполненных задач в рабочей памяти. Если в рабочей памяти есть pending-задачи, выполняется veto (архивирование/дистилляция/очистка не выполняются), для подтверждения завершения передайте force=true. Он работает в двух треках с роллинг-дистилляцией hook каждые N ходов: hook гарантирует защиту от потери при сбое в середине, session_end выполняет стандартное завершение.

Три архитектурные красные линии

Подробнее см. AGENTS.md. Кратко: трёхуровневое разделение данных (raw только добавляется, memory — единственный источник истины, index можно пересоздать, но никогда не редактировать вручную); запись должна проходить через шлюз редактирование → дистилляция → сверка; evals / rubric / пороги выпуска / аудиторские журналы запрещено изменять агентом самостоятельно.

Available Tools

13 tools
memory_addA

写入记忆:对话走蒸馏管线,单条 content 走脱敏+对账。conversation_json 推荐传 [{role, content}, ...] 的 JSON 字符串(直接传数组也可以,服务端会自动序列化;其他类型会报错并提示格式)。scope 应显式选择:跨项目通用知识用 global,项目相关用 repo:<项目名>,agent 自身相关用 agent:<名字>;缺省回落 global 并附提醒

ParametersJSON Schema
NameRequiredDescriptionDefault
scopeNo
sourceNomcp
contentNo
entry_idNo
confidenceNohigh
session_idNo
memory_typeNosemantic
conversation_jsonNo

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full behavioral disclosure. It reveals the distillation pipeline for conversations, desensitization/reconciliation for single content, server-side auto-serialization for arrays, error behavior for invalid types, and default scope fallback. This is strong behavioral context beyond a simple 'write' action, though it stops short of describing return values or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a compact, logically organized paragraph with no filler. It front-loads the core action, then covers format, scope, and default behavior in sequence. Every sentence contributes essential information, making it highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description covers purpose, key parameter semantics, and processing behavior well. The remaining gaps—such as the exact meaning of optional parameters like entry_id or session_id—are minor because those parameters are either inferable or have defaults. The description is close to complete for an agent to successfully call the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameter descriptions, so the description must compensate. It explains the two most complex parameters: conversation_json (JSON string or array, auto-serialization) and scope (global/repo/agent conventions), and mentions content processing. Other parameters like memory_type, confidence, and source remain undocumented, but their names and defaults make them less ambiguous. The description covers the parameters that truly need clarification.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool writes memory, using the specific verb '写入记忆' (write memory), and distinguishes it from sibling tools like memory_update and memory_forget by nature. It also explains the processing pipeline for conversation vs single content, which adds further specificity beyond a generic 'write' operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides concrete guidance on how to invoke the tool: recommended conversation_json format, explicit scope value conventions (global, repo:<name>, agent:<name>), and default fallback behavior. It does not explicitly state when to use this tool instead of alternative memory tools, but the detailed usage context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_contextA

统一组装注入上下文:常驻画像块(长期用户画像)+ 工作记忆块(当前任务状态)+ 召回块(传 query 才检索历史记忆),按此顺序拼接。复核队列有积压时按 review_gate 配置处置:返回 status=blocked 表示被复核门拦截,需先向用户确认(用户同意后以 acknowledge_pending=true重试,或先用 memory_review_list / memory_review_resolve 处理待办)

ParametersJSON Schema
NameRequiredDescriptionDefault
kNo
queryNo
scopeYes
current_turnNo
acknowledge_pendingNo

TDQS

A3.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full disclosure burden and delivers substantial behavioral detail: the fixed assembly order, conditional recall on query, and the review-gate state machine (status=blocked, retry flag, prerequisite cleanup via review tools). The blocked/retry workflow is non-obvious and not inferable from the schema. It stops short of stating whether the operation has side effects or how a successful response is structured.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two dense sentences with the primary assembly behavior front-loaded before the conditional review-gate flow. Every clause carries information — assembly blocks, ordering, query conditionality, and the blocked-state retry procedure. It is slightly dense with domain terminology but efficient overall with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no annotations, no output schema, and no parameter descriptions, so the description must cover both return values and parameter semantics. It explains the blocked status and retry path but never describes the success response shape, and leaves scope (required), k, and current_turn undefined. This is insufficient for an agent to invoke the tool reliably on the first attempt.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, but it only explains two of five parameters: query (triggers recall) and acknowledge_pending (retry after user confirmation). The required parameter scope is never defined at all, and k (despite its default of 5) and current_turn are also left unexplained. An agent cannot determine valid scope values or what k controls, which is a critical gap for the only required parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('统一组装注入上下文' — uniformly assemble and inject context) and names the exact resources: resident profile block, working memory block, and recall block, with their concatenation order. This composition detail differentiates it from siblings like memory_wm_read or memory_search that handle only individual memory pieces. It doesn't explicitly name a sibling it is not, but the assembly semantics make the tool's role clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit conditional guidance: recall is only performed when query is passed ('传 query 才检索历史记忆'). It also specifies a concrete edge-case workflow with named alternatives — when status=blocked, retry with acknowledge_pending=true or first process pending items via memory_review_list / memory_review_resolve. It does not contrast normal-use selection against siblings like memory_search or memory_wm_read, but the blocked-state routing is explicit and actionable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_feedbackB

反馈记忆是否有用,调整置信度;降到 low 以下进人工复核队列

ParametersJSON Schema
NameRequiredDescriptionDefault
noteNo
helpfulYes
memory_idYes

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It reveals the action of adjusting confidence and the conditional manual review queue, adding context beyond the verb. However, it does not disclose whether the operation is a write, if it is reversible, return format, or error handling, leaving notable gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence, front-loaded with the action. It is efficient and easy to scan, though it lacks structure for parameter details. It earns a high score for conciseness, not for completeness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 3 parameters, no output schema, and no annotations, the description should compensate by explaining parameter semantics and usage context. It explains the main behavior but omits parameter meanings and when to use this tool over siblings, leaving the agent under-informed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain the parameters memory_id, helpful, or note. The description implies 'helpful' relates to usefulness but never explicitly defines each parameter, leaving agents to infer meaning from types and names alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action (feedback on memory usefulness), the resource (memory), and the outcome (adjust confidence, possible manual review). This clearly differentiates it from siblings like memory_add, memory_update, and memory_review_resolve, which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for providing feedback on memory usefulness, but does not explicitly state when to use it versus alternatives like memory_review_resolve or memory_forget. No when-not-to-use conditions or alternative routing are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_forgetB

删除一条记忆(记忆层与索引同步删除)

ParametersJSON Schema
NameRequiredDescriptionDefault
memory_idYes

TDQS

B3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds a useful behavioral detail: the memory layer and index are deleted synchronously, ensuring consistency. However, with no annotations at all, it does not disclose irreversibility, permission requirements, or what happens to related feedback/review data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one short sentence, efficient and easy to scan. The parenthetical adds a relevant operational detail without bloating the text, though a bit more context could be added.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive operation with no annotations and no output schema, the description is under-specified. It does not mention irreversibility, how to retrieve memory_id, or any side effects on related data, leaving an agent to guess critical usage constraints.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% and the description does not mention memory_id at all. It simply says 'delete a memory' without explaining that the memory_id parameter identifies the target or how to obtain it, leaving the schema to bear all meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb '删除' (delete) and a clear resource ('一条记忆' - one memory), and the parenthetical clarifies it removes both the memory layer and its index. This clearly distinguishes it from siblings like memory_search or memory_wm_clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus alternatives. It does not state that this is for permanent removal of a specific memory, nor does it mention prerequisites such as obtaining a memory_id from memory_search or memory_review_list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_review_listA

列出人工复核队列的全部待办(内容、排队原因、队列文件名)

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. The description only states that it lists items and the fields returned; it does not explicitly state that it is read-only or lacks side effects. While the name suggests a list operation, the description does not communicate this behavioral guarantee, leaving the agent to infer safety.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence that front-loads the action and resource, then specifies the returned fields. There is no extraneous information, and it is appropriately concise for a list operation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, but the description omits how to identify specific items for later resolution (e.g., an ID field) and does not mention any ordering or pagination behavior. Without an output schema, an agent may need more context to use the results with sibling tools like memory_review_resolve, which would require some reference to individual items.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has no parameters, so schema description coverage is trivially 100%. The baseline for 0 parameters is 4, and the description does not need to add parameter meaning because there are none. It provides no extra parameter information, which is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the verb '列出' (list) with a specific resource '人工复核队列的全部待办' and enumerates the returned fields (content, reason, queue file name). This clearly distinguishes it from siblings like memory_review_resolve, which handles resolution, and memory_search, which is general search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is for viewing the review queue but does not explicitly state when to use it over alternatives, such as when to use memory_review_resolve after listing. There is no mention of prerequisites, exclusions, or the relationship with sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_review_resolveA

裁决一条复核待办:approve 确认入库 / modify 以 new_content 替换正文后入库 / discard 丢弃。queue_file 取 memory_review_list 返回里的 file 字段

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYes
queue_fileYes
new_contentNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full disclosure burden. It accurately conveys the side effects of each action: approve persists, modify replaces content before persisting, and discard drops the item. It also explains the provenance of queue_file. However, it does not disclose whether the queue item is consumed after resolution or whether new_content is mandatory for the modify action, leaving minor gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single compact sentence that lists the actions and their meanings, followed by a short clarification of where queue_file originates. Every clause adds necessary information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the core workflow, parameter sourcing, and action semantics, which is sufficient for an agent to invoke the tool correctly. It omits return values, explicit requirement of new_content for modify, and post-resolution queue state, but these are secondary for a narrowly scoped resolution tool. Given the lack of an output schema, this is reasonably complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It fully documents all three parameters: action enumerates the valid values (approve/modify/discard), queue_file is tied to the output of memory_review_list, and new_content is defined as the replacement body for modify. This resolves the ambiguity left by the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb (裁决/adjudicate) and resource (复核待办/review todo), then enumerates the permissible actions (approve, modify, discard), making the tool's purpose unmistakable. It also distinguishes itself from the sibling memory_review_list by focusing on the resolution step rather than the listing step.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent that queue_file comes from the return of memory_review_list, effectively positioning this as the follow-up to that tool. It names the source of a key parameter and implies a list-then-resolve workflow, though it does not formalize when-not-to-use or list alternative tools for this specific action.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_session_endA

会话结束收尾编排:归档原文(data/raw,只追加不改写)+ 联合蒸馏(对话提炼长期记忆,工作记忆快照作参考上下文,冲突会更新旧条目) + 清理工作记忆里已完成的待办。工作记忆有未完成任务时会 veto(status=vetoed,归档/蒸馏/清理都不执行),确认结束请以 force=true 重试。对话材料二选一:conversation_json([{role, content}, ...] 的 JSON 字符串或数组,agent 中立推荐,优先使用)或 log_path(agent 会话日志路径,走日志适配器解析,adapter 可缺省按文件名 自动识别)。未配置 LLM 时只归档不蒸馏(status=archived_only)

ParametersJSON Schema
NameRequiredDescriptionDefault
forceNo
scopeYes
sourceNomcp
adapterNo
log_pathNo
session_idNo
conversation_jsonNo

TDQS

A4.3/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses detailed behavior: append-only archiving, conflict updates during distillation, veto with status=vetoed and force override, archived_only fallback, and adapter auto-detection. This goes well beyond minimal expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single dense paragraph that covers all key points without fluff. It is front-loaded with the main orchestration, then veto, then material options. However, it could be improved with bullet points for readability, but it still earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (7 params, no output schema, no annotations), the description is quite complete. It explains the core flow, edge cases, and material options. The main shortfalls are undocumented parameters and lack of return-value details, but these are partially offset by the thorough behavioral coverage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explains conversation_json, log_path, adapter, and force thoroughly, but omits scope, source, and session_id entirely. These are not self-evident from the schema, leaving gaps for the agent.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: orchestrating session-end wrap-up with archiving, distillation, and cleanup. It distinguishes itself from siblings (e.g., memory_transcript_read, memory_add) by focusing on the end-of-session flow, making its role unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides strong context on when to use the tool (at session end) and explains veto/force behavior for incomplete tasks, plus fallback to archived_only without LLM. However, it does not explicitly contrast with sibling tools like memory_wm_write or memory_add, and the 'agent 中立推荐' note is more about parameter selection than tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_transcript_readA

读取 agent 会话日志(如 kimi-code 的 wire.jsonl),解析成干净的轮次序列(user/assistant/tool,含轮次编号与时间戳)。纯读不写。配合工作记忆水位做新鲜度补偿:传 since_turn=<memory_wm_read 返回的 turn_watermark> 只返回水位之后的新轮次,据此判断要不要 wm_write 刷新工作记忆。adapter 缺省按日志文件名自动识别,识别不了需显式指定(可用列表见报错信息);日志不存在会报错

ParametersJSON Schema
NameRequiredDescriptionDefault
adapterNo
log_pathYes
since_turnNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are absent, so the description carries the full burden. It discloses the tool is read-only ('纯读不写'), describes the output structure (turn sequences with numbering and timestamps), explains the adapter fallback behavior (auto-detect or explicit, with error message listing available adapters), and notes that missing logs will cause an error. This is thorough behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is structured into a logical flow: main purpose, usage pattern with since_turn, then adapter behavior and error conditions. It is four sentences but dense with information, front-loaded with the core function and then branching into usage details. It is not overly verbose for the complexity it covers.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (read logs, parse turns, support filtering, adapter handling) and the absence of annotations, the description covers essential aspects: parameters, usage integration with wm_read/wm_write, error handling (missing log, adapter detection), and output format ('轮次序列(user/assistant/tool,含轮次编号与时间戳)'). No critical gaps for an agent to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must explain all three parameters. It does: log_path is implied ('读取 agent 会话日志'), adapter behavior is explained ('adapter 缺省按日志文件名自动识别,识别不了需显式指定'), and since_turn is clearly defined ('传 since_turn=... 只返回水位之后的新轮次'). Meaning is fully compensated beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('读取' = read), a specific resource ('agent 会话日志' = agent session logs), and the output transformation ('解析成干净的轮次序列' = parse into clean turn sequences). It also explicitly distinguishes itself from siblings by emphasizing '纯读不写' (pure read, no write) and unique functionality (transcript reading) not covered by other tools like memory_wm_read or memory_search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for use: it explains the integration with memory watermark ('配合工作记忆水位做新鲜度补偿') and explicitly references sibling tools memory_wm_read and memory_wm_write, showing how since_turn should be used. It also covers adapter auto-detection behavior and error conditions. It lacks an explicit 'when not to use' clause but the context is sufficiently clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_updateB

更新一条记忆的正文(过脱敏与评价门)

ParametersJSON Schema
NameRequiredDescriptionDefault
memory_idYes
new_contentYes

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

描述提到更新内容会经过脱敏与评价门,揭示了一个重要的处理流程,但未说明失败行为(如门拒绝时返回什么)、权限要求、可逆性或副作用。由于无注解,描述承担全部责任,但此处提供的信息有限,仅部分披露了行为。

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

一句话完成,无冗余,动作前置,括号补充关键流程约束。紧凑且信息优先,符合高效结构要求。

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

无输出schema,无注解,且为变更操作,但描述未说明返回内容、错误处理、副作用(如修改是否不可逆),也未说明通过门失败时的行为。对于调用者而言,信息不足以做出正确调用决策,完整性不足。

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

schema描述覆盖率为0%,参数名称和类型是唯一信息。描述未对memory_id或new_content增加任何额外语义,如格式、长度限制、示例或注意事项。描述仅重复了'正文'概念,对参数理解帮助有限。

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

描述明确给出具体动作'更新'和资源'记忆的正文',并附带脱敏与评价门的处理提示,使工具用途清晰且与其他记忆操作(如添加、删除)区分开来。即使未命名兄弟工具,名称和描述已足够明确。

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

未提供任何使用时机或与其他工具的对比。没有说明何时应使用更新而非添加或删除,也没有提及前置条件(如记忆必须存在)。仅凭工具名称和描述推断用途,缺乏明确指导。

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_wm_clearA

清空一个 scope 的工作记忆;本就不存在时返回 already empty,不算错误

ParametersJSON Schema
NameRequiredDescriptionDefault
scopeYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses that clearing a non-existent scope returns 'already empty' rather than an error, which is a key behavioral nuance. While it does not elaborate on side effects or permissions, this is sufficient for a simple clear operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the core action and efficiently includes the critical edge case. There is no redundancy or unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and a clear action, the description covers the primary behavior and a notable edge case. It is slightly lacking in defining 'scope' and specifying the success return value, but these are minor given the tool's minimal complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the tool description does not explain what 'scope' refers to or what valid values it accepts. The agent is left without guidance on this essential parameter, and the description fails to compensate for the missing schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a clear verb '清空' (clear) and a specific resource 'scope 的工作记忆' (working memory of a scope), explicitly distinguishing this from sibling tools like memory_wm_read and memory_wm_write. The edge case about returning 'already empty' further clarifies its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context that this tool operates on a scope's working memory, which makes its usage obvious given the sibling set. It does not explicitly name alternatives or exclusions, but the action is unambiguous and no conflicting tools exist in the visible sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_wm_readA

读取一个 scope 的工作记忆(当前任务状态:目标/待办/决策/变量/备注),返回渲染好的注入块与结构化字段。scope 自动归一化,非法当场报错。传 current_turn 时返回 stale_wm 表示工作记忆是否可能滞后(当前轮次超过已更新到的轮次水位),滞后可考虑 wm_write 刷新

ParametersJSON Schema
NameRequiredDescriptionDefault
scopeYes
current_turnNo

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses automatic scope normalization, immediate errors on invalid scope, the stale_wm flag when current_turn is provided, and the return format (rendered injection block + structured fields). It also hints at the refresh path via wm_write. This is comprehensive for a read tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary purpose and then adding the advanced staleness detail. Every sentence adds value, no fluff. It is well-structured and easily parsed by an agent.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read tool with only 2 parameters and no output schema, the description covers the return format, error handling, normalization behavior, and the staleness mechanism. An agent has enough context to invoke it correctly and interpret results without additional information.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explains both parameters: 'scope' is the working memory scope to read and is normalized automatically; 'current_turn' is used to trigger staleness detection and returns stale_wm. This adds meaningful semantics beyond the schema's bare names and types, though it doesn't detail value formats or ranges.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description starts with a specific verb '读取' (read) and a clear resource: 'scope 的工作记忆' (working memory of a scope), and enumerates its contents (goals/todos/decisions/variables/notes). It clearly differentiates from siblings like memory_wm_write (write) and memory_wm_clear (clear) by specifying the read operation. This is a precise, unambiguous purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: use this tool to read a scope's working memory for current task state. It also mentions when to consider using a sibling (wm_write refresh if stale_wm indicates lag), which implies the alternative when the data is stale. However, it does not explicitly contrast with other read/search tools like memory_search or state when NOT to use it, so it's not a full 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_wm_writeA

写入工作记忆(当前任务状态)。注意是全量替换而非合并:未传的字段会被置空,只想改一个字段也要把其余字段原样带上。所有文本过脱敏;不过评价门——待办事项天然是祈使句,属于正常内容。todos 可传 [{content, status}, ...](status 为 pending/done)或纯字符串列表(按 pending)。turn_watermark 传当前对话轮次;未传保留旧值

ParametersJSON Schema
NameRequiredDescriptionDefault
goalNo
notesNo
scopeYes
todosNo
decisionsNo
variablesNo
turn_watermarkNo

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully carries the behavioral burden. It discloses the full-replacement semantics (destructive but essential), text desensitization, the pass-through of todo items as imperative sentences (bypassing evaluation gate), and the turn_watermark retention behavior. These are the key behavioral traits an agent needs to know before calling.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact yet information-dense. The most critical warning (full replacement) is front-loaded, and every sentence adds necessary context—no filler. It efficiently covers the trickiest aspects of the tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 7-parameter write tool with no annotations and no output schema, this description provides the essential operational knowledge: the destructive replacement behavior, the two tricky parameters (todos and turn_watermark), and the text-processing nuance. It is complete enough for an agent to call it correctly, covering the high-risk elements thoroughly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for parameter meaning. It thoroughly explains the todos parameter (two accepted formats with status semantics) and turn_watermark (current dialogue turn, default retention). It also implies that all text fields undergo desensitization. It does not delve into goal, notes, decisions, or variables, but the general replacement rule covers them, so it adds significant meaning beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('写' write) on the '工作记忆' (working memory, current task state), which is a specific resource. This distinguishes it from sibling memory tools like memory_add or memory_update, which likely target long-term memory. The scope is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context (writing current task state) and explicit critical usage instructions (full replacement, not merge; fields not passed are nulled). However, it does not explicitly contrast with alternative memory tools (e.g., when to use this vs memory_update or memory_add), so it lacks exclusions. Still, the context is clear enough for correct selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 13 tool updatesv0.1.0
    • First observedmemory_add
    • First observedmemory_context
    • First observedmemory_feedback
    • First observedmemory_forget
    • First observedmemory_review_list
    • First observedmemory_review_resolve
    • First observedmemory_search
    • First observedmemory_session_end
    • First observedmemory_transcript_read
    • First observedmemory_update
    • First observedmemory_wm_clear
    • First observedmemory_wm_read
    • First observedmemory_wm_write

TDQS

A4/5.0
Disambiguation5/5

Each tool targets a distinct operation on a distinct aspect of memory (long-term, working, review, context, transcript, session). Even within the same subdomain (e.g., add/update/forget/search for long-term memory), the action is clearly different. No two tools could be confused for the same task.

Naming Consistency4/5

All tools share the 'memory_' prefix and use snake_case, and most use an action verb (add, update, forget, search, read, write, clear, resolve, list, end). However, the verb placement varies (memory_add vs memory_wm_read) and two tools are noun-only (memory_context, memory_feedback), which is a minor inconsistency.

Tool Count5/5

13 tools is well within the ideal range (3-15). Each tool covers a distinct feature of the memory system without redundancy or bloat.

Completeness5/5

The server covers the full lifecycle of long-term memory (add, update, search, forget, feedback) and working memory (read, write, clear), plus review queue handling, context assembly, transcript reading, and session-end orchestration. No obvious gaps for the stated purpose.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ac0033/agent-memory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server