Skip to main content
Glama

Perseus Vault

Постоянная зашифрованная память для AI-агентов. Один Rust-бинарник, один файл, никакого облака.

Build and Test License: MIT Release Glama MCP Marketplace LangGraph CrewAI AutoGen

Опубликован в Official MCP Registry · Glama · mcpservers.org · Lulu MCPs · Docker (GHCR)

Дайте вашим агентам память, которая переживает сессию, чтобы они перестали заново выводить то, что уже узнали, и перестали повторять прошлые ошибки. Гибридный поиск (BM25 + плотный + RRF), битемпоральная история и AES-256-GCM в покое, представленные как 168 канонических MCP-инструментов, которые работают с любым хостом. Устаревшие псевдонимы mimir_*/mneme_* были удалены в мажорном релизе 2026-27 и не учитываются отдельно. 73.8% на официальном стенде LongMemEval (против Zep 63.8%, Mem0 49.0%). Один бинарник. Один файл. Без Docker. Без Postgres. Без облака. Локально, готово к воздушному зазору, MIT.

Установка в одну строку

curl -sSf https://raw.githubusercontent.com/Perseus-Computing-LLC/perseus-vault/main/scripts/install.sh | sh

Вот и всё. Perseus Vault устанавливается в ~/.local/bin/perseus-vault. Запустите его:

perseus-vault serve --db ~/.perseus-vault/data/perseus-vault.db

Шифрование включается автоматически для установки по умолчанию. При первом запуске создается ~/.perseus-vault/secret.key с правами только для владельца и зашифрованный канарейка базы данных. Сделайте резервную копию этого ключа: его невозможно восстановить. Явные пути --encryption-key по-прежнему поддерживаются, а существующие базы данных в открытом виде сохраняются для миграции с помощью perseus-vault init --rekey. Используйте doctor для проверки фактического состояния на диске.

Примечание для macOS (Apple Silicon). Свежесобранный или скопированный бинарник при первом запуске получает SIGKILL (Killed: 9, без другого вывода) из-за политики ОС в отношении бинарников — даже без атрибута карантина. Установщик в одну строку и установщик сборки из исходников bootstrap.sh выполняют ad-hoc подпись кода Perseus Vault за вас. Если вы собираете бинарник самостоятельно, подпишите его один раз после каждой пересборки:

cargo build --release
cp target/release/perseus-vault ~/.local/bin/perseus-vault
codesign --force --sign - ~/.local/bin/perseus-vault   # required on Apple Silicon; fixes "Killed: 9"

--force переподписывает уже подписанный бинарник (нужно после каждой пересборки); этот шаг безвреден на Intel macOS и не нужен на Linux/Windows.

Затем подключите ваши MCP-клиенты — и полный цикл припоминания/захвата — одной командой:

perseus-vault install-client --hooks --rules

Это автоматически обнаруживает Claude Code / Codex / Cursor (передайте --client <name> для claude-desktop, hermes, windsurf, vscode, zed или generic; --all-detected подключает каждый обнаруженный клиент), объединяет регистрацию MCP-сервера в конфиг клиента без повреждения чего-либо (сначала создается резервная копия .bak-perseus), направляет каждый клиент на одну общую базу данных памяти, регистрирует хуки жизненного цикла сессии (внедрение припоминания при SessionStart, гигиена при завершении сессии — контракт docs/lifecycle-hooks.md) и добавляет правила использования памяти в CLAUDE.md/AGENTS.md. Повторный запуск — холостой; добавьте --dry-run для предварительного просмотра каждого файла, к которому он прикоснется.

Или подключите любой MCP-хост вручную (Claude Desktop, Cursor, Hermes Agent, Perseus и т.д.):

{
  "mcpServers": {
    "perseus-vault": {
      "command": "perseus-vault",
      "args": ["serve", "--db", "~/.perseus-vault/data/perseus-vault.db"]
    }
  }
}

Related MCP server: GroundMemory

Для Агентов: Подключение через MCP

Когда основным потребителем является агент, интерфейсом является MCP — агент принимает Vault через своего MCP-клиента, и установка CLI на машине не требуется, кроме запуска самого сервера:

# 1. Run the server (one line)
perseus-vault serve --db ~/.perseus-vault/data/perseus-vault.db &

# 2. Register it in the agent's MCP client config
#    { "mcpServers": { "perseus-vault": {
#        "command": "perseus-vault",
#        "args": ["serve", "--db", "~/.perseus-vault/data/perseus-vault.db"] } } }

# 3. Verify the agent-facing surface
perseus-vault doctor

perseus-vault install-client --hooks --rules настраивает весь цикл припоминания/захвата для Claude Code / Codex / Cursor / Hermes одной командой. Для карты возможностей, ориентированной на агента — какой инструмент какую работу выполняет и шаблон границ планирования — см. docs/integration/agent-adoption.md.

Быстрый старт за 30 секунд

# Start Perseus Vault
perseus-vault serve --db memory.db &
sleep 1

# Remember a fact (via MCP JSON-RPC on stdio)
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"perseus_vault_remember","arguments":{"category":"demo","key":"hello","body_json":"{\"text\":\"Hello from Perseus Vault!\"}"}}}' | perseus-vault serve --db memory.db

# Search for it
echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"perseus_vault_recall","arguments":{"query":"Hello"}}}' | perseus-vault serve --db memory.db

Модель памяти и операционные границы

Perseus Vault держит три плоскости раздельными:

  • Неявный рабочий контекст — это текущее приглашение хоста, транскрипт и любой блок контекста, который клиент решает внедрить. Он эфемерен и принадлежит хосту; он не сохраняется только потому, что Vault его вернул.

  • Явная долговременная память записывается явной операцией perseus_vault_remember, perseus_vault_capture, write или capture. Сервер Vault владеет записью SQLite, историей, журналом, затуханием, архивом и жизненным циклом очистки.

  • Производные проекции включают консолидированные или синтезированные записи и экспортированный Markdown. Они несут происхождение, но не являются заменой исходных долговременных записей и могут потребовать отдельной очистки.

perseus-vault prepare и perseus_vault_context читают долговременные записи для создания ограниченного, релевантного задаче активного рабочего контекста. Это скользящий снимок, а не фоновая запись или обещание, что клиент его сохранит: обновляйте его при изменении задачи и не рассматривайте текст приглашения как долговременную память, если только явная операция захвата/записи не завершилась успешно. Вывод с приоритетом припоминания ограничен по бюджету (1500 символов по умолчанию, 6000 для хостов с большим окном или явный max_context_chars); набор always_on ограничен пятью. См. семантику хранения и контекста.

Хуки жизненного цикла и установщики клиентов являются необязательной оркестровкой. Они запрашивают принадлежащую серверу работу по припоминанию, захвату, обслуживанию и обновлению; они не становятся вторым хранилищем и не изменяют политику хранения. Если сервер или хук недоступны, продолжите задачу без внедренной памяти и сообщите о деградированном состоянии. Интеграция хоста может иметь явно настроенное локальное резервное решение, но это резервное решение должно быть помечено как локальное и не должно представляться как долговременное припоминание Vault; неудачная явная запись никогда не должна сообщаться как сохраненная. Для шагов обновления/восстановления используйте руководство по обновлению и миграции.

Работает с Любым MCP-Клиентом

Perseus Vault — это стандартный MCP-сервер stdio — та же команда perseus-vault serve работает везде. Запустите perseus-vault doctor, чтобы проверить вашу установку и вывести эту матрицу локально.

Клиент

Статус

Конфигурация

Claude Desktop

claude_desktop_config.json

Claude Code / Hermes

.mcp.json / config.yaml

Cursor

.cursor/mcp.json

Windsurf

mcp_config.json

VS Code + Continue.dev

config.json

Zed

settings.json

Codex CLI

~/.codex/config.toml

Фрагменты конфигурации копипастой для каждого: docs/clients/.

Затем подключите цикл припоминание → работа → захват → консолидация к событиям сессии вашего клиента (хуки SessionStart/Stop для Claude Code, Codex и Cursor, плюс портативное резервное решение AGENTS.md): docs/lifecycle-hooks.md.

Композиция с очистителем памяти (CoalWash) и уплотнителем вывода времени выполнения (Noisegate) для сквозного контроля бюджета контекста: docs/integration/context-budget-stack.md.

Аудит того, что Vault помнит, откуда и под чьей властью: docs/evidence-chain-guidance.md — цепочки доказательств, теги происхождения во время записи и непрерывная аттестация для долговременной памяти.

Банки памяти (изоляция на клиента, один профиль)

Агентство запускает 50 клиентов с одним и тем же сценарием? Не дублируйте профили — назначьте банк памяти для каждого проекта и храните один профиль Hermes, один Vault и одну общую библиотеку навыков:

# .hermes.md
memory_bank: acme-seo            # name → deterministic workspace hash
memory_bank_workspace: <64-hex>  # optional explicit workspace override

Провайдер памяти Hermes (hermes plugins install Perseus-Computing-LLC/hermes-plugin-perseus-vault) разрешает банк один раз за сессию и ограничивает каждое чтение и запись Vault — предварительное припоминание, perseus_recall / perseus_remember / perseus_forget, захват в конце сессии — выделенным рабочим пространством. Имена банков сопоставляются детерминированно (sha256("memory-bank:" + name)), поэтому каждый экземпляр, указывающий на одно и то же имя, обращается к тому же рабочему пространству без необходимости поддерживать реестр. Рабочие пространства являются первоклассными на сервере: ограниченное обслуживание, изоляция дедупликации между банками и манифесты полномочий для каждого рабочего пространства. Обнаружение отражает правила контекста проекта Hermes (побеждает ближайший .hermes.md, ограничен корнем git); файл контекста без директивы означает отсутствие банка — настроенное рабочее пространство остается в силе.

Почему Perseus Vault

Perseus Vault — это единственный движок памяти, который одновременно является MCP-нативным, локальным, не имеющим зависимостей И ориентированным на агентов.

LongMemEval QA (официальный стенд)

Качество припоминания, измеренное на официальном стенде LongMemEval, а не на самодельном скрипте:

Движок памяти

Точность QA

Perseus Vault

73.8%

Zep

63.8% (опубликовано)

Mem0

49.0% (опубликовано)

longmemeval_s (500 вопросов), отвечающий gpt-4o-2024-08-06 + официальный судья LongMemEval; цифры конкурентов — их опубликованные значения. 73.8% Perseus Vault — это простое среднее 3 запусков; 79.0% с официальным CoT. Методология и результаты с хешированием содержимого (sha256) →

LOCOMO (собственный стенд mem0)

Измерено на собственном стенде LOCOMO от mem0 (наш форк), а не нашем — категории 1–4, 1540 вопросов, топ-200, отвечающий и судья gpt-5:

Движок

В целом

Одиночная

Временная

Множественная

Открытый домен

Perseus Vault 2.20.2

87.9%

89.1

92.2

85.1

70.8

Mem0 Platform Starter

82.2%

85.0

82.9

78.0

67.7

Zep Cloud Flex

33.8%

36.9

6.9

50.0

49.0

Категория 5 состязательная (446 вопросов): Perseus 63.5, Mem0 55.6, Zep 49.8. Наше измерение Mem0 на 9.4 пункта ниже их опубликованного файла (дрейф судьи/платформы — раскрыто). Полная таблица лидеров →

Битемпоральное путешествие во времени (три оси)

Наш самый сильный структурный дифференциатор — полная битемпоральная история SQL:2011 (время транзакции и действительное время) — измеренная на воспроизводимом, полностью офлайн испытании. Он управляет реальным поставляемым бинарником через MCP stdio через сложные случаи, с которыми одноосевые конкуренты ошибаются (ретроактивные исправления, упреждающие факты с датой в будущем, поступление не по порядку, расхождение убеждения и истины, закрытые периоды):

Ось

На какой вопрос отвечает

Проверки

Пройдено

valid-time (valid_at)

"что было истинно в мире в момент T"

10

10

transaction-time (as_of)

"во что мы верили в момент T"

1

1

bi-temporal (bitemporal)

"согласно мнению на момент T, что было истинно в V"

2

2

Total

13

13 (100%)

Воспроизведение одной командой (без API-ключа, без сети, без LLM):

cargo build --release
python benchmark/temporal/gauntlet.py --bin target/release/perseus-vault

Вердикты PASS/FAIL детерминированы (отметки времени стенных часов варьируются, вердикты — нет), поэтому правильная сборка повторно запускается до идентичного signature_sha256. Зафиксированный gauntlet_report.json является эталоном. Методология и набор данных →

Сравнительная матрица

Perseus Vault

Mem0

Letta

Zep

Развёртывание

Один бинарник

Облако + самостоятельное размещение

Docker/Postgres

Docker/Neo4j

Зависимости

Нет (встроенный SQLite)

Python + векторная БД

Postgres + Python

Neo4j + Go (Graphiti)

MCP-нативный

✅ 157 канонических инструментов

❌ Не MCP-нативный

❌ Не MCP-нативный

❌ Не MCP-нативный

Офлайн/Локально

✅ Полностью локально

Зависит от облака

Требуется Docker

Требуется Docker

Шифрование

AES-256-GCM ✅

Гибридный поиск

BM25 + Плотные вектора + RRF

Только вектора

Только вектора

Вектора + Граф

Жизненный цикл сущностей

Затухание + Продвижение + Архивация

Граф сущностей

Связь + Обход

Журнал аудита

✅ Неизменяемый

Управление состоянием

✅ Ключ-значение + TTL

MCP-инструменты

103 канонических

5

8

0

Лицензия

MIT

Apache 2.0

Apache 2.0

Apache 2.0

Полное сравнение: Perseus Vault vs Mem0 → vs Letta → vs Zep →

Стресс-тест: 100K сущностей

Perseus Vault справляется с производственными нагрузками на скромном оборудовании. Цифры ниже взяты из зафиксированного артефакта benchmark/scale/report.json: реальный релизный бинарник, управляемый через MCP stdio (один постоянный процесс на размер корпуса), AMD64 16-ядерный, Windows 11, каждая запись устойчива перед отправкой следующей.

Метрика

10K

100K

Пропускная способность записи, устойчивая (MCP stdio)

479 док/с

40 док/с

Гибридное извлечение p50

19.03 мс

79.73 мс

Извлечение FTS5 p50

3.14 мс

15.67 мс

Полные перцентили, точечные запросы as_of, временное извлечение и показатели холодного старта находятся в benchmark/scale/.

Запустите сами: python benchmark/scale/run.py

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

Скорость — это лишь входной билет; вопрос, который имеет значение для памяти агента: действительно ли нужная память всплывает? Измерено на корпусах с различным содержимым (собственные, воспроизводимые; см. benchmark/lambda/), recall@k по режиму:

100 000 сущностей (1×H100, nomic-embed-text на Ollama):

извлечение@k

ключевые слова (BM25/FTS5)

плотные

гибрид (RRF)

@1

0.003

0.680

0.785

@5

0.015

0.859

1.000

@10

0.029

0.899

1.000

При 100K сущностях гибридное извлечение идеально на @5, в то время как поиск по ключевым словам попадает только ~1,5% времени — разрыв ~66×. И он увеличивается с масштабом: при 10K сущностях извлечение по ключевым словам @5 было 0,008, а гибрид уже 1,000; память только на ключевых словах молча ухудшается по мере накопления истории агентом, гибрид (BM25 + плотные вектора + слияние взаимных рангов) — нет. Это ключевой аргумент в пользу гибридного поиска Perseus Vault.

Сравнение один на один, та же машина, тот же корпус, всё полностью локально (1×H100, Ollama — одинаковый набор фактов, запросов и оценщик подстрок для каждой системы):

Система

Точность извлечения

Задержка p50

Примечания

Perseus Vault (гибрид)

1.00

35.6 мс

один самодостаточный бинарник, внутри процесса

Letta (архивный / pgvector)

1.00

135.5 мс

сервер + Postgres/pgvector

Mem0 (вектора)

0.60

37.9 мс

Python + векторная БД

Zep (Graphiti временной KG)

0.20

49.7 мс

сервер + Neo4j; граф извлечён локальной моделью

