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.
npx claudepluginhub manykarim/robotframework-agentskills --plugin rf-agentskillsThis skill uses the workspace's default tool permissions.
Use this skill to search Robot Framework libraries/resources/suites for keywords that match a use case. Output JSON only.
Explains 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 .
Searches libraries by name with LLM ranking and retrieves relevant documentation context snippets from any repo via Context7 API. Useful for quick lookups on unfamiliar libraries.
Share bugs, ideas, or general feedback.
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.