sill-ensoul
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sill-ensoulwake up alter-ego"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sill-Ensoul
English | 简体中文
Long-term memory that follows your agents across CLIs, projects, and sessions.
Give your CLI agents experience that doesn't vanish when you switch projects, switch tools, or start a new session — it doesn't touch your workflow, just adds memory to the agents you already use.
ensoul /ɪnˈsoʊl/ — verb. To give a CLI agent memory that carries across sessions, so it's more than a blank slate each time. An agent that's been ensouled is called an ensouler.
What it does
Cross-CLI: one memory, shared across Claude Code / Codex / zcode / Cursor / OpenCode. Use Claude today, switch to Codex tomorrow — your agents' memory follows.
Cross-project: memory lives in a global KB, not bound to any project repo. The bug your algo agent hit in project A is recalled in project B.
Cross-session: every new conversation, the agent
wiki_searches its own past experience first and starts with memory, not from scratch.Agent isolation: spin up multiple ensoulers (algorithm engineer, backend, testing, UI...) — each has its own memory bundle, no cross-contamination. Wake one, work with its experience.
Memory is files: plain markdown (following OKF) — git-able, diff-able, editable in Obsidian. Vector stores are just an index; md is always source of truth.
Zero external deps: SQLite FTS5 full-text search (CJK char segmentation + BM25) — no OpenAI key, no Docker, no cloud service. Model-vendor-agnostic: inference always stays in your CLI.
Proactive distillation: when an agent hits a non-trivial pitfall or makes a reusable decision, it distills and writes it directly, then tells you what it wrote (concept_id + one-line gist). You don't have to remember to write things down, and you keep after-the-fact veto (ask it to delete/edit).
Related MCP server: mcp-chest-memory
Quick Start
After cloning, do one of these in your CLI (Claude Code / Codex / zcode / OpenCode, etc.):
# Option A: let the CLI's AI set it up (recommended — you send one message)
say: set up sill-ensoul from <repo>/SETUP.md
# Option B: more direct — paste SETUP.md contents into the chat, hit enterThe CLI's AI follows SETUP.md: installs the package → builds the KB → creates the default agent alter-ego → registers the MCP server → installs the shell. Restart the CLI, then say:
wake up alter-ego # or 唤醒 alter-ego / 唤醒分身alter-ego is your digital twin (default agent, empty memory). Accumulate experience with it first; once a domain (algorithm/backend/ ...) has enough, tell the CLI "create an agent called algo-engineer" for a specialized role.
默认形态 = 本地单机(上面 Quick Start):一台电脑本地直连,零服务、零 token、记忆在本机。远程(多人/多机共享一份记忆)是扩展形态——需要部署服务器 + 客户端接入,用下面的场景表选文件。
Choose your deployment
# | 你的场景 | 要读的文件(按顺序) | 说明 |
1 | 本地单机:clone 仓库,本机 stdio 直连 | 默认路径,见上面 Quick Start | |
2 | 自建服务器:服务器 clone + 部署,回电脑接入 | 先部署服务器,再配电脑客户端连它 | |
3 | 连现成服务器:别人已部署好,你只是接入 | 不需要 clone 代码、不装本地包;薄壳需向对方要 | |
4 | 原本地 → 切远程:本机已用本地 stdio,改连现成服务器 | 旧注册会被备份后替换;本机旧 KB 闲置或按 deployment.md 迁移 | |
升级 | 已装过(本地或远程) | 后者专用于补 | |
Multica | 平台 agent 绑定(前提 MCP 已配好) | 只做平台侧,不做 MCP 安装 |
不确定?最简单的问题:你手上有服务器地址+token 吗? 有 → 场景 3/4;没有且只想自己用 → 场景 1(Quick Start);想给同事用 → 场景 2。
pip install -e <repo> # or, once published: pip install sill-ensoul
sill-ensoul-init # builds the global KB + default agent alter-ego
# then have the CLI's AI read SETUP.md to finish MCP registration + shell installRequires Python >= 3.10.
Global KB, not inside any project repo (private memory never enters git):
Platform | Default path |
Windows |
|
macOS |
|
Linux |
|
Set ENSOUL_KB=<path> to put it anywhere (e.g. a Dropbox / iCloud folder for multi-device sync). Open that folder in Obsidian — each agent is a subfolder, the .md files inside are the memory.
After install, sill-ensoul-init provides a few maintenance commands:
Command | Purpose |
| Initialize the global KB + default |
| Print the CLI-agnostic shell for manual append to a CLI instruction file. |
| Auto-update sill-ensoul shell segments in supported CLI instruction files (Claude Code, Zcode, Codex, OpenCode). |
| Rebuild the SQLite FTS index for every agent from the |
| Print the installed package version (for upgrade checks). |
Supported CLI instruction files are detected automatically; only the ones that exist and already contain sill-ensoul markers are updated.
Upgrade
Upgrading an existing install is two parts, three commands — and your KB is never touched (upgrades update the package code and re-sync the shell rules only; your agents' memory stays put):
sill-ensoul-init --version # what's installed now
pip install -U "git+https://github.com/sillogic/sill-ensoul.git" # or: git pull && pip install -e <repo>
sill-ensoul-init --sync-shell # refresh shell rules in CLI instruction filesRestart your CLI. The full machine-readable intent for the CLI's AI (route
detection, verification, what-not-to-do) is UPGRADE.md — say
"upgrade sill-ensoul from <repo>/UPGRADE.md" and the CLI handles it.
How it works
Claude Code / Codex / zcode / Cursor ← inference runs in each CLI's model vendor, not locked
| load persona + wiki slice (thin shell: AGENTS.md / CLAUDE.md)
sill-ensoul-mcp (MCP server, 8 tools, read/write/search)
| read/write
knowledge/agents/<id>/ ← one OKF bundle per ensouler (markdown files)
knowledge/agents/<id>/.fts/index.db ← local SQLite FTS5 index, derived from the .md filesThree-layer separation (design decisions D1/D2, see docs/ROADMAP.md):
Engine (
ensoul/) — CLI-agnostic, handles data/tools only, no inference.server.pyis a thin MCP shell, pass-through only.Shell (
AGENTS.md/CLAUDE.md) — one per CLI, defines "when to wake/search/distill", references the shared WORKFLOW.md.Memory (
knowledge/agents/<id>/) — OKF markdown files, git-able, diff-able, human-readable.
About the .fts/index.db file: Each agent bundle has a local SQLite FTS5 index that caches metadata and accelerates search. It is derived data — the .md files are always the source of truth. You can delete .fts/ at any time; it will be rebuilt on demand. SQLite is part of Python's standard library, so there is no extra install and no separate database process.
Core loop: wake (load persona + knowledge map) → recall (search relevant experience) → cite (reference real memory with concept_id) → distill (new experience, written directly with a heads-up). Memory persists across projects and sessions.
8 Tools
Tool | Purpose |
| List all ensoulers |
| Create an ensouler (dir + persona + index + log template) |
| Delete an ensouler (irreversible, confirm first) |
| Wake/switch ensouler (persona + knowledge map) |
| Full-text search an ensouler's experience (FTS5 + BM25, with CJK segmentation) |
| Read a concept's details |
| Distill new experience (type required) |
| Log a change |
Multi-ensouler collaboration needs no dedicated tools: any agent can use
wiki_write_concept(agent_id=...)to operate on another agent's memory — orchestrator reads/writes directly (see docs/ROADMAP.md D6).
Remote deployment (HTTP server)
Run the same 8 tools as a Streamable HTTP MCP server on any machine (VPS / home server / tailnet) so multiple machines share one knowledge base. Every request is gated by a static Bearer token (SIL-7 / D11) — single-tenant today, with an identity→KB-root seam for future multi-tenancy.
pip install "sill-ensoul[http] @ git+https://github.com/sillogic/sill-ensoul.git" # not on PyPI yet
# or clone then: pip install ".[http]" (quote the bracket — `.[http]` unquoted is not valid bash)
ENSOUL_MCP_TOKEN=$(openssl rand -hex 32) # or: python -c "import secrets;print(secrets.token_hex(32))"
ENSOUL_MCP_TOKEN=... sill-ensoul-http # default bind 0.0.0.0:8930Dependency pin: the package requires
mcp>=1.2,<2— mcp 2.x renamedFastMCPtoMCPServerand removed themcp.server.fastmcpmodule, which breaks bothsill-ensoul-mcpandsill-ensoul-httpat startup. The upper bound is baked intopyproject.toml, so a fresh install resolves mcp 1.x automatically (migration to mcp 2.x is tracked in D11).
Fail-closed: the server refuses to start without
ENSOUL_MCP_TOKEN— an unauthenticated remote server is exactly what this is for.Optional:
ENSOUL_MCP_HOST/ENSOUL_MCP_PORTenv overrides (or--host/--port). The KB root is stillENSOUL_KB/ the platform default.
Environment variables — a ready template lives in .env.example (token / KB root / host / port). For systemd, copy it to a root-only file and load it with EnvironmentFile; a ready-to-edit unit is at deploy/sill-ensoul-http.service:
sudo mkdir -p /etc/sill-ensoul
sudo cp .env.example /etc/sill-ensoul/env && sudo chmod 600 /etc/sill-ensoul/env
sudo vi /etc/sill-ensoul/env # 填 ENSOUL_MCP_TOKEN / ENSOUL_KB
sudo cp deploy/sill-ensoul-http.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now sill-ensoul-http
systemctl status sill-ensoul-http # 改完 env 要 restart 才生效Migrate the KB — memory is plain files under the local KB root (knowledge/); copy the whole tree to the server's ENSOUL_KB (exclude per-agent .fts/ caches — they rebuild automatically):
# local (Windows PowerShell, in %LOCALAPPDATA%\ensoul):
tar -cf knowledge.tar --exclude=.fts knowledge
scp knowledge.tar root@<server>:/opt/sill-ensoul/
# server:
cd /opt/sill-ensoul && tar -xf knowledge.tar && ls knowledge/agents/If multiple machines each have a KB, pick ONE as baseline first — do not blindly overwrite; merge the stragglers' unique content by hand.
Point a CLI's MCP config at it (streamable-http clients send the header on every request):
{ "type": "streamable-http", "url": "http://<server>:8930/mcp",
"headers": { "Authorization": "Bearer <token>",
"X-Machine-Id": "<your-hostname>" } }or via a stdio↔HTTP bridge (works for any CLI):
npx mcp-remote http://<server>:8930/mcp --allow-http --transport http-only --header "Authorization: Bearer <token>" --header "X-Machine-Id: <your-hostname>".
--allow-http is required because mcp-remote refuses plain-HTTP URLs by default; --transport http-only avoids mcp-remote's SSE-fallback probe (its default http-first strategy), which conflicts with FastMCP's streamable-HTTP session handling and fails every call with 400 Bad Request: Missing session ID. The X-Machine-Id header is the machine identity (SIL-9): the server stamps it into every concept's frontmatter machine: field, so readers of a shared remote KB can tell "which machine wrote this" from "which machine am I on".
Security notes: the token is the auth boundary — never commit it; prefer a private network (Tailscale / VPN / firewall) for transport security; the stdio server (
sill-ensoul-mcp) stays local-only and needs no token. On a public network, front the server with TLS (Caddy/nginx reverse proxy) so the token is not sent in clear text.
Full runbook: step-by-step deployment, restart / upgrade / KB-migration / troubleshooting lives in
docs/deployment.md. Client install (remote): to point a CLI at the remote server without hand-editing configs, paste the single prompt filedeploy/cli-setup/cli-remote.mdinto that CLI — it identifies which CLI it is, applies the matching section, and registers the remote MCP endpoint itself (seedocs/deployment.md§4). Not sure which file fits you? See Choose your deployment above — pick your scenario (local / self-hosted / join existing server / switch local→remote), it tells you the file order.
Tests
pip install -e .
python -m tests.run_testsFour release tests, all green = core loop works (each builds its own temp KB, runs straight after clone):
Test | Verifies |
| FTS5 search + persona exclusion (11 regressions) |
| MCP shell layer (8 tools, real stdio) |
| HTTP transport + Bearer auth (fail-closed, 401 gate, real uvicorn e2e) |
| Cross-project memory retention (end-to-end) |
Status
✅ Core loop works: wake → recall → cite → distill → cross-project retention
✅ Installable:
pip install+sill-ensoul-initself-boots CLI setup✅ Cross-CLI verified: zcode + Claude Code both adapted
✅ Design final: auto-distill + notify-after (not pre-write confirmation, not full-auto). Multi-agent collaboration via orchestrator model (D6).
See docs/ROADMAP.md
Documentation map(文件地图:谁读、管什么)
文件 | 谁读 | 管什么 |
人 | 产品介绍 + Quick Start(本地默认)+ 部署场景决策表 | |
CLI 的 AI | 本地首次安装(装包→建 KB→注册 stdio→薄壳→验证) | |
CLI 的 AI | 升级已装实例(包 + 薄壳两部分,不动 KB) | |
人(服务器管理员) | 远程服务器端部署 runbook(git 装 / env / systemd / KB 迁移 / 运维 / 排障) | |
人(服务器管理员) | systemd 部署模板(复制到服务器 | |
人 | 客户端接入提示词文件的索引(4 个文件 + 场景路由) | |
CLI 的 AI | 远程客户端接入(首次接入 / 原本地切远程) | |
CLI 的 AI | 已接入客户端补 | |
CLI 的 AI | Multica 平台 agent 绑定(前提:MCP 已配好) | |
人 | CLI-agnostic 工作流(唤醒/检索/蒸馏/skill 调度)权威源 | |
CLI 的 AI(经薄壳) | 注入每个 CLI 指令文件的薄壳规则(含机器 banner) | |
人 | 进度 + 设计决策 D1-D13 + 历史坑 H1-H21 | |
人 | 设计背景:为什么 OKF / MCP,与 mem0/letta/graphiti 对比 | |
人 | Multica 平台集成指南(设计向;与 deploy/cli-setup/multica.md 的投喂文件互补) |
License
Released under the MIT License © 2026 sillogic.
Available Tools
8 toolsagent_indexA
Open an agent's wiki: persona preview, index.md text, and all concepts. Call this when waking an agent in a new project, before working. Switch agents by calling this with a different agent_id.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it mostly succeeds: 'Open' signals a non-mutating operation, and the description discloses what the agent receives (persona, index.md, all concepts) and how it behaves when switching agents. It does not explicitly state 'read-only' or 'no side effects,' though the wording strongly implies both.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences: the first defines the function, the second states when to call it, and the third explains how to reuse the tool for switching. There is no filler, no repetition of schema data, and the most important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
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, the description covers purpose, timing, and parameter behavior well. It would be slightly more complete if it pointed to list_agents for discovering IDs or explicitly excluded write behavior, but neither omission prevents correct use in the described scenario.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema's only parameter, agent_id, has 0% description coverage, so the tool description must add meaning. It does by making clear the parameter selects which agent's wiki to open and by explaining that passing a different agent_id switches agents. It does not document format or how to discover valid IDs, but for a single obvous string parameter this is sufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific action ('Open an agent's wiki') and names the returned contents: persona preview, index.md text, and all concepts. This is clearly distinct from a single-page wiki_read or search tool in substance, but it does not explicitly contrast with sibling tools or name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives an explicit trigger: 'Call this when waking an agent in a new project, before working.' It also adds a practical switching pattern: 'Switch agents by calling this with a different agent_id.' It lacks explicit when-not-to-use guidance or named alternatives, but the primary usage context is unmistakable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_agentA
Create a new agent bundle (directory + AGENT.md persona + index.md +
log.md). Use when starting a new role that doesn't exist yet.
name: display name (defaults to agent_id). persona: free-text identity
and strengths for the AGENT.md body; omit for a fill-in template.
Fails if the agent already exists — don't clobber.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| persona | No | ||
| agent_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It reveals concrete side effects: it creates a multi-file bundle, optionally writes a provided persona or a fill-in template, and refuses to overwrite an existing agent. This goes well beyond the schema by stating the failure condition and pre-existing-agent behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: starting with the core operation, then when to use it, then parameter specifics, then the failure guard. Every sentence adds actionable information and none merely repeats the schema. The structure makes it easy for an agent to scan and extract decision-critical facts quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 3-parameter create tool with an output schema present, the description covers what is created, when to use it, how each optional parameter behaves, and the collision behavior. The output schema handles return-value details, so nothing essential to a correct first invocation is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must add meaning to parameters, and it does. It explains `name` as the display name, defaulting to `agent_id`, and `persona` as free-text identity for the AGENT.md body with an omit-for-template option. `agent_id` is not individually described, but its role is inferable from the required constraint and its use as the fallback for `name`.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a precise verb and resource: 'Create a new agent bundle' and enumerates exactly what is created ('directory + AGENT.md persona + index.md + log.md'). This clearly differentiates it from sibling tools like delete_agent and the wiki_* operations. The 'Use when starting a new role' clause anchors the tool's specific purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear trigger: 'Use when starting a new role that doesn't exist yet.' It also warns that the tool fails if the agent already exists and says 'don't clobber,' which implicitly tells the agent not to use it for existing roles. It does not explicitly name alternative tools for updates, but the usage context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_agentA
Delete an agent's entire bundle (all concepts + persona + log). IRREVERSIBLE — confirm with the user before calling. Refuses paths that escape the agents dir. Use when an agent is retired or created by mistake.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so well: it flags IRREVERSIBLE destruction, instructs the agent to confirm with the user, and documents the path-safety guard ('Refuses paths that escape the agents dir'). This is strong behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: scope, destruction warning, and usage context. Critical information is front-loaded with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter destructive action with no annotations, the description covers what gets deleted, when to use it, and safety constraints. It only lacks an explicit pointer to list_agents or agent_index for obtaining a valid agent_id.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% and the description never explains agent_id: its format, where to find it, or whether it is a name, path, or ID. The path-safety note gives only an indirect hint, leaving the single parameter materially underspecified.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource: 'Delete an agent's entire bundle (all concepts + persona + log).' This clearly explains the tool's scope and distinguishes it from the sibling wiki tools that operate on individual concepts or logs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides an explicit trigger: 'Use when an agent is retired or created by mistake.' It does not enumerate alternatives, but no sibling tool offers a comparable deletion operation, so the usage context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_agentsA
List every agent that owns an OKF knowledge bundle.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the filtering behavior (only agents owning an OKF bundle) but does not explicitly state that it is read-only, or mention pagination, ordering, or side effects. The read-only nature is implied by 'list', and output schema covers response shape, so it is minimally adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence with no filler. It communicates the exact purpose efficiently and wastes no words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, zero-parameter listing tool with an output schema, the description is largely sufficient. It defines the scope (every agent with an OKF bundle) and the presence of an output schema covers return values. The only minor gap is lack of explicit read-only confirmation, but this is implied by the verb.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema is trivially complete. The description adds no parameter details, but the baseline for zero-parameter tools is 4, which is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and resource ('every agent that owns an OKF knowledge bundle'), clearly distinguishing the tool's scope. It is not a tautology and separates it from create/delete operations, though it doesn't explicitly name a sibling alternative.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like agent_index or wiki_search. There are no exclusions or context cues for selection, leaving the agent to infer usage from the name and description alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wiki_append_logB
Append one update entry to the agent's log.md (today's date group).
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| detail | Yes | ||
| agent_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of exposing behavior. It does state that the operation appends to a log file under today's date group, implying non-destructive modification. However, it omits details such as whether the file is created if missing, how existing entries are formatted, or any permission requirements, which would be valuable for an agent deciding to invoke it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, well-structured sentence that front-loads the verb and resource, with no padding. Every word adds meaning, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple append operation, the description covers the core action and destination. Given an output schema exists, return values are not required. However, it lacks context about edge cases (file creation, date formatting) and parameter specifics, leaving some room for misinterpretation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero description coverage, so the description must clarify the parameters. While the names 'agent_id', 'action', and 'detail' are self-explanatory to some degree, the description neither explicitly maps them to the append operation nor explains any constraints or formats. This is a clear gap given the low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Append' and names the exact resource 'agent's log.md', with the additional detail 'today's date group'. This clearly distinguishes it from sibling tools like wiki_write_concept or wiki_search, leaving no doubt about its function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus its alternatives. It doesn't mention any conditions, exclusions, or comparisons to sibling tools like wiki_write_concept, so an agent has no explicit basis for choosing this tool over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wiki_readB
Read one concept (frontmatter + body). concept_id uses '/' (e.g. 'projects/x').
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | ||
| concept_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It does disclose the read-only nature, the returned content ('frontmatter + body'), and the concept_id path format. It does not address not-found behavior or how agent_id scopes the read, but for a simple read tool with an output schema this is minimally adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single front-loaded sentence: first the action/resource, then the parameter detail. There is no filler and every clause adds useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Although the tool is simple and has an output schema, the definition omits the meaning of the required agent_id and offers no usage guidance relative to wiki_search. The concept_id format note helps, but the description is not complete enough for confident correct invocation on its own.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for both parameters. It explains concept_id with the format and example ('projects/x'), but says nothing about agent_id, a required parameter. Half the input contract is left unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Read one concept (frontmatter + body)'. This clearly distinguishes it from write/search/delete siblings like wiki_write_concept and wiki_search. It does not explicitly name any sibling, so it stops short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus wiki_search or wiki_write_concept, and no mention of prerequisites such as having a known concept_id. The phrase 'one concept' implies exact-id reads, but the selection logic is left entirely to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wiki_searchA
Full-text search within one agent's wiki.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| agent_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral disclosure burden. It communicates that the operation is a search and that it is scoped to one agent's wiki, which implies a read-only action. However, it does not describe result-ranking behavior, matching semantics, or side effects beyond what the name and schema already suggest.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the core purpose without filler. Every word earns its place, and there is no redundant restating of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a straightforward search tool with an output schema and self-describing parameter names. The one-line description covers the core semantics and scope, though a sentence about when to prefer this over wiki_read or agent_index would make it fully complete. The output schema relieves the description of explaining return values.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description is the only place that could explain parameters, and it does not explicitly do so. The parameter names are self-explanatory enough that agent_id, query, and limit can be inferred, but no additional detail about query format or interpretation is provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific operation, full-text search, and a specific resource, one agent's wiki, which cleanly distinguishes it from sibling tools like wiki_read, wiki_write_concept, and list_agents. There is no ambiguity about what this tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'within one agent's wiki' implies a scope constraint and suggests using this tool when search is needed, but it never states when to prefer wiki_search over alternatives such as wiki_read or agent_index, nor does it mention exclusions. Usage context is only implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wiki_write_conceptC
Create or update a concept file in an agent's wiki. 'type' is required (OKF). extra_json: optional JSON object string for custom frontmatter fields.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| tags | No | ||
| type | Yes | ||
| title | No | ||
| agent_id | Yes | ||
| concept_id | Yes | ||
| extra_json | No | ||
| description | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does state 'Create or update' and mentions extra_json for frontmatter, but it does not explain what OKF means, whether updates overwrite existing content, whether files are created automatically, or any side effects or requirements beyond 'type' being required.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the primary action. The second sentence adds relevant parameter context, though the unexplained 'OKF' abbreviation slightly weakens clarity. Overall, it is efficient with no wasted content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 8 parameters, no annotations, and a 0% schema description coverage, the description is incomplete. It does not explain required identifiers, body/tags/title/description semantics, the meaning of OKF, or how the output is structured. The output schema exists, but the input-side gaps are substantial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the undocumented parameters. It adds meaning only for 'type' (required, OKF) and 'extra_json' (optional JSON object string), while leaving agent_id, concept_id, body, tags, title, and description semantically unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates or updates a concept file in an agent's wiki, which is a specific verb with a clear resource. It does not explicitly differentiate from siblings like wiki_append_log or wiki_read, but the resource and action are unambiguous enough for an agent to understand the core purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives such as wiki_append_log, wiki_search, or wiki_read. It mentions 'type' is required, but does not explain when a concept write is appropriate or how it differs from other wiki operations.
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.
8 tool updates
v0.5.0- First observed
agent_index - First observed
create_agent - First observed
delete_agent - First observed
list_agents - First observed
wiki_append_log - First observed
wiki_read - First observed
wiki_search - First observed
wiki_write_concept
TDQS
Scored across 8 tools
Each tool targets a distinct action (create/list/delete agent, read/search/write wiki, append log), and descriptions clarify the one potentially confusing pair (agent_index vs wiki_read). The name agent_index could be misread as an agent list, but its description removes that ambiguity.
Most wiki operations use a wiki_<verb> pattern, while agent lifecycle operations use <verb>_agent; this mixed ordering is readable but not uniform. agent_index is a noun-noun exception, and wiki_read vs wiki_write_concept is asymmetric. All names are snake_case and semantically clear.
Eight tools is a well-scoped set for managing agent bundles and their knowledge wikis. Each tool covers a distinct need without redundancy, and the count is within the ideal range.
Core workflows are covered: create/list/delete agents, open/search/read concepts, write concepts, and append log entries. There is no direct way to update an agent's persona/index or delete an individual concept, but these are minor gaps that can be worked around via concept writes or log entries.
Maintenance
Related MCP Connectors
Cross-tool persistent memory and context for AI assistants over MCP.
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
Persistent memory for AI agents across Claude, ChatGPT and any MCP client.
Persistent memory for AI agents — log and recall conversation context over MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides persistent, local-first AI memory across sessions via MCP tools for storing, searching, and retrieving context from past interactions.1MIT
- AlicenseNot gradedqualityBmaintenanceProvides a persistent, local-first memory for coding agents over MCP, enabling automatic recall and recording of past work, failures, and decisions to reduce repetition and token usage.MIT
- AlicenseNot gradedqualityBmaintenanceProvides a persistent, cross-tool memory layer for AI coding agents via MCP, enabling storage and retrieval of decisions, preferences, and context across different tools and models.5 npm1MIT
- AlicenseNot gradedqualityAmaintenanceProvides shared long-term memory for AI coding agents via MCP, allowing tools like Claude Code and Codex to store and retrieve distilled facts, notes, and conversation history to persist context across sessions.16 npm4MIT