返回 Skill 列表
extension
分类: 开发与工程无需 API Key

robotframework-libdoc-search

搜索Robot Framework库/资源/套件文档以找到与用例匹配的关键字。当被要求查找关键字、搜索libdoc、将用例与关键字匹配或扫描多个库/资源以查找相关关键字时使用。

person作者: jakexiaohubgithub

Robot Framework Libdoc Search

Use this skill to search Robot Framework libraries/resources/suites for keywords that match a use case. Output JSON only.

Command

Search in standard libraries:

python scripts/rf_libdoc.py --library BuiltIn --library OperatingSystem --search "create temp file" --pretty

Search multiple sources with custom weights:

python 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

Notes

  • Use --library, --resource, --suite, or --spec (repeatable). Inputs are aggregated.
  • Search considers keyword name, short_doc, and full doc.
  • Use --tag to filter keywords by tag.
  • Use --include-private to include private keywords.
  • Use --exclude-deprecated to drop deprecated keywords.