Install
$ agentstack add skill-manykarim-robotframework-agentskills-robotframework-keyword-builder ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Robot Framework Keyword Builder
Create user keywords in Robot Framework syntax from structured input. Output JSON only.
Input (JSON)
Provide input via --input or stdin. Example:
{
"keyword_name": "Create User",
"description": "Creates a new user via the UI.",
"arguments": [
{"name": "username", "type": "str"},
{"name": "role", "default": "viewer"}
],
"tags": ["ui", "smoke"],
"setup": {"keyword": "Open Browser", "args": ["${URL}", "chromium"]},
"teardown": {"keyword": "Close Browser"},
"style": "simple",
"steps": [
{"keyword": "Click", "args": ["Add User"]},
{"keyword": "Input Text", "args": ["Username", "${username}"]},
{"keyword": "Click", "args": ["Save"]}
]
}
Command
python scripts/keyword_builder.py --input keyword.json
Detect embedded-argument style from an existing project:
python scripts/keyword_builder.py --input keyword.json --project-root . --detect-embedded
Return values
Use "return_value" to add a RETURN statement at the end of the keyword:
{
"keyword_name": "Get Full Name",
"arguments": [{"name": "first"}, {"name": "last"}],
"steps": [{"assign": ["${result}"], "keyword": "Catenate", "args": ["${first}", "${last}"]}],
"return_value": "${result}"
}
Multiple return values:
"return_value": ["${var1}", "${var2}"]
Notes
- RF 7+ type annotations: Robot Framework 7 and later support type annotations
in [Arguments] using ${name}: type syntax (e.g. ${count}: int). This builder does not yet generate that syntax; type information is recorded in [Documentation] only.
Output (JSON)
artifact: keyword blockwarningsandsuggestionsmeta: any detected project conventions
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: manykarim
- Source: manykarim/robotframework-agentskills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.