AHK_Library_Search
Search AutoHotkey libraries for symbols like classes, methods, and functions using fuzzy matching across standard library paths.
Instructions
Search for symbols (classes, methods, functions, properties) across all AutoHotkey libraries. Uses fuzzy matching to find symbols by partial name. Automatically scans standard AHK library paths: • ScriptDir\Lib (active file's directory) • Documents\AutoHotkey\Lib • Program Files\AutoHotkey\v2\Lib
Examples: • Find clipboard utilities: { query: "clipboard" } • Find all classes: { query: "Manager", types: ["class"] } • Find methods by name: { query: "OnClick", types: ["method"] } • Show library locations: { query: "Gui", showPaths: true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query for symbol name (1-200 characters, supports fuzzy matching) | |
| types | No | Filter by symbol types (default: all) | |
| offset | No | Number of results to skip for pagination | |
| limit | No | Maximum results to return per page | |
| minScore | No | Minimum match score 0-1 (default: 0.3) | |
| showPaths | No | Include library paths to discover where libraries are located |