robotframework-libdoc-explain
1
总安装量
1
周安装量
#48339
全站排名
安装命令
npx skills add https://github.com/manykarim/robotframework-agentskills --skill robotframework-libdoc-explain
Agent 安装分布
amp
1
opencode
1
cursor
1
codex
1
github-copilot
1
Skill 文档
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:
python scripts/rf_libdoc.py --library BuiltIn --keyword "Log" --pretty
Explain across multiple sources:
python scripts/rf_libdoc.py --library SeleniumLibrary --resource resources/common.resource --keyword "Open Browser" --pretty
Fallback to search if exact keyword not found:
python scripts/rf_libdoc.py --library SeleniumLibrary --keyword "Open Brows" --search "open browser" --pretty
Notes
- Use
--library,--resource,--suite, or--spec(repeatable). Inputs are aggregated. - Exact keyword matches return
keyword_matcheswith argument breakdown. - If no exact match, the script returns
matchesusing name +short_doc+docsearch. - Use
--tag,--include-private,--exclude-deprecatedas filters.