| name | libdoc-explain |
| description | Explain Robot Framework keywords and their arguments from library/resource/suite documentation. Use when asked how to use a keyword, what arguments it takes, or to retrieve detailed keyword docs from libdoc across one or more libraries/resources. |
Robot Framework Libdoc Explain
Use this skill to retrieve detailed keyword docs and argument usage from Robot Framework libraries/resources/suites. Output JSON only.
Command
Explain a keyword in standard libraries:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/rf_libdoc.py" --library BuiltIn --keyword "Log" --pretty
Explain across multiple sources:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/rf_libdoc.py" --library SeleniumLibrary --resource resources/common.resource --keyword "Open Browser" --pretty
Fallback to search if exact keyword not found:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/rf_libdoc.py" --library SeleniumLibrary --keyword "Open Brows" --search "open browser" --pretty
Notes
- Use
--library, --resource, --suite, or --spec (repeatable). Inputs are aggregated.
- Output contract (stable): every call returns
{schema_version, mode, libraries, results, ...}.
mode is "explain" (exact keyword found), (no exact match → search suggestions), , or .