From rf-agentskills
Searches Robot Framework libraries, resources, and suites for keywords matching a use case via libdoc. Use to scan BuiltIn, SeleniumLibrary, or custom sources with weights, tags, and filters.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rf-agentskills:libdoc-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to search Robot Framework libraries/resources/suites for keywords that match a use case. Output JSON only.
Use this skill to search Robot Framework libraries/resources/suites for keywords that match a use case. Output JSON only.
Search in standard libraries:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/rf_libdoc.py" --library BuiltIn --library OperatingSystem --search "create temp file" --pretty
Search multiple sources with custom weights:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/rf_libdoc.py" --library SeleniumLibrary --resource resources/common.resource --search "upload file" --weights name=0.5,short_doc=0.3,doc=0.2 --limit 10 --pretty
--library, --resource, --suite, or --spec (repeatable). Inputs are aggregated.short_doc, and full doc.--tag to filter keywords by tag.--include-private to include private keywords.--exclude-deprecated to drop deprecated keywords.npx claudepluginhub manykarim/robotframework-agentskills --plugin rf-agentskillsGuides doc lookup and web search workflow for investigating libraries, APIs, or unfamiliar patterns before implementation.
Fetches live documentation and implementation guidance for any library, framework, or API. Invoked when the user asks for documentation, examples, or best practices.
Fetches current library docs, API references, framework patterns, and code examples for any library via Context7 REST API. Triggers on 'how to use library', API docs, patterns, import usage.