From 2a87dfafcfda2eacf67c4568f5a5592fedd80044 Mon Sep 17 00:00:00 2001 From: Lukas Parsons Date: Mon, 23 Mar 2026 00:27:59 -0400 Subject: [PATCH] docs: clarify ask-first approach for skill/memory creation --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 287285c..839d3fa 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,9 @@ Available tools: - `get_context`, `get_conventions`, `get_snippets` - `get_memory`, `add_memory`, `create_skill` -**Auto-coaching**: The MCP server sends instructions to the AI on connection, teaching it how and when to use these tools to learn and improve over time. This means the AI will proactively call `get_context()`, `add_memory()`, and `create_skill()` without you needing to explicitly tell it each time. +**Auto-coaching**: The MCP server sends instructions to the AI on connection, teaching it how and when to use these tools to learn and improve over time. + +**Important**: The AI will **propose** creating skills/memories when it identifies valuable patterns, but **will not execute without your permission**. You'll see suggestions like "I could create a skill for this pattern. Should I?" and you can approve or decline. This gives you full control while still building the knowledge base. ## Migration from v1