mindwiki_ask
Ask a question and get an answer synthesized from vault knowledge. Uses RAG (Retrieval-Augmented Generation) to find relevant pages and compose an answer.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| question | string | Yes | Natural language question |
| max_sources | number | No | Max pages to use as context (default: 5) |
Example Request
json
{
"tool": "mindwiki_ask",
"arguments": {
"question": "What patterns connect physics to my daily routines?"
}
}Example Response
json
{
"answer": "Your vault reveals two key connections: feedback loops appear in both complex systems (phase transitions) and your morning routine (compounding small wins). The concept of resonance also bridges physics and your journaling practice...",
"sources": [
"patterns/feedback-loops.md",
"research/complex-systems.md",
"systems/morning-routine.md"
]
}