Agent skill that teaches AI coding agents to drive
robotcodeproperly in Robot Framework projects.
With this plugin, your AI coding agent uses robotcode like an experienced Robot Framework engineer — picking the right command for the task and honoring your project's profiles. Instead of guessing, it tries things interactively, looks keywords up against your installed libraries, runs your suites, inspects finished runs, and analyzes the project for issues. Things you can ask:
- "run the smoke suite with the
devprofile" - "rerun just the tests that failed last time"
- "try the new login flow against the real app, with a visible browser"
- "does
css=.cart-iconactually match anything on the live cart page?" - "draft a test for password reset, reusing what we already have"
- "extract this block into a reusable keyword"
- "why did
Login Worksfail in last night's run?" - "summarize the failures from yesterday's nightly run"
- "what arguments does our
Create Orderkeyword take?" - "is there already a keyword for waiting until the spinner is gone?"
- "what keywords does
common.resourceexpose?" - "list the tags we have and how many tests use each"
- "set up a
prodprofile withBASE_URL=https://prod.example.com" - "show me the effective config when I use
-p ci -p docker" - "lint only the files I changed today"
- "are there any unused keywords or unresolved variables?"
- A Robot Framework project.
- The
robotcodeCLI tools, installed in the project's Python environment (the command-line tool — not to be confused with the VS Code extension of the same name). You can set it up yourself following the installation guide, or let the skill walk you through scope (dev dependency vs. venv-only) and extras (runner,analyze,repl, …) on first use. - An AI agent that supports plugins — see supported agents for the current list. Agents without plugin support can still load the skill directly (see Install).
Add the parent marketplace once, then install this plugin from it:
# Claude Code
claude plugin marketplace add robotcodedev/robotframework-agent-plugins
claude plugin install robotcode@robotframework-agent-plugins
# GitHub Copilot CLI
copilot plugin marketplace add robotcodedev/robotframework-agent-plugins
copilot plugin install robotcode@robotframework-agent-pluginsFor Codex, VS Code Copilot Chat, and other Open-Plugins-compliant agents, see the marketplace README.
Using the RobotCode VS Code extension? It already bundles this plugin via
contributes.chatPlugins— no separate install needed for VS Code Copilot Chat.
Without the marketplace. The skill content is plain Markdown, so any agent that loads skill folders from a known directory can use it directly. For Claude Code:
git clone --depth 1 https://github.com/robotcodedev/robotframework-agent-plugins
cp -r robotframework-agent-plugins/plugins/robotcode/skills/robotcode ~/.claude/skills/Other agents have analogous skill directories — consult their docs. The trade-off is that updates won't flow through plugin marketplace update; you re-pull manually.
claude plugin marketplace update # or your agent's equivalentThe marketplace robotcodedev/robotframework-agent-plugins is the source of truth. Pull requests welcome — see the marketplace CONTRIBUTING notes.
- RobotCode documentation — https://robotcode.io
- RobotCode CLI source — https://github.com/robotcodedev/robotcode
- Marketplace — https://github.com/robotcodedev/robotframework-agent-plugins
Apache-2.0 — see LICENSE.