Каждый конкурент был развёрнут и запущен вживую на той же машине против того же локального Ollama (qwen2.5:14b-instruct + nomic-embed-text) — никакого облака, никаких выдуманных цифр. Letta работал как сервер letta/letta (встроенный Postgres/pgvector) и достиг 1.00, как и Perseus Vault. Самостоятельно размещаемый сервер Community Edition от Zep устарел, и его API памяти zep_python теперь доступен только в Zep Cloud, поэтому мы измерили фактический OSS-движок Zep — временной граф знаний Graphiti на Neo4j — с извлечением сущностей/связей и эмбеддингами на том же локальном Ollama. Его 0.20 отражает реальную стоимость построения графа знаний с помощью локальной модели (структурированное извлечение с потерями: 5 сущностей / 2 ребра из 6 фактов) — а не Zep Cloud, который использует передовые модели. Полный артефакт + методология: benchmark/lambda/results/competitors.json.

Холодный старт: голая машина с GPU выдает первый обоснованный RAG-ответ за 3.3 с (модели размещены на диске).

Воспроизведение: benchmark/lambda/scale_bench.py и competitors_bench.py.

Развёртывание рядом с сервером моделей на GPU-хосте (vLLM на MI300X/H100)? См. справочник по развёртыванию на AMD MI300X — измеренные показатели совместного размещения, а также подводные камни /dev/shm, PID-1 и фиксации версий, которые ломают эти стеки на практике.

Интеграции с фреймворками

Готовые к использованию адаптеры, которые делают Perseus Vault стандартным бэкендом памяти для популярных фреймворков AI-агентов:

Фреймворк

Интеграция

Тип

LangGraph

PerseusVaultStore

реализация BaseStore

CrewAI

PerseusVaultMemoryTool

инструмент агента

AutoGen

PerseusVaultMemory

реализация Memory

Каждый адаптер:

  • Подключается через подпроцесс MCP stdio (постоянная сессия)

  • Отображает интерфейс памяти фреймворка на инструменты Perseus Vault

  • Поставляется с быстрым стартом в README (5 минут до работы)

  • Имеет проходящие тесты с имитированным MCP-транспортом

Любой MCP-совместимый фреймворк работает с Perseus Vault напрямую. См. Интеграции MCP-клиентов и фреймворков для полного списка.

150 канонических MCP-инструментов

Канонические названия продуктов и инструментов. Perseus Vault — это название продукта, и интеграции используют канонические инструменты perseus_vault_* (например, perseus_vault_remember). Устаревшие названия mimir_* / mneme_* / plutus_* были удалены в мажорном релизе 2026-27 годов — канонические названия являются единственным интерфейсом. Количество — это число уникальных канонических инструментов в исходном реестре. Совместимые псевдонимы вызываемы, но не учитываются отдельно. Устаревшие названия perseus_vault_* и perseus_vault_* остаются полностью вызываемыми — каждый префикс направляется к тому же обработчику — они просто больше не рекламируются в tools/list. Это позволяет сохранить рекламируемый манифест как одно имя на инструмент вместо его утроения (3× раздувание псевдонимов), поэтому подключённые клиенты не перезагружают утроенную полезную нагрузку схемы инструментов при каждом запросе. Чтобы восстановить историческое поведение рекламирования всех трёх префиксов, установите PERSEUS_VAULT_TOOL_ALIASES=all (устаревшая env PERSEUS_VAULT_TOOL_ALIASES также учитывается; PERSEUS_VAULT_ имеет приоритет).

