search_frictions
Ranked search over the Copilot Studio Friction Index. Exact error-code/message hits rank first, then title, alias, summary and symptom-checklist matches (solution bodies are NOT searched — an empty result means no record is indexed under these terms, not that the register lacks a fix). Use this when the user describes a Copilot Studio problem, symptom or keyword. Returns compact records with slug, status, severity, last-verified date and the citable powerleap.ch URL.
Parameters4
| query | string | required | Error string, symptom or keywords, e.g. "flow times out after 100 seconds". |
| category | string | optional | Optional category filter. |
| status | string | optional | Optional status filter: "open" (problem exists), "mitigated" (reliable workaround), "fixed" (resolved and re-verified), "regressed" (was fixed, is back). |
| limit | integer | optional | Maximum results. |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"description": "Error string, symptom or keywords, e.g. \"flow times out after 100 seconds\"."
},
"category": {
"type": "string",
"enum": [
"knowledge-grounding",
"publish-channel",
"auth-identity",
"orchestration",
"agent-flows",
"llm-steps",
"topics-variables",
"tools",
"alm-deployment",
"licensing-cost",
"governance-dlp",
"observability",
"security-defaults"
],
"description": "Optional category filter."
},
"status": {
"type": "string",
"enum": [
"open",
"mitigated",
"fixed",
"regressed"
],
"description": "Optional status filter: \"open\" (problem exists), \"mitigated\" (reliable workaround), \"fixed\" (resolved and re-verified), \"regressed\" (was fixed, is back)."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"default": 8,
"description": "Maximum results."
}
},
"required": [
"query"
],
"additionalProperties": false
}