Registry / devops / robotcode-plugin

robotcode-plugin

JSON →
library2.5.1pypypiunverified

Provides classes for managing RobotCode plugins, used to extend RobotCode IDE functionality. Current version 2.5.1, updated regularly.

pip install robotcode-plugin
INSTALL
IMPORT
SIG · ROBOTCODE-PLUGIN
R
robotcode-plugin
devopspythonv2.5.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Plugin
from robotcode import Plugin
from robotcode.plugin import Plugin

Define a custom plugin by subclassing Plugin and implementing activate.

from robotcode.plugin import Plugin class MyPlugin(Plugin): def __init__(self): super().__init__() def activate(self): print('Plugin activated')
Debug
Known issues
gotchaPython package name uses hyphen (robotcode-plugin), but import uses underscore (robotcode.plugin). Many users mistakenly use old.module() pattern.
fix
Always import from robotcode.plugin, never robotcode_plugin.
affects: all
deprecatedOld plugin API methods like register_command have been removed in favor of decorator-based registration.
fix
Use @plugin.command() decorator instead of register_command().
affects: >=2.0.0
Upgrade
Version history
2.5.1latest on PyPI · released Apr 1, 2026
Audit
Dependencies
robotcoderequiredRequired for RobotCode integration
Agent activity
4 hits · last 30 days
node
4
Resources
robotcode-plugin — pip install robotcode-plugin · libregistry