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-agentskillsExplains Robot Framework keywords, arguments, and usage from libdoc documentation across libraries, resources, and suites. Use for keyword queries and details.
Expert approach to keyword-driven-testing in test automation. Use when working with .
Guides doc lookup and web search workflow for investigating libraries, APIs, or unfamiliar patterns before implementation.