search_episodes
Search knowledge episodes to find relevant information and patterns from user corrections, helping identify common standards and configuration updates.
Instructions
Search knowledge episodes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Max results | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Max results",
"type": "integer"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}