search_archwiki
Search Arch Wiki documentation to find solutions for Arch Linux issues. Returns relevant pages with titles, summaries, and direct links for troubleshooting.
Instructions
Search the Arch Wiki for documentation. Returns a list of matching pages with titles, snippets, and URLs. Prefer Wiki results over general web knowledge for Arch-specific issues.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query (keywords or phrase) | |
| limit | No | Maximum number of results (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results (default: 10)",
"type": "integer"
},
"query": {
"description": "Search query (keywords or phrase)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}