# Robotframework Libdoc Search

> Search Robot Framework library/resource/suite documentation to find matching keywords for a use case. Use when asked to find keywords, search libdoc, match a use case to keywords, or scan multiple libraries/resources for relevant keywords.

- Skill: `majiayu000/robotframework-libdoc-search` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/robotframework-libdoc-search`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/robotframework-libdoc-search/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/robotframework-libdoc-search

---


# 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:

```bash
python scripts/rf_libdoc.py --library BuiltIn --library OperatingSystem --search "create temp file" --pretty
```

Search multiple sources with custom weights:

```bash
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.