Совместимость клиентов (#633). Клиенты, которые проверяют рекламируемый список — они проверяют tools/list перед вызовом и пропускают инструменты, которых не видят — будут молча пропускать устаревшие вызовы perseus_vault_* к хранилищу версии 2.x, хотя сам вызов был бы успешным. Известный случай: CLI perseus ≤ 1.0.22 жёстко кодирует perseus_vault_recall и деградирует до пустого локального извлечения. Исправление с любой стороны: обновите CLI до ≥ 1.0.23 (вызывает канонические имена с динамическим запасным вариантом) или установите PERSEUS_VAULT_TOOL_ALIASES=all на хранилище в качестве моста, пока старые клиенты остаются развёрнутыми.

Области инструментов (уровни рекламы, #1051)

По умолчанию tools/list рекламирует все канонические инструменты. Установите PERSEUS_VAULT_TOOL_SCOPE, чтобы сузить рекламируемую поверхность для клиентов-агентов, ограниченных по токенам и вниманию:

Настройка

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

Количество

full (по умолчанию)

всё

150

ops

поверхность агента + операционная чистка, обслуживание, управление, экспорт

140

agent

повседневная память + поверхность координации (извлечение/запоминание/контекст/передачи/состояние, плюс вызовы AAR на стороне агента)

48

Области предназначены только для рекламы: скрытый инструмент остаётся полностью вызываемым через tools/call, а авторизация остаётся за привязкой к рабочему пространству и манифестам полномочий. Классификация уровней представляет собой вспомогательную таблицу 1:1 (TOOL_SCOPES в src/mcp.rs), принудительно применяемую CI с помощью scripts/registry_metadata_check.py — каждый новый инструмент должен быть классифицирован. Инструменты уровня admin (migrate, purge, erase, vault_import, authority_set / authority_revoke / authority_set_signed) никогда не появляются в списке с областью.

CRUD сущностей

Инструмент

Описание

perseus_vault_remember

Сохранить/обновить сущность. Идемпотентна по (category, key); изменение содержимого сохраняет снимок предыдущей версии в историю.

perseus_vault_recall

Поиск в режимах FTS5/dense/hybrid, фильтры, расширение по стеммингу. Контракт запроса (#562): query="" — перечисление всех записей (путь «список всех»); "*" и другие подстановочные знаки являются литеральными терминами FTS5, не глобами — "*" ничего не находит.

perseus_vault_scan

Детерминированное постраничное перечисление категории или всего хранилища (#562): неизменяемые страницы keyset с id ASC и контрактом next_cursor/has_more, благодаря чему вызывающие export/sync/reset могут обойти каждую сущность ровно один раз. Только чтение — без побочных эффектов подсчёта обращений/затухания, без ограничения по offset.

perseus_vault_hygiene

Отчёт по гигиене стартовой памяти только для чтения (#675): оценивает активные воспоминания по «применимости» (конкретные якоря — ключи issue, #refs, пути, URL, решения — против расплывчатых/только с датой/коротких) и перечисляет худших нарушителей с причинами для курирования архивации/консолидации.

perseus_vault_recall_layer

Извлечение из конкретного биомиметического слоя (world, episodic, semantic).

perseus_vault_recall_when

Проактивное извлечение точно вовремя: показывать сущности, у которых срабатывают триггеры recall_when.

perseus_vault_get_entity

Получить одну сущность по ID с полным body_json.

perseus_vault_as_of

Транзакционное путешествие во времени: версия факта (category + key), которая считалась верной в прошлый момент времени.

perseus_vault_valid_at

Поиск по времени действия: версия, которая фактически была истинной в мире в момент времени, согласно текущим знаниям (SQL:2011 APPLICATION_TIME).

perseus_vault_bitemporal

Полный двуосевой битемпоральный запрос: «по состоянию на транзакционное время T, что мы считали истинным в действительное время V» — точная ячейка прямоугольника.

perseus_vault_history

Список заменённых версий факта (category + key), сначала новые — постранично (limit по умолчанию 20, плюс offset); total сообщает полный размер истории (дополнение к perseus_vault_as_of).

perseus_vault_forget

Мягкое удаление (archived=1).

Поиск и RAG

Инструмент

Описание

perseus_vault_ask

RAG: извлечь контекст, запросить LLM, вернуть обоснованный ответ с источниками.

perseus_vault_embed

Генерировать плотные векторы с помощью встроенной модели, Ollama или endpoint, совместимого с OpenAI.

perseus_vault_semantic_search

Ярлык семантического поиска только по плотным векторам — находить сущности по смыслу, ранжированные исключительно по схожести эмбеддингов (без запасного поиска по ключевым словам).

perseus_vault_context

Предварительно отформатированный markdown-блок для инъекции в сессию. По умолчанию сначала извлечение: передайте query (текущую задачу/сообщение), и будут внедрены только тематически релевантные сущности, ограниченные бюджетом на модель; прежняя безусловная выгрузка требует mode: "always_inject".

perseus_vault_ingest

Запускать синхронизацию коннекторов (GitHub, file watcher); неизменённое содержимое пропускается через повторное воспроизведение контейнеров (#1050).

perseus_vault_span_audit

Сеть потерь при извлечении (#1048): сохранять предложения, пропущенные экстрактором, как остаточные spans, дословно с указанием происхождения.

perseus_vault_report_refusal

Сеть потерь при извлечении (#1048): отказ как сигнал — заново оценивать spans относительно запроса, возвращать полезную нагрузку для повторной попытки, помечать потерянные единицы.

perseus_vault_report_success

Сеть потерь при извлечении (#1048): подтвердить повторную попытку — прикрепить предварительный ключ запроса, чтобы идентичный повторный запрос использовал первый проход.

perseus_vault_ingest_file

Локально извлекать текст документа (plaintext/markdown всегда; DOCX/PDF с функцией multimodal) и сохранять его как сущность, доступную для извлечения.

perseus_vault_extract

Локальное, детерминированное, основанное на правилах извлечение знаний (факты / предпочтения / временные события / эпизоды) из текста или сохранённой сущности. Только чтение.

perseus_vault_capture

Опциональный захват в рамках сессии (#520): извлекать из полезной нагрузки транскрипта/инсайта (текст, markdown или JSONL) долговечные сущности (root-cause / pitfall / decision / pattern / takeaway) в момент решения проблемы. По умолчанию локальный дистиллятор на основе правил, опционально llm: true с корректным откатом; объединение почти дубликатов остаётся включённым, плюс лимит на один вызов (анти-флуд). Также CLI-команда: perseus-vault capture.

perseus_vault_memories

Файловый интерфейс, совместимый с memory-tool Anthropic (view/create/str_replace/insert/delete/rename в /memories), на основе сущностей хранилища.

📖 docs/retrieval-modes.md — единый перечисленный справочник для каждого режима поиска (keyword · dense · hybrid · graph · GraphRAG · проактивный recall_when · темпоральный as_of): механизм, когда использовать, вызов и примеры.

Граф

Инструмент

Описание

perseus_vault_link

Создание типизированных реляционных связей между сущностями.

perseus_vault_unlink

Удаление связей сущностей.

perseus_vault_traverse

Обход графа связей сущностей до настраиваемой глубины.

perseus_vault_communities

Обнаружение сообществ GraphRAG по графу связей (детерминированная маркировка распространения или жадная модульная «лувенская»; чистый Rust, офлайн).

perseus_vault_community_summary

Экстрактивное (опционально доработанное LLM) резюме одного сообщества, материализованное как сущность со связями evidence_for с участниками.

perseus_vault_global_recall

Глобальный поиск GraphRAG: обзор по сводкам сообществ, затем углубление в участников лучших сообществ — целостные ответы по кластерам.

perseus_vault_graph_drift

Отчет о расхождениях графа/сущностей/индексов/квитанций только для чтения (#869): неподтвержденные, висячие, заархивированные/с истекшим сроком действия и межрабочие ребра, устаревшие членства в сообществах, расхождения FTS, ссылки журнала на отсутствующие сущности.

perseus_vault_graph_attest

Простановка идентификатора сущности с исходной стороны как якоря подтверждения на устаревших ребрах, чтобы они стали доступны для механизмов извлечения графа (#869); предварительный просмотр в режиме dry-run, с журналированием.

Журнал

Инструмент

Описание

perseus_vault_journal

Добавление структурированного события с указанием автора.

perseus_vault_check_failure_pattern

Защита от повторения ошибок: проверка действия на предмет ранее зафиксированных сбоев (журнал + сущности сбоев/ловушек) перед повторной попыткой. Только чтение.

perseus_vault_timeline

Запрос журнала по временному диапазону с фильтрами.

Состояние

Инструмент

Описание

perseus_vault_state_set

Установка состояния ключ-значение с опциональным TTL.

perseus_vault_state_get

Получение значения состояния. Возвращает null, если истекло.

perseus_vault_state_delete

Удаление записи состояния.

perseus_vault_state_list

Список ключей состояния, опционально отфильтрованных по префиксу.

Жизненный цикл

Инструмент

Описание

perseus_vault_decay

Пересчет оценок затухания по кривой Эббингауза (пакетные транзакции по 1000 сущностей).

perseus_vault_prune

Массовое архивирование по категории, порогу затухания или возрасту.

perseus_vault_purge

Безвозвратное удаление заархивированных сущностей + VACUUM. Разрушительная операция.

perseus_vault_expire

Очистка жизненного цикла по времени: сущности, у которых expires_at в теле наступило, переводятся в статус 'expired' (содержимое сохраняется, поддерживается dry-run).

perseus_vault_redact

Редактирование содержимого: замена тела сущности в рамках рабочего пространства на маркер только с хешем, удаление истории + текста FTS, сохранение метаданных (повторная загрузка разрешена). Требует явного workspace_hash.

perseus_vault_erase

Физическое удаление сущности в рамках рабочего пространства из ВСЕХ производных слоев (FTS, история, сообщества, связи, журнал) + постоянное подавление повторной загрузки. Требует явного workspace_hash; поддерживается dry-run.

perseus_vault_cohere

Автономный проход по приведению к согласованности — продвижение, затухание, связывание, архивирование.

perseus_vault_autocohere

Полная атомарная обработка: согласование → затухание → уплотнение за один проход (поддерживает dry-run).

perseus_vault_compact

Архивирование сущностей ниже порога затухания.

perseus_vault_reindex

Перестроение поискового индекса FTS5 из таблицы сущностей.

perseus_vault_consolidate

Объединение перекрывающихся/дублирующихся сущностей в категории в устойчивые наблюдения с отслеживанием доказательств (зеркальное отражение perseus_vault_conflicts).

perseus_vault_dream

Консолидация LLM в режиме сна: анализ кластеров связанных эпизодических воспоминаний через настроенную LLM и запись устойчивых семантических выводов с привязкой к каждому источнику. Идемпотентность (хеш набора доказательств), учет противоречий, ограниченность; требуется --llm-endpoint.

Качество

Инструмент

Описание

perseus_vault_score

Назначение оценки качества (0.0-1.0).

perseus_vault_conflicts

Обнаружение конфликтующих сущностей через триграммное сходство; опциональный resolve=true переводит сторону с меньшей достоверностью в историю (обратимо, по умолчанию dry-run).

perseus_vault_correct

Фиксация структурированных исправлений для обучения на ошибках.

perseus_vault_supersede

Отметка нового факта как заменяющего старый (устанавливает старой сущности статус deprecated).

perseus_vault_follow

Запись, была ли сущность фактически ВЫПОЛНЕНА или ПРОПУЩЕНА — сигнал эффективности отслеживания, который влияет как на оценку затухания, так и на ранжирование извлечения с учетом результатов (#681).

Ключевые камни (правила политики)

Инструтор

Описание

perseus_vault_keystone_set

Создание Ключевого камня — обязательного правила политики, которое сохраняется при уплотнении контекста (#683). Область действия (арендатор/флот/агент), ранжирование по весу, крипто-цепочка при каждом изменении; создание ограничено уровнем доверия.

perseus_vault_keystone_get

Получение объединенных Ключевых камней для области, отсортированных по весу (сначала наибольший), затем по специфичности области — детерминированный аналог извлечения для начала сессии. Рендерер вставляет их перед всем остальным контекстом.

perseus_vault_agent

Регистрация/обновление или поиск агента в реестре мультиагентов (#684): идентификатор + уровень доверия (0-3) + флот. Уровень доверия ограничивает чувствительные операции (например, создание ключевых камней требует уровня ≥ 2) и управляет контролем видимости при извлечении.

Хранилище и Федерация

Инструмент

Описание

perseus_vault_vault_export

Экспорт сущностей в .md файлы с YAML frontmatter.

perseus_vault_vault_import

Импорт из .md директории хранилища (идемпотентный).

perseus_vault_federate

Копирование сущностей между рабочими пространствами. Это локальный экспорт / переименование рабочего пространства / повторный импорт (на основе файлов, без сетевых пиров); путь по умолчанию, безопасный для Windows, отслеживается в #704.

perseus_vault_share

Поделиться одной сущностью (по категории + ключу) в другое рабочее пространство, сохраняя содержимое.

perseus_vault_workspace_list

Список всех различных категорий сущностей.

Метрики и операции

Инструмент

Описание

perseus_vault_stats

Полная статистика БД по всем таблицам.

perseus_vault_health

Проверка работоспособности сервера и БД.

perseus_vault_bench

Отслеживание бенчмарков производительности.

perseus_vault_maintenance

Обслуживание БД: дедупликация, обнаружение сирот, VACUUM, переиндексация FTS5 (поддерживает пробный запуск).

perseus_vault_synthesize

Синтез сессий LLM — извлечение уроков из транскриптов.

perseus_vault_migrate

Миграция БД v0.1.x на текущую схему.

Инструменты по задачам (шпаргалка агента)

Не перечисление категорий — а перечисление задач. Выберите строку в соответствии с тем, что пытается сделать агент:

Задача

Инструменты

Запомнить долговечный факт / решение / исправление

remember, capture, journal, correct

Вспомнить перед планированием

recall, recall_batch, recall_when, context, ask

Реконструировать историю разработки (цепочка намерений, следующая работа)

handoff_packinclude_intent_trail / include_next_work), delegation_brief, timeline, traverse

Решения: замена и полномочия

supersede, history, authority_get, action_receipt_get, keystone_get

Спросить "во что мы тогда верили?"

as_of, valid_at, bitemporal, history

Исправить запись / выявить противоречия

correct, supersede, conflicts, reject_value

Политика, переживающая уплотнение

keystone_get, keystone_set

Операции, доверие и область видимости

health, stats, agent, workspace_status, doctor (CLI)

CLI

# Server
perseus-vault serve --db /data/perseus-vault.db
perseus-vault serve --web --port 8767 --encryption-key ~/.perseus-vault/secret.key
perseus-vault serve --llm-endpoint http://localhost:11434/api/generate --llm-model llama3
perseus-vault serve --transport sse --port 8787 --mcp-token my-secret-token

# Maintenance (operate directly on DB, no server needed)
perseus-vault stats          --db /data/perseus-vault.db
perseus-vault forget         --db /data/perseus-vault.db --category decision --key stale-choice --reason "superseded"
perseus-vault prune          --db /data/perseus-vault.db --category junk --min-decay 0.1 --dry-run
perseus-vault purge          --db /data/perseus-vault.db --dry-run
perseus-vault decay          --db /data/perseus-vault.db
perseus-vault reindex        --db /data/perseus-vault.db
perseus-vault vault-export   --db /data/perseus-vault.db --vault-dir ./export/
perseus-vault vault-import   --db /data/perseus-vault.db --vault-dir ./export/
perseus-vault obsidian-sync  ~/obsidian-vault/Perseus Vault/          # one-shot export to an Obsidian vault
perseus-vault obsidian-sync  ~/obsidian-vault/Perseus Vault/ --watch  # continuous sync on every memory change

# Key management
perseus-vault keygen --key-file ~/.perseus-vault/secret.key

# #918: read-only TUI inspector (retrieval telemetry, claim cards, entity
# state, decay, bi-temporal history). Never writes; repairs go through the
# governed MCP tools. Requires the default `tui` feature.
perseus-vault inspect --db /data/perseus-vault.db --key-file ~/.perseus-vault/secret.key

Живые обновления без перезапуска сессии

perseus-vault serve обнаруживает, когда его собственный бинарный файл заменяется на диске в середине сессии (обычный процесс cargo build / переустановки) и отказывается обслуживать результаты из устаревшего образа процесса — каждый инструмент отвечает громкой, явной ошибкой вместо деградации до пустых результатов (#858, #1045). Два пути восстановления, оба по тому же stdio-соединению (без перезапуска клиента):

  • Явный: вызовите perseus_vault_handoff_restart {"confirm": true} — процесс горячо заменяется на новый бинарный файл, и сессия продолжается без проблем, с сохранением состояния сессии MCP (инициализация + идентичность агента).

  • Автоматический (опциональный): запустите сервер с PERSEUS_VAULT_AUTO_HANDOFF=1, и замена происходит прозрачно при следующем вызове инструмента, на который новый бинарный файл отвечает напрямую.

На macOS/Linux замена — это настоящий exec (тот же PID, те же каналы). Windows блокирует запущенный исполняемый файл, поэтому замена в середине сессии там невозможна; обновляйте между сессиями. Полный контракт и рабочий процесс локальной разработки: docs/specs/live-update-handoff.md.

Ручные правки БД. Глаголы обслуживания выше и обычный путь записи MCP автоматически синхронизируют индекс FTS5. Редактирование таблицы entities напрямую с помощью sqlite3 (ручной DELETE/UPDATE) обходит эту синхронизацию и может оставить осиротевшие строки индекса — "призрачные" попадания при поиске для контента, которого уже нет. После любого прямого SQL-редактирования запустите perseus-vault maintain --db <путь> (или perseus-vault reindex), чтобы согласовать FTS-индекс.

Флаги

Флаг

Описание

--db

Путь к базе данных SQLite (по умолчанию: ~/.perseus-vault/data/perseus-vault.db)

--web

Запустить веб-панель

--port

Порт панели (по умолчанию: 8767)

--web-bind

Адрес привязки панели (по умолчанию: 127.0.0.1)

--transport

Транспорт MCP: stdio (по умолчанию), sse или http

--mcp-token

Bearer-токен для аутентификации транспорта SSE/HTTP

--encryption-key

Путь к файлу ключа AES-256-GCM

--llm-endpoint

Конечная точка API LLM для perseus_vault_ask и эмбеддингов

--llm-model

Имя модели LLM (по умолчанию: llama3)

--llm-api-key

Ключ API для конечных точек LLM (OpenAI, Azure и т.д.)

--embedding-endpoint

Конечная точка эмбеддингов, совместимая с OpenAI

--connectors-config

Путь к connectors.yaml

Расположение базы данных

Канонический путь к базе данных:

~/.perseus-vault/data/perseus-vault.db

Всегда передавайте --db (или устанавливайте $PERSEUS_VAULT_DB_PATH) в скриптах, конфигурациях MCP-хоста и заданиях cron/harvest, чтобы каждый вызов указывал на один и тот же файл. Если не задано ни то, ни другое, Perseus Vault разрешает путь по умолчанию в следующем порядке и использует первый, который уже существует (чтобы пользователи, выполняющие обновление, и устаревшие однопользовательские установки были подхвачены вместо того, чтобы молча начинать с пустой БД):

  1. ~/.perseus-vault/data/perseus-vault.db — канонический (текущее имя)

  2. ~/.perseus-vault/data/perseus-vault.db — до переименования

  3. ~/.perseus-vault/data/perseus-vault.db — до переименования

  4. ~/perseus-vault.db — устаревшее расположение однопользовательской установки

Если ни одного не существует, он создает ~/.perseus-vault/data/perseus-vault.db. Если более одного из них существует, и вы не передали --db/$PERSEUS_VAULT_DB_PATH, Perseus Vault выводит предупреждение в stderr с именем выбранного файла и других, которые он проигнорировал, чтобы неоднозначное состояние с несколькими базами данных было видимым, а не молчаливым. Явная установка --db или $PERSEUS_VAULT_DB_PATH всегда имеет приоритет и подавляет предупреждение.

Ваша AI-память в Obsidian

Perseus Vault — это долговременная память вашего AI-агента — и она также служит вашим вторым мозгом. Каждая сущность, которую запоминает ваш агент, экспортируется в простую заметку Markdown с YAML frontmatter, так что память вашего AI становится навигационной базой личных знаний внутри инструментов, которые вы уже используете: Obsidian, Logseq или Notion.

# Export your entire memory to an Obsidian vault as linked Markdown notes
perseus-vault obsidian-sync ~/obsidian-vault/Perseus Vault/

# Keep it live — re-export automatically on every memory change
perseus-vault obsidian-sync ~/obsidian-vault/Perseus Vault/ --watch

Откройте хранилище в Obsidian, и вы получите граф знаний вашего агента.

Обратные ссылки WikiLink. Когда одна сущность ссылается на другую (через perseus_vault_link или отношение depends_on / implements / references), экспортированная заметка получает раздел ## Links с обратными ссылками [[WikiLink]], которые нативно разрешаются в представлении графа Obsidian:

---
id: cli-de8dfb8364b6
category: architecture
key: api
type: insight
decay_score: 0.5000
---

{"content":"axum service"}

## Links

- [[cli-99756b494c7d|database]] (depends_on)

Ссылки разрешаются по идентификатору сущности (заметки записываются как <id>.md), поэтому они никогда не ломаются, и Obsidian показывает читаемый человеком key в качестве метки ссылки. Откройте представление графа, и архитектура вашего агента, решения и инсайты станут интерактивной картой знаний.

--watch опрашивает дешевый, детерминированный дайджест состояния Perseus Vault с интервалом и повторно экспортирует только тогда, когда память действительно изменилась. Он естественным образом перехватывает каждую запись perseus_vault_remember без зависимости от файлового наблюдателя и без привязки к серверу. Настройте интервал с помощью PERSEUS_VAULT_SYNC_INTERVAL_SECS (по умолчанию: 2с).

Другие инструменты PKM

Инструмент

Как

Obsidian

perseus-vault obsidian-sync <хранилище> — WikiLinks разрешаются в представлении графа из коробки.

Logseq

Укажите obsidian-sync на директорию графа Logseq. Logseq читает тот же синтаксис [[WikiLink]] и Markdown frontmatter.

Notion

Запустите perseus-vault vault-export, затем используйте Импорт → Markdown & CSV в Notion, чтобы импортировать заметки.

В отличие от облачных инструментов "второго мозга", Perseus Vault работает на 100% локально, написан на Rust, шифрует в состоянии покоя с помощью AES-256-GCM и применяет оценку устаревания, так что устаревшие воспоминания исчезают — ваша база знаний остается вашей и остается свежей.

Возможности

Семантический поиск (включен по умолчанию)

  • Встроенные внутрипроцессные эмбеддинги — квантованная модель all-MiniLM-L6-v2 (384-мерная) скомпилирована в бинарный файл, поэтому плотный/семантический поиск работает без настройки и без сети: не нужен Ollama, API-ключ или загрузка модели. Это сборка по умолчанию (функция bundled-embeddings).

  • Автоматическое встраивание при записи (#271)perseus_vault_remember встраивает каждую новую (или изменённую по содержимому) сущность синхронно при записи, используя встроенную модель. Встраивание одной сущности детерминировано и кэшируется по LRU, поэтому оно дёшево и не добавляет фоновых задач. Сбои встраивания не являются фатальными (логируются в stderr); запись всегда выполняется успешно.

  • Гибридный режим по умолчанию (#271)perseus_vault_recall(query=...) без флага mode автоматически выбирает гибридный (плотный + ключевой, объединённый через RRF) при наличии эмбеддингов и прозрачно переключается на ключевой поиск fts5, если их нет. Никакого ручного шага perseus_vault_embed, никаких флагов для запоминания.

  • perseus_vault_semantic_search(query, limit) — сокращение одним инструментом для чистого плотного поиска по смыслу (без запасного ключевого варианта), когда нужно просто «найти похожее».

  • Опциональный альтернативный встраиватель — чтобы использовать Ollama или любой совместимый с OpenAI эндпоинт /v1/embeddings вместо встроенной модели, укажите --llm-endpoint (и при необходимости --embedding-endpoint / --llm-api-key). Это полностью опционально; по умолчанию используется встроенная модель.

  • Соберите лёгкий бинарный файл без встроенных эмбеддингов с помощью cargo build --no-default-features — тогда поиск по умолчанию будет ключевым, если не настроен удалённый встраиватель.

Внутреннее устройство гибридного поиска

  • Ключевой поиск FTS5 с запасным вариантом LIKE и расширением стеммингом Портера

  • Плотный векторный поиск через косинусное сходство по сохранённым эмбеддингам

  • Reciprocal Rank Fusion (RRF) — объединение результатов ключевого и векторного поиска

  • Расширение запроса — автоматические варианты стемминга для более широкого поиска

Жизненный цикл памяти

Perseus Vault моделирует память с помощью трёх биомиметических слоёв, вдохновлённых путями человеческой памяти:

  • Мир (Ядро): Медленно затухающие, глобальные факты об окружении.

  • Эпизодический (Буфер): Быстро затухающая история взаимодействий, специфичная для сессии.

  • Семантический (Рабочий): Средне затухающие, общие знания и изученные концепции.

Вы можете напрямую взаимодействовать с этими слоями с помощью инструмента perseus_vault_recall_layer или указав параметр layer в perseus_vault_remember.

  • Забывание по Эббингаузу — воспоминания естественным образом исчезают, если их не извлекать (обновление при доступе)

  • Повышение слоя — буфер → рабочий → ядро на основе частоты доступа

  • Автоматическое архивирование — устаревшие сущности архивируются; очистка для окончательного удаления + VACUUM

  • Постоянно активные сущности — закрепление критически важных для идентичности воспоминаний для внедрения в сессию (жёсткое ограничение при приоритете извлечения; предпочтительнее триггеры recall_when)

  • Проспективные подсказки запросов (#919) — опциональные 1–3 формулировки на естественном языке для каждой сущности (hints в perseus_vault_remember), которые индексируются в FTS5 вместе с телом, устраняя разрывы в словаре между запросами на простом языке и сохранёнными формулировками. Отключено по умолчанию (PERSEUS_VAULT_HINTS_ENABLED=1); отклоняется, пока не включено. См. docs/specs/prospective-query-hints.md.

Внедрение контекста с приоритетом извлечения

Хранилище — это слой запросов: оно извлекает несколько фактов, необходимых для текущего шага, вместо того чтобы передавать хосту постоянный блок для вставки в каждый системный промпт. perseus_vault_context и perseus-vault prepare по умолчанию работают с приоритетом извлечения:

  • Фильтрация по релевантности — передаётся query (текущая задача/сообщение), и внедряются только те сущности, чьи триггеры recall_when или индексированное содержимое совпадают с ним. Нет запроса — нет тематического внедрения: блок представляет собой компактный указатель для извлечения, стабильный по байтам при несвязанных записях в хранилище (дружественный к префиксному кэшу).

  • Бюджет извлечения для каждой модели — вывод ограничивается символьным бюджетом, определённым из модели хоста: профиль по умолчанию/лёгкий — 1500 символов; профиль с большим окном («opus») — 6000 символов; max_context_chars переопределяет оба.

  • Ограниченное постоянное включениеalways_on: true по-прежнему работает для критически важных для идентичности фактов, но набор с приоритетом извлечения имеет жёсткое ограничение (первые 5), а при переполнении выдаётся предупреждение, направляющее вас к триггерам recall_when.

  • Устаревший вариант — старый безусловный дамп первых N записей по-прежнему доступен с mode: "always_inject" (--legacy-context для prepare), без ограничений, если не передан бюджет.

perseus-vault prepare --task "deploying the payments service" --model claude-sonnet-4-6
perseus-vault prepare --task "..." --max-context-chars 800     # explicit budget
perseus-vault prepare --task "..." --legacy-context            # old dump, opt-in

RAG и эмбеддинги

  • perseus_vault_ask — вопросы и ответы на естественном языке по сохранённым воспоминаниям через любую LLM (Ollama, OpenAI и т.д.)

  • perseus_vault_embed — генерация и сохранение плотных векторов через Ollama или совместимый с OpenAI эндпоинт /v1/embeddings

  • Поддерживает встраивание одной сущности и пакетное встраивание по категориям

Шифрование

  • AES-256-GCM прозрачное шифрование для body_json сущности

  • Включено по умолчанию для новых установок — стандартный ключ автоматически генерируется в ~/.perseus-vault/secret.key при первой записи

  • Флаг --encryption-key для явного указания ключей; perseus-vault keygen для генерации собственного ключа

  • Существующие базы данных в открытом виде закрываются с путём миграции init --rekey (или явным PERSEUS_VAULT_ALLOW_PLAINTEXT=1)

  • Индекс FTS5 остаётся в открытом виде для поиска

Веб-панель управления

  • Встроенный HTTP-сервер Axum (perseus-vault serve --web --port 8767)

  • Панель управления в тёмной теме с поиском, таблицей сущностей, графом vis.js, временной шкалой

  • Привязка по умолчанию: 127.0.0.1 (используйте --web-bind 0.0.0.0 для открытия доступа)

  • Отдельное подключение SQLite в режиме WAL для параллельного чтения

Внешние коннекторы

  • Коннектор задач GitHub — импорт задач/PR по репозиториям, с учётом ограничения скорости

  • Наблюдатель файлов — сканирование каталогов на наличие файлов .md/.txt/.json с дедупликацией по хешу содержимого

  • Конфигурация коннекторов на основе YAML через --connectors-config

Мультитранспорт

  • stdio (по умолчанию) — без настройки, работает с любым MCP-хостом

  • SSE — Server-Sent Events для HTTP-клиентов MCP

  • HTTP — REST-подобный эндпоинт MCP

  • Аутентификация по Bearer-токену — для транспортов SSE/HTTP

Интеграция с Perseus

Perseus Vault — это бэкенд памяти по умолчанию для Perseus:

perseus_vault:
  enabled: true
  transport: "stdio"
  command: ["perseus-vault", "serve", "--db", "~/.perseus-vault/data/perseus-vault.db"]
  timeout_s: 30.0
  merge_strategy: "local_first"
  fallback_to_local: true
  context_categories: ["decision", "architecture", "convention"]
  context_limit: 10

Государственные и федеральные закупки

Perseus Vault создан для государственного развёртывания с нуля.

Возможность

Статус

Лицензия

MIT — без копилефта, без GPL/AGPL

SBOM

Опубликован — минимальные элементы NTIA

Автономность

Полностью офлайн — без телеметрии, без API-вызовов, без сети по умолчанию

Шифрование в покое

AES-256-GCM для тел, включено по умолчанию для новых установок

Журнал аудита

Неизменяемый журнал с цепочкой хранения

Цепочка поставок

Аттестация SLSA в процессе

Для федеральных покупателей: См. docs/federal-buyers.md для информации о закупках, статусе соответствия и моделях развёртывания (автономные, локальные, закрытые среды).

Perseus Computing LLC — это малый бизнес, принадлежащий США. Регистрация в SAM.gov в процессе. NAICS: 541715, 541511, 541512.

Политика конфиденциальности

Perseus Vault — это локальный MCP-сервер — он полностью работает на вашем компьютере.

Сбор данных

  • Сбор данных отсутствует. Perseus Vault не собирает, не передаёт и не отправляет домой никакие пользовательские данные, статистику использования или телеметрию.

  • Все данные остаются в вашем локальном файле базы данных SQLite.

Использование и хранение данных

  • Все сущности памяти, записи журнала и состояние хранятся локально в базе данных SQLite по пути, указанному через --db.

  • Доступно опциональное шифрование в покое AES-256-GCM — при включении тела сущностей шифруются перед сохранением.

  • Никакие данные не передаются Perseus Computing LLC или третьим лицам.

Передача третьим лицам

  • Отсутствует. Perseus Vault полностью автономен по умолчанию. Никаких API-вызовов, облачных сервисов или внешних сетевых запросов.

  • Опциональная функция плотных векторных эмбеддингов использует локально скомпилированную модель — никакой внешний API эмбеддингов не вызывается.

Хранение данных

  • Вы управляете хранением с помощью четырёх различных операций жизненного цикла (см. docs/specs/data-boundaries-retention-lifecycle.md): мягкое удаление (perseus_vault_forget, содержимое восстанавливаемо), истечение срока (perseus_vault_expire, временное status='expired' с сохранением содержимого), редактирование (perseus_vault_redact, содержимое заменяется только хешем, метаданные сохраняются) и физическое стирание (perseus_vault_erase, удаление из всех производных слоёв с постоянным подавлением повторного импорта). perseus_vault_purge освобождает место от архивированных строк.

  • Автоматическое резервное копирование вне машины не выполняется.

Контакты

Верификация релизов

Бинарные файлы релизов собираются из помеченных коммитов через GitHub Actions. Каждый релиз включает:

Артефакт

Описание

Верификация

perseus-vault-<target>.tar.gz

Полная сборка (встроенные эмбеддинги, glibc)

Контрольная сумма SHA-256 в файле .sha256

perseus-vault-lite-<target>.tar.gz

Лёгкая сборка (--no-default-features, musl/static)

Контрольная сумма SHA-256 в файле .sha256

Аттестация происхождения SLSA

Происхождение сборки, подписанное Sigstore

gh attestation verify <archive> --repo Perseus-Computing-LLC/perseus-vault

Проверка бинарного файла релиза

# 1. Verify SHA-256 checksum
sha256sum -c perseus-vault-lite-x86_64-unknown-linux-musl.tar.gz.sha256

# 2. Verify SLSA build provenance (requires gh CLI + OIDC session)
gh attestation verify perseus-vault-lite-x86_64-unknown-linux-musl.tar.gz \
  --repo Perseus-Computing-LLC/perseus-vault

# 3. Confirm the binary identity
./perseus-vault --version
# Should show both the release version AND the git commit hash, e.g.:
#   perseus-vault 2.20.2 (v2.20.2-0-gabcdef1)

# 4. Confirm the doctor reports the same identity
./perseus-vault doctor --db /tmp/test.db | head -1
#   perseus-vault doctor — v2.20.2 (v2.20.2-0-gabcdef1)

Воспроизводимая сборка из исходников

# The exact same binary (bit-for-bit) requires matching:
#   - Rust toolchain version (see rust-toolchain.toml)
#   - Locked dependencies: `cargo build --locked`
#   - Build flags: `--release` for release builds

cargo build --locked --release
./target/release/perseus-vault --version

Лицензия

MIT — см. LICENSE.

Available Tools

43 tools
mimir_askA
Read-only

Ask a natural language question and get a grounded answer from stored memories via RAG. Internally recalls top-k entities, assembles context, and queries the configured LLM (Ollama) for an answer with cited sources. Requires --llm-endpoint to be set.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesNatural language question to answer from stored memories
top_kNoNumber of top entities to use as context (max 20)

Output Schema

ParametersJSON Schema
NameRequiredDescription
answerNoGrounded answer with cited sources
sourcesNoCited source entities used in the answer

TDQS

A4.2/5.0
Behavior5/5

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

The description goes beyond the readOnlyHint and destructiveHint annotations by detailing the internal process: recalling top-k entities, assembling context, and querying the configured LLM (Ollama) for an answer with cited sources. It also discloses the dependency on the '--llm-endpoint' configuration, which is critical for the tool's 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 extremely concise: two short sentences. The first sentence clearly states the primary function, and the second adds important internal details and a requirement. No extraneous words; every sentence 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?

For a tool with 2 parameters, full schema coverage, and an output schema (indicated by context), the description covers the key aspects: purpose, internal process (RAG, top-k, LLM), and a configuration requirement. It lacks explicit mention of which memories are queried (e.g., current workspace) but remains sufficiently complete for an agent to correctly invoke the tool.

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?

The input schema provides full descriptions for both parameters ('query' and 'top_k'), achieving 100% schema coverage. The description mentions 'Internally recalls top-k entities' which adds marginal context to the 'top_k' parameter but does not significantly enhance understanding beyond the schema. Given high schema coverage, the description adequately complements but does not surpass the baseline.

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: ask a natural language question and get a grounded answer from stored memories via RAG. It uses a specific verb ('ask') and resource ('stored memories'), and the wording distinguishes it from sibling tools like 'mimir_recall' or 'mimir_synthesize' by emphasizing the natural language Q&A nature.

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 mentions a prerequisite ('Requires --llm-endpoint to be set') but does not provide explicit guidance on when to use this tool versus alternatives (e.g., mimir_recall for raw retrieval, mimir_synthesize for generation without memories). The usage context is somewhat implied through the tool's purpose, but lacking explicit when-not-to-use or alternative recommendations.

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

mimir_as_ofA
Read-only

Bi-temporal time-travel: return the version of a fact (category + key) that Mimir believed at a given past instant. When a fact is overwritten, the prior version is kept in history; this returns whichever version was live at as_of_unix_ms. Use to answer 'what did we believe about X back then?' or to audit how a fact changed. Returns found=false if the fact had not been recorded yet at that time.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesEntity key within the category
categoryYesEntity category
as_of_unix_msYesTransaction-time instant (unix ms) to travel to

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNo
keyNo
foundNoFalse if the fact had not been recorded by as_of_unix_ms
statusNo
categoryNo
body_jsonNoThe fact's content as it was at as_of_unix_ms
entity_typeNo
as_of_unix_msNo

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true. The description adds valuable context about history retention ('when a fact is overwritten, the prior version is kept') and the return behavior ('Returns found=false if not recorded yet'). This goes beyond annotations.

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?

Four concise sentences, each adding value: purpose, history explanation, use cases, return behavior. No wasted words.

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 presence of an output schema (not shown but indicated), the description covers purpose, behavior, and return field ('found'). It lacks mention of error conditions but is sufficiently complete for a time-travel query tool.

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 100%, so baseline is 3. The description mentions 'category + key' and 'as_of_unix_ms' but uses similar wording as the schema. It does not add significant new meaning beyond the 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 uses specific verb ('return the version of a fact') and resource ('category + key') and distinguishes from siblings by highlighting time-travel and history. It also gives concrete use cases like 'what did we believe about X back then?'.

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 says 'Use to answer...' providing clear context for when to use this tool. It does not explicitly exclude alternatives but implies that for current versions other tools would be used. This is sufficient for an agent.

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

mimir_autocohereA
Destructive

Run a full atomic grooming pass: cohere (promote, link, archive), then decay (recalculate Ebbinghaus decay), then compact (archive below threshold). Returns a summary report. Use dry_run=true to preview without changes.

ParametersJSON Schema
NameRequiredDescriptionDefault
dry_runNoIf true, preview changes without writing

Output Schema

ParametersJSON Schema
NameRequiredDescription
dry_runNo
decay_updatesNoEntities whose decay score was updated
links_createdNoAuto-links created during cohere
archived_entitiesNoEntities archived (cohere + compact)
promoted_entitiesNoEntities promoted during cohere
db_size_delta_bytesNoChange in SQLite file size in bytes
compact_archived_countNoEntities archived during compact step

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already indicate destructiveHint=true, and the description elaborates on the specific operations (promote, link, archive, recalculate decay) and the atomicity of the pass. It provides behavior beyond annotations, though it could detail what gets archived or destroyed more precisely.

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?

Two succinct sentences: the first states the action and steps, the second provides the dry_run option. No wasted words, front-loaded with purpose.

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?

Given the composite nature of the tool and the presence of an output schema, the description adequately covers the operation, steps, atomicity, and dry_run feature. It provides sufficient context for correct invocation.

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?

The input schema covers the single dry_run parameter (100% coverage). The description reinforces its purpose but adds little new meaning beyond the schema's description. Baseline score applies.

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 runs a full atomic grooming pass consisting of cohere, decay, and compact steps, and returns a summary report. This distinguishes it from sibling tools that operate individually (e.g., mimir_cohere, mimir_decay, mimir_compact).

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?

It mentions using dry_run=true to preview without changes, offering conditional guidance. However, it does not explicitly state when to use this composite tool versus running the individual steps separately, leaving some ambiguity for the agent.

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

mimir_benchA
Destructive

Record a performance benchmark data point. Tracks task metrics (turns taken, tokens used, success) alongside whether memory recall was used — enabling measurement of Mimir's impact on agent performance. Aggregate with mimir_recall to analyze trends.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for categorization
session_idNoSession identifier for traceability
tokens_usedYesTotal tokens consumed by the task
turns_takenYesNumber of conversation turns the task took
recall_countNoHow many times memory was recalled during this task
task_successNoWhether the task completed successfully
task_descriptionYesDescription of the task being measured
memory_recall_usedYesWhether memory recall (mimir_recall) was used during this task

Output Schema

ParametersJSON Schema
NameRequiredDescription
entity_idNoCreated benchmark entity ID
created_at_unix_msNo

TDQS

A4.2/5.0
Behavior4/5

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

The description states that the tool records a data point, which aligns with the destructiveHint annotation (modifying state). No contradictions; the annotation handles the behavioral trait, and the description adds the context of what is recorded. However, it does not disclose additional side effects like persistence or idempotency, which is acceptable given annotation coverage.

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 (40 words), front-loaded with the action verb 'Record', and contains no redundant information. Every sentence adds value: the first states the primary purpose, the second explains the metrics and relation to mimir_recall.

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 has 8 parameters (4 required) and an output schema (not shown), the description covers the core purpose and the relationship to sibling tools. It mentions the metrics being tracked but does not elaborate on the output schema or optional parameters like tags and session_id, which are adequately documented in the schema.

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 100%, so the schema already documents all parameters. The description adds collective meaning by mentioning the key metrics (turns, tokens, success, memory recall) but does not provide new details beyond what the schema offers. Baseline score of 3 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 specific verb 'Record' and clearly identifies the resource as a 'performance benchmark data point'. It lists the tracked metrics (turns, tokens, success, memory recall) and explicitly distinguishes from sibling mimir_recall by noting aggregation for trend analysis.

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 implies usage for recording benchmark data to measure Mimir's impact and directs users to aggregate with mimir_recall for analysis. While it does not list exclusions or alternatives beyond mimir_recall, the context is sufficient for an agent to decide when to invoke this tool.

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

mimir_cohereA
Destructive

Run an autonomous coherence grooming pass over the memory. Promotes buffer entities to working layer, applies decay, auto-links related entities, and archives stale ones below the decay threshold. Use dry_run=true to preview without making changes.

ParametersJSON Schema
NameRequiredDescriptionDefault
dry_runNoIf true, count what would be done without making changes
max_linksNoMaximum auto-links to create (default 20, max 100)
archive_thresholdNoDecay score below which entities are auto-archived (default 0.05)
promote_thresholdNoRetrieval count threshold for buffer to working promotion (default 3)

Output Schema

ParametersJSON Schema
NameRequiredDescription
linkedNoNumber of auto-links created
decayedNoNumber of entities whose decay score was reduced
dry_runNo
archivedNoNumber of entities archived due to low decay
promotedNoNumber of entities promoted from buffer to working
entities_examinedNoTotal non-archived entities examined
completed_at_unix_msNo

TDQS

A4.3/5.0
Behavior4/5

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

The description discloses that the tool modifies memory (promotions, decay, auto-links, archives), which aligns with the 'destructiveHint: true' annotation. It adds context beyond the annotation by specifying what changes occur, though it could mention potential side-effects more explicitly.

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?

Two sentences: the first clearly defines purpose and actions, the second adds a practical tip. No extraneous information, highly front-loaded.

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?

Given the presence of an output schema and 100% schema description coverage, the description adequately covers the tool's behavior, parameters, and usage. It lacks nothing essential for an autonomous grooming pass.

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?

The input schema covers all 4 parameters with descriptions (100% coverage). The description adds only a minor hint about dry_run. Baseline 3 is appropriate since the schema already provides adequate parameter semantics.

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: 'Run an autonomous coherence grooming pass over the memory.' It lists specific actions (promotes buffer entities, applies decay, auto-links, archives) that distinguish it from siblings like mimir_compact, mimir_decay, or mimir_prune.

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 a clear usage hint: 'Use dry_run=true to preview without making changes.' It implies the tool is for grooming memory but does not explicitly compare to alternatives or state when not to use it. This is sufficient but not exhaustive.

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

mimir_compactA
Destructive

Archive entities whose decay score has fallen below a threshold. Supports dry-run mode to preview without making changes. Run periodically or threshold-triggered to keep the database focused on active, high-value memories.

ParametersJSON Schema
NameRequiredDescriptionDefault
dry_runNoIf true, report what would be archived without making changes
min_decayNoDecay threshold — entities with decay score below this are archived

Output Schema

ParametersJSON Schema
NameRequiredDescription
dry_runNoWhether this was a dry run
entities_archivedNoNumber of entities actually archived (0 in dry-run mode)
entities_examinedNoNumber of entities checked
completed_at_unix_msNoCompletion timestamp

TDQS

A4/5.0
Behavior3/5

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

The description confirms destructive behavior via 'archive', aligning with the destructiveHint annotation. It adds the dry-run behavioral trait but does not disclose what archiving entails (e.g., reversibility, data loss). More transparency about consequences would improve this score.

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?

Two sentences: first states purpose and dry-run support, second suggests usage pattern. No redundant words or fluff; every sentence 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 presence of output schema (not shown but indicated), the description covers the core action and usage pattern adequately. It could detail consequences of archiving (e.g., recoverability), but overall it is sufficiently complete for a tool with well-documented parameters.

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?

The input schema has 100% description coverage, with clear explanations for both parameters ('dry_run' and 'min_decay'). The tool description does not add new meaning beyond reiterating the decay threshold and dry-run mode, so value is marginal.

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 verb 'Archive' and the resource 'entities whose decay score has fallen below a threshold'. It specifies the dry-run mode and mentions periodic/threshold-triggered usage, distinguishing it from sibling tools like mimir_prune or mimir_purge.

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 advises to run 'periodically or threshold-triggered' and mentions dry-run mode for previewing. It does not explicitly state when not to use this tool or list alternatives, but the given context is clear and actionable.

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

mimir_conflictsA

Detect conflicting entities in the same category — pairs with low trigram similarity in their body_json. Flags potential contradictions, duplicate-but-divergent entries, and stale-overwritten facts. Read-only by default. Opt in with resolve=true to actively invalidate the lower-certainty side of clear conflicts (superseding it into history, reversible + time-travelable via mimir_as_of); that path defaults to dry_run=true so you preview first, and never resolves pairs whose certainties are within certainty_margin.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of conflicts to return / resolve
offsetNoNumber of entities to skip for pagination
dry_runNoWhen resolve=true, only report what would be invalidated unless set false
resolveNoOpt-in: invalidate the lower-certainty side of clear conflicts instead of only reporting them
categoryYesCategory to scan for conflictsgeneral
thresholdNoSimilarity threshold — pairs below this are flagged as conflicts
certainty_marginNoMinimum certainty gap to auto-resolve; closer pairs are skipped as ambiguous

Output Schema

ParametersJSON Schema
NameRequiredDescription
conflictsNoConflict pairs with similarity scores (detection mode)
invalidationsNoWinner/loser pairs invalidated or previewed (resolve mode)

TDQS

A3.8/5.0
Behavior1/5

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

Contradiction: description claims 'Read-only by default' but annotations set readOnlyHint=false, indicating the tool may cause side effects. This inconsistency undermines transparency. Otherwise, description explains behavior well.

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?

Well-structured with main purpose upfront, then details on resolve mode. A bit lengthy but each sentence adds value. Could be slightly more concise, but still effective.

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?

Comprehensive for a complex tool with 7 parameters and output schema. Covers both detection and resolution, safety mechanisms, and parameter behavior. No gaps for correct invocation.

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?

All 7 parameters have descriptions in schema (100% coverage). Description adds value by explaining how parameters interact (e.g., dry_run with resolve, certainty_margin for ambiguity) and the trigram similarity context for threshold.

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?

Description clearly states the tool detects conflicting entities in the same category using trigram similarity on body_json. It distinguishes itself by offering both read-only detection and optional conflict resolution, specifying the exact purpose and key actions.

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?

Provides clear usage context: read-only by default, opt-in with resolve=true, dry_run preview, and certainty_margin to avoid ambiguous resolutions. Could explicitly state when not to use, but still strong guidance.

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

mimir_contextA
Read-only

Return a pre-formatted markdown context block of the most important entities for session injection. The downstream system (Perseus) uses this to pre-load AI agent context with relevant memories before work begins.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of entities to include in the context block
categoriesNoCategories to include. Empty array = all categories.

Output Schema

ParametersJSON Schema
NameRequiredDescription
markdownNoMarkdown-formatted context block with entity details
total_charsNoCharacter count of the markdown content

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. The description adds behavioral context by specifying the output is pre-formatted markdown and the downstream use case. It does not contradict annotations and provides useful information beyond them.

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 long, front-loaded with the core purpose, and every word adds value. No fluff or 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?

Given the presence of a full input schema (100% coverage), an output schema, and readOnlyHint annotation, the description is sufficient. It explains the output format and use case, but could optionally include details about the structure of the markdown or how 'most important entities' are determined.

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?

The input schema has 100% description coverage for both parameters (limit and categories). The description does not add additional meaning beyond what the schema already provides, so baseline score of 3 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 clearly states the tool returns a pre-formatted markdown context block of important entities for session injection, naming the downstream system Perseus. It is specific about the verb (return) and resource (context block), and the purpose is distinct from sibling tools like mimir_recall.

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 usage for pre-loading AI agent context before work begins (session injection). However, it does not explicitly state when to avoid using this tool or mention alternatives among the many sibling mimir tools. The guidance is adequate but not explicit.

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

mimir_correctA
Destructive

Capture a user correction to the agent. Stores what went wrong, what the user said, and the lesson learned — as both a 'correction' entity and a journal entry. Use this every time the user corrects your approach. Enables the self-improving feedback loop: the agent learns from mistakes across sessions.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for categorization
categoryNoEntity category (default: 'correction')correction
session_idNoSession identifier for traceability
visibilityNoVisibility: 'private', 'workspace', or 'public'workspace
task_contextYesWhat task was being attempted when the correction occurred
wrong_approachYesWhat the agent did that was wrong (the mistaken approach)
user_correctionYesWhat the user said to correct the agent (the right way)

Output Schema

ParametersJSON Schema
NameRequiredDescription
keyNo
categoryNo
entity_idNoCreated correction entity ID
journal_idNoCreated journal entry ID
created_at_unix_msNo

TDQS

A4.4/5.0
Behavior4/5

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

Annotations give destructiveHint: true, which the description aligns with by stating it stores entities. The description adds value beyond annotations by explaining the dual storage (correction entity and journal entry) and the self-improving feedback loop across sessions. No contradictions.

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 concise with two sentences, front-loading the purpose and usage. Every sentence is informative and necessary: first sentence defines the action and storage, second covers when to use and the learning benefit. No wasted words.

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 has 7 parameters and an output schema (not shown), the description covers the main action, usage, and outcome. It could mention side effects or prerequisites, but the core functionality is well explained for an AI agent to use 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 coverage is 100%, so parameters are well documented. The description reinforces the key parameters (wrong_approach, user_correction, task_context) by naming them in prose, adding context that they capture what went wrong and what the user said.

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 verb 'Capture' and the resource 'user correction'. It distinguishes from siblings like mimir_remember and mimir_journal by specifying it stores corrections, not general facts. The phrase 'Use this every time the user corrects your approach' reinforces the specific 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 explicitly says when to use the tool: 'every time the user corrects your approach'. It does not explicitly list alternatives or when not to use, but the context implies other tools for other purposes, making it clear enough for an AI agent.

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

mimir_decayA
Destructive

Recalculate Ebbinghaus decay scores for all entities based on time since last access. Auto-archives entities that have fully decayed (score < 0.05). Run periodically to keep memory fresh — decayed entities surface less often in recall results.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
auto_archivedNoEntities auto-archived because decay fell below 0.05
entities_checkedNoTotal entities evaluated
entities_updatedNoEntities whose decay score changed
completed_at_unix_msNoCompletion timestamp

TDQS

A4.7/5.0
Behavior5/5

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

The description adds behavioral detail beyond the destructiveHint annotation by explaining auto-archiving of low-score entities and the effect on recall results. There is no contradiction with annotations.

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?

Two sentences efficiently front-load the main action and then provide usage and consequence. Every sentence is valuable, with no unnecessary words.

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?

Given the tool's simplicity (no parameters, clear destructive side effect) and the existence of an output schema, the description covers all necessary aspects: what it does, when to use it, and behavioral outcomes.

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?

With zero parameters and 100% schema coverage, the description's baseline is 4. It adds no parameter information because none is needed, 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 clearly states it recalculates Ebbinghaus decay scores and auto-archives fully decayed entities, specifying both the verb and resource. This distinguishes it from sibling tools like mimir_forget or mimir_purge by its specific decay recalculation 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 advises running periodically to keep memory fresh, providing clear usage context. However, it does not explicitly exclude use cases or compare alternatives among siblings, so guidance is good but not exhaustive.

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

mimir_embedA
Destructive

Generate and store dense vector embeddings for entities via Ollama /api/embed. Supports single entity (category+key) or batch mode (batch_category). Requires --llm-endpoint to be set.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoEntity key for single mode
textNoText to embed (omit to use entity body_json)
categoryNoEntity category for single mode
batch_limitNoMax entities in batch mode
batch_categoryNoEmbed all entities in this category lacking embeddings

Output Schema

ParametersJSON Schema
NameRequiredDescription
embeddedNoNumber of entities embedded
dimensionsNoVector dimensions

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate destructiveHint=true, so the description's addition of 'Generate and store' and the dependency on Ollama adds some context. But it doesn't detail what gets overwritten or the exact 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?

Two sentences that front-load the purpose and then detail modes and requirements. Every sentence adds value with no 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?

For a tool with 5 optional parameters and an output schema, the description covers operation modes and prerequisites. It doesn't describe return values, but the output schema likely handles that. It's mostly complete.

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 100%, so the description adds minimal value beyond the overview of modes. It reiterates the mode logic but doesn't enhance parameter understanding significantly.

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 it generates and stores dense vector embeddings for entities, distinguishes between single and batch modes, and mentions the Ollama endpoint. This differentiates it from sibling tools like mimir_recall or mimir_remember.

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 explains when to use single mode (category+key) vs batch mode (batch_category) and notes the requirement for --llm-endpoint. However, it lacks explicit exclusions or alternatives, so it's not a 5.

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

mimir_extractA
Read-only

Extract structured knowledge — facts, preferences, temporal events, episodes — from raw text or a stored entity, using a fully local, deterministic rule-based extractor (no cloud LLM, no embedding/API call, no network). Read-only: never writes to the store. Provide text, or category + key to extract from a stored entity.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoKey of a stored entity to extract from (requires category).
textNoRaw text to extract from. If omitted, category + key of a stored entity are used.
categoryNoCategory of a stored entity to extract from (requires key).
strategyNoExtractor strategy: 'rule_based' (local heuristics) or 'none' (no-op).rule_based

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsNoExtracted items, each an object with `kind` and `text`.
totalNoNumber of items extracted
strategyNoExtractor strategy used

TDQS

A4.6/5.0
Behavior4/5

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

Beyond annotations (readOnlyHint=true), description adds 'never writes to the store' and details on deterministic, local, no-network operation. No contradiction with annotations.

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?

Two efficient sentences, front-loaded with main purpose. No redundant information.

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?

Given output schema exists, description covers inputs, usage, and behavioral traits sufficiently. No gaps.

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 coverage 100%, description adds clarification on usage of `text` vs `category`+`key` and explains `strategy` enum values (local heuristics vs no-op). Adds meaning beyond 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?

Clearly states verb 'extract' and resource 'structured knowledge' from raw text or stored entity. Distinguishes from siblings by specifying local, deterministic rule-based extractor. No tautology.

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?

Explains usage options: provide `text` or `category`+`key` directly. Does not explicitly list when not to use or alternatives, but clear context is given.

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

mimir_federateA
Destructive

Federate entities from one workspace to another. Exports entities scoped to from_workspace, remaps their workspace_hash to to_workspace, and imports them — effectively copying or moving knowledge between workspaces. Use this for cross-agent or cross-project knowledge sharing without manual file transfer.

ParametersJSON Schema
NameRequiredDescriptionDefault
vault_dirNoTemporary vault directory for the intermediate .md export files/tmp/mimir-federate
to_workspaceYesTarget workspace hash to import entities into
from_workspaceYesSource workspace hash to export entities from

Output Schema

ParametersJSON Schema
NameRequiredDescription
exportedNoNumber of entities exported from the source workspace
importedNoNumber of entities imported into the target workspace
remappedNoNumber of entities whose workspace_hash was remapped
import_errorsNoAny errors encountered during import

TDQS

A3.7/5.0
Behavior3/5

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

Annotations provide destructiveHint: true, so description doesn't need to repeat that, but the description says 'copying or moving' without clarifying whether source entities are preserved. No mention of authorization or rate limits.

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?

Three sentences: purpose, mechanism, use case. Front-loaded with action verb. No unnecessary words. Efficient and readable.

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?

Output schema exists and parameter coverage is high. However, the tool involves data transfer and potential destructiveness; the description should clarify what happens to source entities and handling of duplicates. Lacks these details.

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 coverage is 100% with good parameter descriptions. The tool description reiterates the purpose of each parameter without adding new details beyond the schema, so baseline 3 applies.

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 clearly states it federates entities between workspaces via export, remap, import. It distinguishes from manual file transfer but does not explicitly name sibling tools like mimir_vault_export/import or mimir_share, though the usage hint helps.

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?

Explicitly says 'Use this for cross-agent or cross-project knowledge sharing without manual file transfer', indicating when to use. Lacks explicit when-not-to-use or alternatives.

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

mimir_forgetA
Destructive

Soft-delete an entity by setting archived=1. The entity is hidden from queries but recoverable. Use this to clean up stale or incorrect facts without permanent data loss.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesEntity key to archive
reasonNoReason for archiving, logged for audit trail
categoryYesEntity category to archive

Output Schema

ParametersJSON Schema
NameRequiredDescription
keyNoEntity key
foundNoWhether the entity was found and archived
categoryNoEntity category

TDQS

A4.2/5.0
Behavior4/5

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

Beyond the destructiveHint annotation, the description adds that it is a soft-delete (recoverable) and that the entity becomes hidden from queries. This provides useful behavioral context that annotations alone do not convey.

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?

Two sentences, front-loaded with the key action and effect. Every sentence adds value: the first explains what it does, the second when to use it. No wasted words.

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, presence of an output schema, and full schema parameter descriptions, the description adequately covers purpose, behavior, and usage context. It is sufficient for an agent to select and invoke this tool correctly.

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 coverage is 100% and the schema already includes descriptions for all three parameters. The description adds no additional meaning beyond what the schema provides, meeting the baseline for this score.

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 ('soft-delete an entity'), the mechanism ('setting archived=1'), and the effect ('hidden from queries but recoverable'). It implies a contrast with permanent deletion tools like purging, distinguishing 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?

Explicitly says to use it to 'clean up stale or incorrect facts without permanent data loss,' providing clear context. It does not, however, mention when not to use it or list alternative sibling tools.

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

mimir_get_entityA
Read-only

Get an entity by ID with its full body_json content. Use after mimir_recall with preview_cap to read the complete body of a truncated result. The drill-down footer embedded in preview-capped results references this tool with the entity ID to use.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesEntity ID to retrieve (from recall result id field or preview cap footer)

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNo
keyNo
layerNo
statusNo
categoryNo
always_onNo
body_jsonNoFull entity body content
certaintyNo
decay_scoreNo
entity_typeNo
retrieval_countNo

TDQS

A4.5/5.0
Behavior4/5

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

The description aligns with the readOnlyHint annotation by stating 'Get an entity'. It adds behavioral context that the tool retrieves full body_json content, which is beyond what the annotation provides. No contradictions.

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 three sentences, each providing essential information: purpose, usage recommendation, and parameter source. It is efficient with no wasted words.

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?

Given the tool's simplicity (one parameter, output schema present), the description fully covers purpose, usage context, and parameter explanation. No gaps remain.

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 schema coverage is 100%, so baseline is 3. The description adds extra context by explaining that the ID comes from a recall result or preview cap footer, which goes beyond the schema description 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 clearly states 'Get an entity by ID with its full body_json content', using a specific verb and resource, and distinguishes it from the sibling tool mimir_recall which returns preview-capped results.

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 says 'Use after mimir_recall with preview_cap to read the complete body of a truncated result', providing clear context for when to use this tool, though it does not explicitly mention when not to use it.

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

mimir_healthA
Read-only

Check whether the Mimir server and its SQLite database are healthy. Returns a simple healthy/unhealthy status. Use this for health checks and monitoring, not for detailed stats (use mimir_stats).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusNoServer health status

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. Description adds that it checks server and DB, and returns simple status, which is useful context but doesn't go beyond what's expected.

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?

Two sentences, no wasted words, front-loaded with purpose and usage guidance.

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?

Fully covers what the tool does, when to use it, and what it returns. Output schema exists, so no need to detail return structure.

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?

No parameters; baseline 4 applies as description doesn't need to add parameter info.

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?

Clearly states verb (check), resource (Mimir server and its SQLite database), and output (healthy/unhealthy). Distinguishes from sibling mimir_stats.

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

Usage Guidelines5/5

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

Explicitly says to use for health checks and monitoring, and not for detailed stats, naming the alternative tool mimir_stats.

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

mimir_ingestA
Destructive

Sync external data connectors (GitHub issues, file watcher) into Mimir. Call with no arguments to run all enabled connectors, or specify a connector name to run only that one. Use dry_run=true to preview without storing.

ParametersJSON Schema
NameRequiredDescriptionDefault
dry_runNoPreview documents without storing them
connectorNoSpecific connector to run (omit for all enabled)

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorsNoError messages from connectors that failed
dry_runNoWhether this was a dry run
ingestedNoNumber of documents ingested (or would be ingested in dry run)

TDQS

A4/5.0
Behavior3/5

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

Annotations already provide destructiveHint: true, indicating mutation. The description adds context about preview mode (dry_run) and connector selection, but does not detail potential side effects like overwriting or merging behavior, which would be useful. Overall, it adds some value beyond annotations.

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 extremely concise (two sentences), front-loads the main purpose, and avoids any unnecessary words or repetition.

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?

With annotations and output schema present, the description adequately covers the tool's purpose, invocation patterns, and preview capability. It does not explain the exact behavior of syncing (e.g., upsert vs replace), but that is likely implied by the tool's name and common patterns.

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 100%, so the schema already documents both parameters. The description reiterates the dry_run and connector usage but does not add significant new semantic information beyond what the schema provides.

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 syncs external data connectors (GitHub issues, file watcher) into Mimir, distinguishing it from many sibling tools that are about querying, managing, or modifying Mimir data.

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 explains when to call with no arguments (run all enabled connectors) and when to specify a connector, and mentions dry_run for preview. It does not explicitly discuss when not to use it or alternatives, but the context is sufficient for an AI agent to select it appropriately.

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

mimir_ingest_fileA
Destructive

Ingest a document file into memory by extracting its text LOCALLY (no cloud, no network). Plaintext/markdown/structured-text work in any build; DOCX and PDF require a binary built with --features multimodal (otherwise a clear error is returned). The extracted text is stored as a normal entity (recallable via mimir_recall). category defaults to 'document', key defaults to the file name.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoEntity key (default: the file name)
pathYesPath to the document file to ingest
tagsNoOptional tags
categoryNoEntity category (default 'document')

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNoStored entity id
keyNo
charsNoCharacters of text extracted
actionNocreated or updated
categoryNo

TDQS

A4.8/5.0
Behavior5/5

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

The description discloses key behaviors beyond the destructiveHint annotation: it is local-only ('no cloud, no network'), describes format support (plaintext/markdown/structured-text work always, DOCX/PDF require a feature flag), and explains that extracted text is stored as a normal entity recallable via mimir_recall. No contradictions with annotations.

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 (three sentences) and front-loaded with the core action. Every sentence adds essential information: what it does, where it runs, format quirks, defaults, and recall mechanism. No redundancy.

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?

Given the tool's moderate complexity (format-dependent behavior, local processing, default values), the description covers all necessary aspects: processing location, format support with fallback, default values, and integration with recall. The presence of an output schema is noted but not required for completeness.

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 coverage is 100%, and the description adds valuable defaults: key defaults to file name, category defaults to 'document'. This enriches the schema-defined parameters. The description also implies that path is the primary parameter.

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 that the tool ingests a document file into memory by extracting text locally. It specifies the verb 'Ingest', the resource 'document file', and the scope (local extraction, no cloud/network). It distinguishes from siblings like mimir_ingest (general ingest) by focusing on file-based ingestion with local text extraction.

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 guidance on when to use the tool (ingesting document files) and mentions limitations (DOCX/PDF require --features multimodal, otherwise error). It does not explicitly list when not to use, but the context is sufficient. It implies an alternative (mimir_recall for retrieval) but does not contrast with other ingest tools.

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

mimir_journalA
Destructive

Append a structured decision/observation log entry. Uses evaluated/acted/forward pattern: what was considered, what was done, and what happens next. Essential for audit trails and timeline reconstruction.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoRelated entity key for linking
actedNoWhat action was taken and why
forwardNoWhat the plan is going forward
agent_idNoAgent identity (v1.2.0). Records which agent created this journal event.
categoryNoRelated entity category for linking
entity_idNoRelated entity ID for linking
evaluatedNoWhat was evaluated: options considered, context, constraints
event_typeNoEvent type: 'decision', 'observation', 'action', 'error'decision

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNoJournal event ID
event_typeNoEvent type recorded
created_at_unix_msNoCreation timestamp in unix milliseconds

TDQS

A4/5.0
Behavior2/5

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

Annotations declare destructiveHint: true, suggesting the tool may have destructive side effects, but the description only says 'Append,' which implies additive behavior. No explanation of why it's destructive, what gets destroyed, or other behavioral traits beyond the annotation.

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?

Two concise sentences: the first states the purpose, the second explains the pattern. No superfluous content. Front-loaded with the core action.

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?

Given the tool has an output schema (not shown but present), the description does not need to explain return values. Parameter count is 8, all described in schema and enriched by pattern explanation. The description is complete for a logging tool with clear audit trail purpose.

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 coverage is 100% with descriptions for all 8 parameters. The description adds value by explaining the 'evaluated/acted/forward' pattern, which provides context for how parameters like 'evaluated', 'acted', and 'forward' relate to each other, enriching the 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 tool's purpose: 'Append a structured decision/observation log entry.' It uses specific verbs ('append', 'log') and names the resource ('decision/observation log entry'). Sibling tools like mimir_recall and mimir_context are differentiated by this logging focus.

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 mentions 'essential for audit trails and timeline reconstruction' but does not explicitly state when to use this tool versus alternatives (e.g., mimir_recall for retrieval, mimir_context for context). No exclusions or alternative suggestions are provided, leaving ambiguity.

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

mimir_maintenanceA
Destructive

Database maintenance operations: deduplicate entities with identical (category, key), detect orphan journal entries and links, vacuum (reclaim disk space), reindex FTS5. Set dry_run=true to preview. Use 'all' to run everything.

ParametersJSON Schema
NameRequiredDescriptionDefault
allNoRun all maintenance operations (dedup, orphans, vacuum, reindex)
dedupNoFind duplicate (category, key) entities and archive the oldest
vacuumNoRun SQLite VACUUM to reclaim disk space
dry_runNoIf true, preview changes without writing
orphansNoDetect journal entries and links pointing to non-existent entities
reindexNoRebuild the FTS5 search index from entities table

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorsNoErrors encountered during maintenance
dry_runNo
dedup_archivedNoNumber of duplicate entities archived
orphan_links_foundNoOrphan links detected
reindex_rows_affectedNoRows reindexed into FTS5
vacuum_reclaimed_bytesNoDisk space reclaimed by VACUUM
orphan_journal_entries_foundNoOrphan journal entries detected

TDQS

A4.2/5.0
Behavior4/5

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

The description discloses that deduplication archives the oldest entity, vacuum reclaims disk space, and reindex rebuilds FTS5. It also mentions dry_run for preview. This adds detail beyond the 'destructiveHint' annotation, though it does not specify whether orphan detection deletes or only lists.

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 concise sentences. The first immediately states the tool's purpose and lists operations, the second gives actionable usage tips. No wasted words.

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 maintenance tool with 6 boolean parameters and an output schema, the description covers the key operations and gives usage hints. It doesn't mention prerequisites or safety notes, but the destructiveHint annotation and dry_run option partially address that. Overall, it is sufficient for basic use.

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?

With 100% schema coverage, each parameter already has a description. The description adds value by showing how to combine parameters (dry_run with all) and the general usage pattern, providing context beyond the schema's individual definitions.

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 explicitly lists the specific maintenance operations (deduplicate, detect orphans, vacuum, reindex) and states it covers database maintenance. This clearly distinguishes it from sibling tools like mimir_ask or mimir_compact by its domain and actions.

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 gives basic usage tips (dry_run=true to preview, use 'all' to run everything) but does not explain when to prefer this tool over individual siblings like mimir_prune or mimir_reindex. There is no explicit when-not or alternative guidance.

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

mimir_migrateA
Destructive

Migrate a v0.1.x Mimir database to the current v0.5.0 schema. Reads the old database, converts memories to the entity model, and merges into the current database. Use this once per legacy database during upgrade.

ParametersJSON Schema
NameRequiredDescriptionDefault
from_pathYesAbsolute path to the v0.1.x SQLite database file to migrate

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorsNoAny errors encountered during migration
entities_createdNoNew entities created from old memories
entities_updatedNoExisting entities updated during merge
total_old_memoriesNoNumber of memories found in the old database
completed_at_unix_msNoCompletion timestamp

TDQS

A4.3/5.0
Behavior4/5

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

The description explains the process (reads old DB, converts, merges) adding behavioral context beyond the destructiveHint annotation, confirming it modifies the current database.

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?

Two concise sentences front-load the main action without any extraneous words, every sentence earns its place.

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?

Given the presence of an output schema, the description covers purpose, process, and usage comprehensively for a one-time migration tool.

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?

With 100% schema coverage and only one parameter fully described in the schema, the description adds no additional parameter meaning beyond what the schema provides.

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 migrates a v0.1.x Mimir database to v0.5.0 schema, distinguishing it from siblings that perform other operations like ask or forget.

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?

'Use this once per legacy database during upgrade' provides explicit when-to-use context, but no exclusions or alternatives are mentioned, which is acceptable given the one-time migration nature.

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

mimir_pruneA
Destructive

Bulk archive entities by category, decay threshold, or age. Use dry_run=true to preview without archiving. Useful for cleaning stale or low-quality memories.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax entities to prune (0 = unlimited)
dry_runNoPreview without archiving
categoryNoArchive entities in this category
min_decayNoArchive entities with decay_score below this threshold
older_than_daysNoArchive entities older than this many days

Output Schema

ParametersJSON Schema
NameRequiredDescription
reasonNo
dry_runNo
archivedNo
examinedNo

TDQS

A3.5/5.0
Behavior3/5

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

Annotations provide destructiveHint=true; description adds that dry_run allows preview and mentions cleaning purpose, but does not detail what 'archive' entails (e.g., reversibility, side effects) or how entities are affected beyond filtering criteria.

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?

Two sentences: first states action and criteria, second provides a tip and use case. No wasted words.

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?

With 5 parameters, destructive behavior, and an output schema, the description covers core action and a preview tip but omits behavioral details (e.g., what 'archive' means, error handling, or output format). Output schema exists, so return values need not be explained, but other gaps remain.

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?

Input schema has 100% coverage with descriptions for all parameters. Description adds context for dry_run and relates cleaning to decay/age, but this is minimal beyond schema.

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?

Description clearly states it bulk archives entities by category, decay threshold, or age, with the verb 'archive' and resource 'entities'. It hints at cleaning stale memories but does not explicitly distinguish from siblings like mimir_forget or mimir_purge.

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?

Provides guidance to use dry_run=true for preview and states it's useful for cleaning stale memories, but lacks explicit when-not-to-use or alternative sibling tools.

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

mimir_purgeA
Destructive

Permanently delete all archived entities and run VACUUM to reclaim disk space. This is the only operation that actually removes entities — prune/forget only soft-archive. Archived entities are DELETED and NOT RECOVERABLE. Supports dry_run=true to preview first.

ParametersJSON Schema
NameRequiredDescriptionDefault
dry_runNoIf true, report what would be deleted without making changes

Output Schema

ParametersJSON Schema
NameRequiredDescription
dry_runNoWhether this was a dry run
bytes_freedNoBytes reclaimed after VACUUM (0 in dry-run mode)
entities_deletedNoNumber of archived entities permanently deleted
completed_at_unix_msNoCompletion timestamp

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the destructiveHint annotation, the description explicitly states that archived entities are deleted and NOT RECOVERABLE, and that VACUUM is performed. This adds crucial behavioral context not captured by annotations alone.

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?

Two sentences convey the core action, context, sibling differentiation, and parameter hint. No wasted words; front-loaded with the primary function.

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?

Given the output schema covers return values, the description fully addresses what the tool does, side effects (irreversibility), comparison to siblings, and parameter usage. Complete for the tool's complexity.

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 coverage is 100%, and the description adds value by explaining that dry_run=true allows preview without changes, which clarifies the parameter's purpose beyond its schema description.

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: permanently delete archived entities and run VACUUM. It distinguishes from sibling tools (prune/forget) by specifying that it is the only operation that actually removes entities.

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 explains that this tool is for permanent deletion versus soft-archive from prune/forget, and mentions dry_run preview. It does not explicitly state prerequisites or when not to use, but the contrast with siblings provides sufficient guidance.

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

mimir_recallA
Read-only

Search entities with FTS5 keyword search. Words are OR'd together. Returns entities sorted by relevance with expanded content/summary fields at top level. Use this to find previously stored facts, decisions, or architecture notes. When encryption is enabled, body_json is decrypted transparently.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoSearch mode: 'fts5' (keyword), 'dense' (vector), or 'hybrid' (fused via RRF)fts5
typeNoFilter by entity type, e.g. 'insight' or 'reference'
limitNoMaximum number of results to return (max 1000)
queryYesSearch query — words are OR'd together for broad recall
offsetNoNumber of results to skip for pagination
agent_idNoAgent identity filter (v1.2.0). When set, only entities with a matching agent_id are returned. Omit for no agent filtering.
categoryNoFilter by category, e.g. 'decision' or 'architecture'
expansionNoConfiguration for FTS5 query expansion using Porter stemming
min_decayNoMinimum decay score threshold 0.0–1.0 — higher values return fresher results
topic_pathNoFilter by topic path prefix, e.g. 'architecture/'
preview_capNoIf set, truncate body_json at N chars and append drill-down footer. Use mimir_get_entity to read full body.
trust_weightNoAdditive boost for provenance/trust (default 0.15, on by default) — verified sources rank above unverified AI drafts on the same topic. Verified entities get the full boost; unverified ones are scaled by certainty. Set 0 to disable. Never penalizes.
content_weightNoAdditive boost for content witness — rewards entities whose body text literally contains query terms. Damped by body length. Never penalizes.
workspace_hashNoWorkspace scope filter (v1.2.0). When set, only entities with a matching workspace_hash are returned. Omit for no workspace filtering.
include_archivedNoInclude archived (soft-deleted) entities in results
diversity_halvingNoPer-keyword diversity quota factor (1.0=disabled). Each distinct matched keyword gets ceil(N x halving^n) slots — first keyword N, second N/2, etc.
recency_half_life_secsNoTime-aware ranking for mode='hybrid' (default off). When set, each fused result's score is multiplied by 0.5^(age / this), where age is seconds since the memory was created — so a memory this many seconds old keeps half its weight and recent context outranks older but similar hits. Omit for relevance-only ranking.

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsNoMatching entities with expanded body_json fields at top level
totalNoNumber of results returned
variantsNoNumber of query variants used when expansion is enabled

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true; description adds valuable behavioral details: OR'ing of words, relevance sorting, expanded fields, and transparent decryption of body_json, which is beyond what annotations offer.

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?

Three sentences, front-loaded with key information, no fluff. Every sentence adds value.

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?

Despite a complex tool with 17 parameters and output schema, the description omits mention of search modes (fts5, dense, hybrid) and filtering capabilities, leaving gaps for a complete understanding.

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 coverage is 100% with each parameter already described; the tool description adds no extra meaning beyond the schema, so baseline 3 is appropriate.

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?

Clearly states it searches entities with FTS5 keyword search, but does not explicitly differentiate from sibling tools that may offer alternative search methods like vector or hybrid.

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?

Provides use cases (find facts, decisions, architecture notes) but lacks explicit guidance on when not to use or when alternatives like mimir_recall_when might be better.

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

mimir_recall_whenA
Read-only

Search entities whose recall_when triggers match a given context. Use this for proactive just-in-time memory injection — before writing code, before plans, at session start. Pass the current task description as context and get back memories that declared they should be recalled in similar situations.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum entities to return (default 10, max 100)
contextYesThe current task or context description to match against recall_when triggers

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsNo
totalNo
contextNo

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is clear. The description adds behavioral context (proactive, context-matching) but does not detail edge cases (e.g., no match behavior, performance). With annotations covering the main safety aspect, a score of 3 is appropriate.

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?

Two sentences with no wasted words. The first sentence defines the function, the second gives concrete usage scenarios. Front-loads key information efficiently.

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 moderate complexity (2 params, output schema present), the description covers purpose, usage, and context. With output schema, return details are not needed. Some might expect a note on default limit, but schema covers that. Score 4 reflects slight gap in explaining the 'recall_when trigger' concept.

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 coverage is 100%, so both parameters are documented. The description adds minimal extra meaning beyond the schema: it reinforces that 'context' is the task description to match triggers. This is marginal improvement, hence baseline 3.

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 searches entities based on recall_when triggers matching a given context. It uses specific verb and resource ('Search entities whose recall_when triggers match') and distinguishes from sibling tools like mimir_recall by focusing on trigger-based recall.

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 states when to use: 'for proactive just-in-time memory injection — before writing code, before plans, at session start.' It implies usage context but does not explicitly mention when not to use or name alternatives like mimir_recall.

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

mimir_reindexA
Destructive

Rebuild the FTS5 search index from the entities table. Repairs index drift — e.g. after a direct SQLite write, an interrupted archive, or a legacy database written before the atomic prune/forget fixes — so archived entities stop surfacing in recall/search. Returns the number of entities reindexed.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
reindexedNoNumber of non-archived entities indexed into FTS5

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already mark destructiveHint=true. The description adds the return value (number reindexed) and specific triggers, but does not disclose other behavioral traits like potential locking, idempotency, or performance impact, which would be helpful.

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?

Two sentences with no wasted words. The first sentence states the action, the second provides context and return. Efficiently front-loaded.

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 zero-parameter tool with destructive hint and output schema, the description covers purpose, triggers, and return. Could mention whether it is safe to run repeatedly, but overall sufficient given low complexity.

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 parameters, so no parameter documentation is needed. Baseline is 4 for zero-parameter tools, and the description does not need to add parameter info.

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 clearly states the tool rebuilds the FTS5 search index, with specific triggers like direct SQLite writes or interrupted archives. It distinguishes from siblings by focusing on index drift repair for recall/search, though it could explicitly contrast with other maintenance tools like mimir_compact.

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 lists when to use the tool (after direct SQLite write, interrupted archive, legacy database). It does not provide when-not-to-use or alternatives, but the context is sufficiently clear for the intended use cases.

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

mimir_rememberA
Destructive

Store or update an entity by (category, key). Idempotent — call as often as you want, same key returns an update. Optional always_on=true injects entity into every mimir_context. Optional certainty (0.0-1.0) is used by mimir_conflicts for typed-entity conflict detection. Use this for saving facts, decisions, architecture notes, and conventions. When encryption is enabled, body_json is encrypted at rest with AES-256-GCM.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesUnique key within the category, e.g. 'use-postgres-16' or 'deployment-strategy'
tagsNoTags for categorization and cross-referencing
typeNoEntity type: 'insight', 'architecture', 'decision', 'reference', 'convention'insight
statusNoEntity status: 'active', 'draft', 'deprecated'active
agent_idNoAgent identity (v1.2.0). Tracks which agent wrote this entity. Used for agent attribution and context filtering.
categoryYesEntity category: 'decision', 'architecture', 'convention', 'insight', or custom
body_jsonYesJSON object with the entity body — store content, summary, and any custom fields here
importanceNoInitial importance 0.0–1.0 — sets the starting decay score
topic_pathNoHierarchical topic path, e.g. 'architecture/database/postgres'
workspace_hashNoWorkspace scope identifier (v1.2.0). Empty = global. Entities with a workspace_hash are invisible to recall queries scoped to a different workspace.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNoEntity ID, e.g. 'mem-a1b2c3d4e5f6'
keyNoEntity key
actionNo'created' for new entities, 'updated' for existing ones
categoryNoEntity category

TDQS

A4.6/5.0
Behavior5/5

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

The description adds significant behavioral details beyond the annotations: idempotency, encryption at rest (AES-256-GCM) when enabled, and the effect of always_on=true injecting into mimir_context. This complements the destructiveHint annotation.

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 concise, consisting of four clear sentences. It front-loads the core function and immediately follows with key behaviors and use cases. No unnecessary words.

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 (10 parameters, 3 required), the description covers essential aspects: idempotency, encryption, always_on, certainty usage, and appropriate use cases. An output schema exists, so return values need not be described. It could mention behavior on conflict or error, but overall it is adequate.

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 coverage is 100% so the schema already documents all parameters. The description adds context for key parameters (e.g., key as unique within category, body_json as JSON object) and explains the purpose of optional fields like always_on and certainty. It does not cover every parameter in detail but provides meaningful usage guidance.

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 'Store or update an entity by (category, key)' and lists specific use cases such as saving facts, decisions, architecture notes, and conventions. This distinguishes it from sibling retrieval or deletion tools.

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 mentions when to use the tool ('for saving facts, decisions, architecture notes, and conventions') and describes optional parameters like always_on and certainty. However, it does not explicitly state when not to use it or mention alternatives.

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

mimir_scoreA
Destructive

Assign a quality score (0.0–1.0) to an entity. Verified entities with high scores resist decay and rank higher in recall results. Use this to mark entities as accurate, verified, or deprecated.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesEntity key to score
scoreYesQuality score 0.0–1.0. 1.0 = verified, 0.5 = neutral, 0.0 = low quality
categoryYesEntity category to score

Output Schema

ParametersJSON Schema
NameRequiredDescription
keyNoEntity key
foundNoWhether the entity was found
scoreNoQuality score assigned
categoryNoEntity category

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate destructiveHint=true. The description adds that high scores resist decay and rank higher, but lacks details on idempotency, reversibility, or required permissions. The behavioral context is sufficient but not comprehensive.

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 long, front-loaded with the action and followed by consequences. Every sentence adds value with no 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?

For a simple scoring tool, the description covers purpose, effect, and usage. It does not explain the output format, but an output schema exists. It could mention prerequisites or error cases, but overall it is fairly complete.

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 coverage is 100%. The description does not add new meaning beyond what the schema provides for the three parameters. The baseline of 3 is appropriate as the schema already documents parameters clearly.

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 verb 'Assign', the resource 'entity', and the score range 0.0-1.0. It explains the effect on decay and recall ranking, and lists usage scenarios (mark as accurate, verified, deprecated). This distinguishes it well from the many sibling tools.

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 context on when to use the tool (to assign quality scores and mark entities) and hints at the consequences. However, it does not explicitly state when not to use it or compare to alternatives, which would further improve clarity.

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

mimir_shareA
Destructive

Share an entity to another workspace. Copies the entity (by category + key) from its current workspace into the target workspace, preserving content and metadata while generating a new ID. The original entity is unchanged. Use this for controlled cross-workspace knowledge transfer.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesEntity key to share
categoryYesEntity category to share
to_workspaceYesTarget workspace hash to copy the entity into

Output Schema

ParametersJSON Schema
NameRequiredDescription
actionNo'created' or 'updated'
shared_idNoID of the new shared copy
to_workspaceNoTarget workspace the entity was copied to
from_workspaceNoSource workspace the entity was copied from

TDQS

A4/5.0
Behavior3/5

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

The description states the original entity is unchanged, but the destructiveHint annotation is true. The description does not clarify if the tool can overwrite an existing entity in the target workspace or if it always creates a new one. Additionally, it does not mention permission requirements or other side effects, leaving some behavioral ambiguity.

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, each serving a clear purpose: stating the action, detailing the effect, and providing usage guidance. No extraneous words, making it efficient and easy to parse.

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 simplicity (3 required params, no enums, output schema present), the description covers the core behavior well. However, it lacks details on source workspace determination, error handling for non-existent entities, and potential overwrite behavior. The presence of an output schema likely covers return values, so the description is nearly complete.

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?

The input schema covers all three parameters with descriptions, achieving 100% coverage. The description adds context that the source workspace is implied (not a parameter), which is a minor addition. Baseline 3 is appropriate as the schema already provides adequate information.

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 copies an entity from its current workspace to another workspace, preserving content and metadata while generating a new ID. It distinguishes this from sibling tools like mimir_migrate or mimir_ingest by specifying the copy action and cross-workspace transfer.

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 says 'Use this for controlled cross-workspace knowledge transfer,' providing clear guidance on when to use the tool. It does not mention alternatives or when not to use it, but the context is sufficient for the primary use case.

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

mimir_state_deleteA
Destructive

Delete a state entry by key. Permanent removal — unlike mimir_forget which is a soft-delete. Use this to clean up expired or unused state entries.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesState key to permanently delete

Output Schema

ParametersJSON Schema
NameRequiredDescription
keyNoKey that was deleted
foundNoWhether the key existed and was deleted

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true, indicating the tool is destructive. The description adds that deletion is permanent and contrasts with soft-delete, providing useful context beyond the annotation. No contradiction.

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?

Two sentences, each serving a distinct purpose: first states the action, second adds usage guidance and sibling differentiation. No unnecessary words.

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 simple one-parameter tool with an output schema (present), the description adequately covers purpose, usage, and behavioral nuance. It is complete for the agent to correctly select and invoke the tool.

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 coverage is 100% and the schema already describes the key parameter as 'State key to permanently delete'. The description mentions 'by key' but does not add substantial meaning beyond the schema, meeting the baseline for high coverage.

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 deletes a state entry by key, using a specific verb and resource. It distinguishes from the sibling tool mimir_forget, which is a soft-delete, making the purpose unambiguous.

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

Usage Guidelines5/5

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

Explicitly tells when to use: 'Use this to clean up expired or unused state entries.' Also clarifies when not to use by contrasting with mimir_forget, providing clear context for decision-making.

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

mimir_state_getA
Read-only

Get a state value by key. Returns null if the key has expired or doesn't exist. Use this instead of mimir_recall for transient session state that doesn't need FTS5 search.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesState key to retrieve

Output Schema

ParametersJSON Schema
NameRequiredDescription
keyNoState key requested
foundNoWhether the key exists and hasn't expired
valueNoJSON value if found
created_at_unix_msNoCreation timestamp
expires_at_unix_msNoExpiration timestamp if TTL was set

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true. The description adds behavioral detail beyond annotations by stating 'Returns null if the key has expired or doesn't exist,' which informs the agent about return 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?

Two sentences, no wasted words. The description is front-loaded with the action, then provides return behavior and usage guidance, all in a compact form.

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 simplicity (1 parameter, output schema exists), the description covers purpose, null handling, and when to use, which is adequate. A minor gap is no mention of expiration behavior details, but overall sufficient.

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 100%, so the input schema already documents the 'key' parameter. The description does not add extra meaning beyond what is in the schema, meeting the baseline of 3.

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 'Get a state value by key' with a specific verb and resource. It distinguishes itself from the sibling tool mimir_recall by mentioning transient session state and FTS5 search, ensuring no ambiguity.

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

Usage Guidelines5/5

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

Explicit guidance is provided: 'Use this instead of mimir_recall for transient session state that doesn't need FTS5 search.' This clearly tells the agent when to use this tool over alternatives.

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

mimir_state_listA
Read-only

List all state keys, optionally filtered by a key prefix. Use this to discover what state entries exist without knowing exact keys ahead of time.

ParametersJSON Schema
NameRequiredDescriptionDefault
prefixNoOnly return keys that start with this prefix

Output Schema

ParametersJSON Schema
NameRequiredDescription
keysNoMatching state keys
totalNoNumber of keys returned

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so description adds value by specifying the listing behavior and prefix filtering, but could mention potential limits or pagination.

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?

Two succinct sentences: first defines action, second provides use case. No extraneous information.

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 presence of an output schema and single optional parameter, description is mostly complete; could explicitly state that it returns a list of keys.

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 coverage is 100% with a documented prefix parameter; description restates the parameter briefly but adds no new details beyond the 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?

Description clearly states it lists all state keys with optional prefix filtering, distinguishing it from sibling tools like mimir_state_get, mimir_state_set, and mimir_state_delete.

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?

Provides clear context about when to use (discover state entries without exact keys) but does not explicitly mention when not to use or contrast with alternatives like mimir_state_get.

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

mimir_state_setA
Destructive

Set a key-value state entry with optional TTL for auto-expiration. Use this for session state, temporary flags, or configuration values that should expire after a set time.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesState key — unique identifier for this state entry
value_jsonYesJSON value to store
ttl_secondsNoTime-to-live in seconds. Entry auto-expires and returns null after this duration. Omit for permanent state.

Output Schema

ParametersJSON Schema
NameRequiredDescription
keyNoState key set
ttl_secondsNoTTL that was set, if any
expires_at_unix_msNoExpiration timestamp in unix milliseconds, if TTL was set

TDQS

A4.4/5.0
Behavior4/5

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

Annotations mark destructiveHint=true. Description adds TTL auto-expiration and permanent state option. Does not explicitly mention overwriting behavior, but that is implied by 'Set' and output schema may cover.

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?

Two sentences, no fluff. First sentence states function, second gives usage context. Perfectly compact.

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?

Adequate for a simple setter with 3 parameters. Covers purpose, use cases, and TTL behavior. Output schema likely handles return values. Missing explicit overwriting note, but not critical.

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 coverage is 100%. Description reinforces TTL parameter purpose and connects to use cases, adding marginal semantic value beyond schema 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 clearly states 'Set a key-value state entry' with a specific verb and resource. It distinguishes itself from sibling state tools (get, delete, list) by focusing on creation/update with optional TTL.

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?

Provides explicit use cases: session state, temporary flags, configuration values with TTL. Does not specify when not to use or contrast with alternatives like mimir_remember, but the context is clear enough for an agent.

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

mimir_statsA
Read-only

Return comprehensive database statistics: entity counts by category, type, and decay layer; journal event count; state entry count; database file size; and date range of stored data.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
by_typeNoEntity counts grouped by type
by_layerNoEntity counts grouped by decay layer (buffer/working/core)
by_categoryNoEntity counts grouped by category
newest_unix_msNoNewest entity creation timestamp
oldest_unix_msNoOldest entity creation timestamp
total_entitiesNoTotal entities in the database
db_file_size_bytesNoDatabase file size on disk in bytes
total_state_entriesNoTotal state entries (including expired)
total_journal_eventsNoTotal journal events recorded

TDQS

A4.7/5.0
Behavior5/5

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

Annotations declare readOnlyHint=true, which is consistent with the description. The description adds value by detailing exactly what statistics are returned, which goes beyond the annotation's simple read-only indication. No contradictions.

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 sentence that efficiently enumerates all returned statistics without redundancy. It is front-loaded with the main verb and resource, and every phrase adds value.

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?

Given the tool has no parameters and an output schema exists (as per context signals), the description is complete. It covers all aspects of the output, and the agent can rely on the output schema for detailed structuring.

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 no parameters, so the description doesn't need to explain parameters. However, it compensates by describing the output, which is useful for an agent. Baseline for 0 params is 4, and this description meets that.

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 specific verbs ('Return') and clearly lists the types of statistics (entity counts by category, type, decay layer; journal count; state count; file size; date range). It distinguishes itself from sibling tools like 'mimir_health' which likely focuses on system status, whereas this focuses on database content statistics.

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 implicitly states its purpose (obtaining comprehensive stats), and given there are no parameters or configuration, the use case is clear. It doesn't explicitly state when not to use, but the context of sibling tools provides differentiation. A score of 4 is appropriate as it's clear but lacks explicit exclusions.

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

mimir_supersedeA
Destructive

Create a 'supersedes' relationship from a new fact to an old one, setting the old entity's status to 'deprecated'. Use this when a newer entity makes an older one obsolete.

ParametersJSON Schema
NameRequiredDescriptionDefault
reasonNoReason for superseding (recorded in archive_reason)
to_keyYesKey of the NEW entity that supersedes
from_keyYesKey of the OLD entity being superseded
to_categoryYesCategory of the NEW entity that supersedes
relationshipNoLink relationship type (default: 'supersedes')supersedes
from_categoryYesCategory of the OLD entity being superseded

Output Schema

ParametersJSON Schema
NameRequiredDescription
relationshipNo
to_entity_idNoID of the new (superseding) entity
to_entity_keyNo
from_entity_idNoID of the old (superseded) entity
status_updatedNoNew status of the old entity (always 'deprecated')
from_entity_keyNo
to_entity_categoryNo
from_entity_categoryNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations only indicate destructiveHint=true, but the description adds that the old entity's status becomes 'deprecated', which is valuable behavioral context. No contradictions.

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?

Two sentences, no wasted words. Purpose and usage are front-loaded, making it easy to scan.

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?

Given the output schema exists, the description doesn't need to explain return values. It completely covers purpose, effect, and usage for this focused tool.

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 100%, so baseline 3. The description does not add extra meaning beyond the schema; the schema already describes each parameter clearly.

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?

Description clearly states it creates a 'supersedes' relationship from new to old fact and sets old entity to 'deprecated'. The verb 'Create' and resource 'supersedes relationship' are specific, distinguishing it from generic linking tools like mimir_link.

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?

Explicitly says 'Use this when a newer entity makes an older one obsolete.' Provides clear context for when to use. No exclusions or alternatives mentioned, but the sibling tools list includes many others, so this is adequate.

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

mimir_synthesizeA
Destructive

LLM-driven session synthesis. Reviews a session transcript and extracts structured lessons: what worked (success), what failed (failure), what was corrected (correction), what was abandoned (dead_end), and key decisions made (decision). Each lesson becomes an entity linked to a synthesis journal entry. Requires --llm-endpoint to be configured. This is the Perplexity-Brain-style overnight synthesis loop for agent self-improvement.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoTags applied to all synthesized entities
session_idNoSession identifier for traceability
visibilityNoVisibility for synthesized entitiesworkspace
session_contentYesFull session transcript to synthesize lessons from

Output Schema

ParametersJSON Schema
NameRequiredDescription
dry_runNo
lessonsNoExtracted lessons with type, summary, evidence, and confidence
journal_idNo
entities_createdNoNumber of lesson entities created
completed_at_unix_msNo

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare destructiveHint=true. The description adds that the tool creates entities linked to a journal entry, implying state mutation. But it does not detail the extent of destruction (e.g., whether prior entities are overwritten) or other side effects beyond creation.

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 concise (4 sentences) and front-loads the core purpose. Every sentence adds value: describing the action, the output structure, a prerequisite, and the broader goal. No 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?

Given the tool's complexity (4 params, output schema exists), the description covers the synthesis process and prerequisite. It does not need to explain return values due to output schema. Minor gap: no mention of error conditions or performance implications.

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 coverage is 100%, with each parameter having a description. The description adds minimal extra meaning beyond listing the lesson types and mention of tags/session_id/visibility in context, but does not significantly enhance parameter understanding.

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 performs 'session synthesis' and extracts specific structured lessons (success, failure, correction, dead_end, decision). It distinguishes itself from sibling tools like mimir_ask or mimir_ingest by focusing on post-session analysis and entity creation.

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?

It mentions the prerequisite 'Requires --llm-endpoint to be configured' and positions the tool as an 'overnight synthesis loop for agent self-improvement', implying a use case. However, it lacks explicit when-not-to-use or alternatives, leaving interpretation open.

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

mimir_timelineA
Read-only

Query journal events by time range with optional filters for event type, category, or entity. Use this to reconstruct the decision history and understand what happened when.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of events to return (max 1000)
to_msNoEnd time boundary in unix milliseconds
offsetNoNumber of events to skip for pagination
from_msNoStart time boundary in unix milliseconds
categoryNoFilter by related entity category
entity_idNoFilter by related entity ID
event_typeNoFilter by event type: 'decision', 'observation', 'action', 'error'

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsNoJournal events matching the query
totalNoNumber of events returned

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true, and the description's 'Query' aligns with that. The description adds context about reconstructing history but does not disclose additional behavioral traits like rate limits or data retention. With annotations present, the description provides marginal extra value.

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 consists of two concise sentences that efficiently convey the tool's purpose and recommended use. No superfluous information; every sentence 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 tool's complexity (7 optional parameters with defaults) and the availability of an output schema, the description covers the core use case. It does not mention pagination or time format details, but the schema handles those. Slight lack of completeness in explaining how filters combine.

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 100%, so the baseline is 3. The description summarizes optional filtering by event type, category, or entity but does not add deeper semantics or syntax details beyond what the schema provides.

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 clearly states the verb 'Query' and resource 'journal events' with time range and optional filters. It provides a specific use case ('reconstruct decision history') but does not explicitly differentiate from sibling tools like mimir_journal or mimir_recall.

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 suggests using the tool to reconstruct decision history, implying a usage context. However, it does not specify when not to use it or mention alternative tools for related queries, leaving room for ambiguity.

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

mimir_traverseA
Read-only

Walk the entity link graph starting from a given entity up to a configurable depth. Returns a chain of linked entities — useful for exploring dependencies, decision trees, and relationship graphs built via mimir_link.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesStarting entity key
categoryYesStarting entity category
max_depthNoMaximum traversal depth from the starting entity
max_nodesNoMaximum total nodes to traverse before stopping

Output Schema

ParametersJSON Schema
NameRequiredDescription
entityYesRoot entity with its links
traversedYesLinked entities traversed from root

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, indicating no side effects. The description adds that the tool walks the graph to a configurable depth and returns a chain of linked entities, which provides additional behavioral context beyond the annotation. It also mentions stopping conditions (max_depth, max_nodes). No contradiction.

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?

Two sentences, front-loaded with the action and result. Every sentence adds value: first sentence describes what the tool does, second gives use cases. No redundancy or unnecessary words.

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 has 4 parameters and an output schema exists, the description adequately covers the input (starting entity, configurable limits) and purpose (exploring graphs). It omits details about output format but that's acceptable since an output schema is present. Missing explicit mention of dependency on mimir_link, but it's implied in 'relationship graphs built via mimir_link.'

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?

Input schema has 100% coverage with descriptions for all 4 parameters. The overall description adds little beyond the schema: it restates that the traversal starts from a given entity and is configurable. Baseline is 3 due to high schema coverage; the description does not significantly enhance parameter 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 ('Walk the entity link graph') and resource ('starting from a given entity'), clearly distinguishing it from siblings like mimir_link (which creates links) and mimir_get_entity (which retrieves a single entity). It also mentions the configurable depth and return type, making the purpose 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 states the tool is 'useful for exploring dependencies, decision trees, and relationship graphs,' which gives clear context for when to use it. However, it does not explicitly mention when not to use it or direct alternatives, such as using mimir_get_entity for a single node or mimir_link for building the graph first.

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

mimir_vault_exportA
Destructive

Export all non-archived entities to .md files with YAML frontmatter in a vault directory. Files are human-readable, git-trackable, and Obsidian-compatible. Use this for backup, transfer between workspaces, or offline review.

ParametersJSON Schema
NameRequiredDescriptionDefault
vault_dirNoDirectory path to write .md files. Created if it doesn't exist. Use ~ for home directory.~/.mimir/vault

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorsNoAny errors encountered during export
vault_dirNoAbsolute path to the vault directory
files_createdNoNumber of new .md files created
files_updatedNoNumber of existing .md files updated
completed_at_unix_msNoCompletion timestamp

TDQS

A4.5/5.0
Behavior4/5

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

Annotations declare destructiveHint: true, and the description adds that files are human-readable, git-trackable, and Obsidian-compatible, which complements the annotation. However, it does not clarify whether exporting overwrites existing files, which would be useful for a destructive 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 two concise sentences, front-loaded with the main action and output format. Every word adds value, with no redundancy.

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?

Given the simple single-parameter interface and the presence of an output schema, the description covers the tool's purpose, output format, use cases, and parameter details adequately. No gaps remain.

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 sole parameter vault_dir is fully described in the schema with default and path handling. The tool description adds context about writing to the vault directory, reinforcing its purpose beyond the 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 tool exports non-archived entities to .md files with YAML frontmatter, specifying a concrete verb and resource. It differentiates from siblings like mimir_vault_import.

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 lists use cases ('backup, transfer between workspaces, or offline review'), providing clear usage context. It does not mention when not to use or alternatives, but the purpose is specific enough.

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

mimir_vault_importA
Destructive

Import .md files from a vault directory into the database. Reads YAML frontmatter for metadata and markdown body for content. Idempotent — re-running on the same vault won't duplicate entities. Pair with mimir_vault_export for transfer.

ParametersJSON Schema
NameRequiredDescriptionDefault
vault_dirNoDirectory path to read .md files from. Use ~ for home directory.~/.mimir/vault

Output Schema

ParametersJSON Schema
NameRequiredDescription
errorsNoAny errors encountered during import
vault_dirNoAbsolute path of the vault directory read
files_createdNoNumber of new entities created from files
files_updatedNoNumber of existing entities updated
completed_at_unix_msNoCompletion timestamp

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark the tool as destructive (destructiveHint: true). The description adds important behavioral context: idempotency (re-running doesn't duplicate) and the specific processing of frontmatter and body. This goes beyond the annotation and provides reassurance and clarity.

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 extremely concise: two sentences, no wasted words. It front-loads the purpose and adds essential details in the second sentence. Every sentence 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 tool's simplicity (one parameter, clear operation), the description covers purpose, idempotency, pairing, and what is read. An output schema exists (not shown but present), so return values are covered elsewhere. It is complete enough for the agent to use effectively.

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?

The input schema has 100% coverage with a clear description for the only parameter 'vault_dir'. The tool description does not add additional parameter-specific details beyond the schema. Since schema coverage is high, the baseline is 3, and the description does not need to compensate.

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: importing .md files from a vault directory into the database. It specifies the file type (.md), what it reads (YAML frontmatter and markdown body), and distinguishes itself from the sibling mimir_vault_export by naming it. The verb is specific and the resource is well-defined.

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 mentions idempotency, telling the agent it is safe to re-run. It also pairs the tool with mimir_vault_export for transfer, providing a usage context. However, it does not explicitly state when not to use this tool or list alternatives among the many siblings, but the pairing note is helpful.

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

mimir_workspace_listA
Read-only

List all distinct entity categories present in the database. Use this to discover what knowledge domains exist before querying with mimir_recall or mimir_context.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalNoNumber of categories
categoriesNoAll distinct categories in the database

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already provide readOnlyHint=true, so the description adds value by specifying the scope (distinct entity categories) and usage context. However, it does not disclose any additional behavioral traits (e.g., speed, permissions, or result format).

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?

Two efficient sentences: first states the action, second provides usage guidance. No wasted words, perfectly front-loaded.

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?

Given the tool's simplicity (no params, read-only), the description fully covers its purpose and usage context. Output schema exists, so no need to describe return values.

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?

No parameters exist, so the description has no burden. The mention of 'distinct entity categories' clarifies the scope beyond the schema, meeting the baseline for 0 parameters.

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 lists distinct entity categories (specific verb+resource) and explains its role in discovering knowledge domains, distinguishing it from siblings like mimir_recall and mimir_context.

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?

Explicitly advises using this tool before querying with mimir_recall or mimir_context, providing clear context. No when-not or alternatives listed, but for a simple discovery tool it's sufficient.

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. 1 tool updatev2.5.0
    • Changedmimir_conflicts6 fields changed
      • addedInput schema / properties / certainty_margin
        Added value: +{
        +  "default": 0.2,
        +  "description": "Minimum certainty gap to auto-resolve; closer pairs are skipped as ambiguous",
        +  "type": "number"
        +}
      • addedInput schema / properties / dry_run
        Added value: +{
        +  "default": true,
        +  "description": "When resolve=true, only report what would be invalidated unless set false",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / limit / description
        Previous value: -"Maximum number of conflicts to return"New value: +"Maximum number of conflicts to return / resolve"
      • addedInput schema / properties / resolve
        Added value: +{
        +  "default": false,
        +  "description": "Opt-in: invalidate the lower-certainty side of clear conflicts instead of only reporting them",
        +  "type": "boolean"
        +}
      • changedOutput schema / properties / conflicts / description
        Previous value: -"Conflict pairs with similarity scores"New value: +"Conflict pairs with similarity scores (detection mode)"
      • addedOutput schema / properties / invalidations
        Added value: +{
        +  "description": "Winner/loser pairs invalidated or previewed (resolve mode)",
        +  "items": {
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
  2. 2 tool updatesv2.4.0
    • Addedmimir_as_of
    • Addedmimir_ingest_file
  3. 2 tool updatesv2.2.1
    • Addedmimir_extract
    • Changedmimir_recall1 field changed
      • addedInput schema / properties / recency_half_life_secs
        Added value: +{
        +  "description": "Time-aware ranking for mode='hybrid' (default off). When set, each fused result's score is multiplied by 0.5^(age / this), where age is seconds since the memory was created — so a memory this many seconds old keeps half its weight and recent context outranks older but similar hits. Omit for relevance-only ranking.",
        +  "minimum": 0,
        +  "type": "number"
        +}
  4. 40 tool updatesv0.1.0
    • First observedmimir_ask
    • First observedmimir_autocohere
    • First observedmimir_bench
    • First observedmimir_cohere
    • First observedmimir_compact
    • First observedmimir_conflicts
    • First observedmimir_context
    • First observedmimir_correct
    • First observedmimir_decay
    • First observedmimir_embed
    • First observedmimir_federate
    • First observedmimir_forget
    • First observedmimir_get_entity
    • First observedmimir_health
    • First observedmimir_ingest
    • First observedmimir_journal
    • First observedmimir_link
    • First observedmimir_maintenance
    • First observedmimir_migrate
    • First observedmimir_prune
    • First observedmimir_purge
    • First observedmimir_recall
    • First observedmimir_recall_when
    • First observedmimir_reindex
    • First observedmimir_remember
    • First observedmimir_score
    • First observedmimir_share
    • First observedmimir_state_delete
    • First observedmimir_state_get
    • First observedmimir_state_list
    • First observedmimir_state_set
    • First observedmimir_stats
    • First observedmimir_supersede
    • First observedmimir_synthesize
    • First observedmimir_timeline
    • First observedmimir_traverse
    • First observedmimir_unlink
    • First observedmimir_vault_export
    • First observedmimir_vault_import
    • First observedmimir_workspace_list

TDQS

A4/5.0
Disambiguation4/5

Most tools have distinct purposes, but the grooming-related tools (mimir_cohere, autocohere, compact, decay, prune) have overlapping functionality that could cause confusion. However, descriptions help differentiate them.

Naming Consistency5/5

All tools follow a consistent 'mimir_<verb>[_<modifier>]' pattern with lowercase and underscores. No mixing of conventions, making naming predictable.

Tool Count3/5

40 tools is high, but the domain of memory management requires many specialized operations. Some tools could potentially be consolidated, but the count is borderline appropriate for the scope.

Completeness5/5

The tool set covers CRUD, search, state management, linking, grooming, federation, import/export, feedback, journaling, and more. There are no obvious gaps for the stated purpose of agent memory management.

Maintenance

ActivityActive
ResponsivenessResponsive

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    B
    maintenance
    Self-hosted MCP-native agent memory server. Gives AI agents persistent, decay-weighted memory via 83 MCP tools — no cloud, full control. RocksDB+HNSW backend. Works with Claude Code, Cursor, and any MCP-compatible agent.
    14
    8
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    An MCP-native, local-first memory server that gives AI agents persistent, structured memory across sessions and tools, enabling them to maintain identity and context without reconfiguration.
    3
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Persistent memory for AI coding agents. Enables agents to save and recall decisions, patterns, bugs, and context across sessions via an MCP server with local SQLite storage.
    12
    2
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server providing persistent AI memory with four-tier retrieval (SQLite FTS5, graph, vector, LLM agent) to give AI assistants structured, long-term memory without RAG.
    1
    Apache 2.0

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/Perseus-Computing-LLC/perseus-vault'

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