Devrig Plugin (VS Code Agent Plugin)
Portable VS Code Agent Plugin for devrig + MCP Steroid: operate a real JetBrains IDE (IntelliJ IDEA, PyCharm, WebStorm, Rider, …) from your AI coding agent.
The agent gets one skill, devrig, with 24 reusable Kotlin codefiles run via:
devrig execute_code --project_name=<KEY> --task_id=<id> --reason="<why>" --code-file=<file>
plus two subagent definitions (agents/) for creating codefiles and for IntelliJ-native search (IDE indexes only — never grep).
Contents
devrig-plugin/
├── plugin.json
├── README.md
├── LICENSE
└── skills/
└── devrig/
├── SKILL.md
├── codefiles/ # 24 × *.kts + manifest.json
├── agents/ # devrig-codefiles.agent.md, intellij-search.agent.md
└── references/ # local copies of mcp-steroid:// guides
Requirements
- VS Code with Agent Plugins enabled (
chat.plugins.enabled) devrigCLI on PATH:curl -fsSL https://devrig.dev/install.sh | sh- A JetBrains IDE with the MCP Steroid plugin, or
devrig backend downloadfor a frontendless backend
Install directly from GitHub
- Open the Command Palette.
- Run Chat: Install Plugin From Source.
- Enter:
https://github.com/Areo-RGB/devrig-plugin.git
- Review the plugin and accept the trust prompt.
- Verify the
devrigskill appears under Chat Configure Tools / skills.
Quick start
devrig list_projects --json
devrig execute_code --project_name=<KEY> --task_id=info --reason="show project info" --code-file=01_project_info.kts
Codefiles live in the installed plugin at skills/devrig/codefiles/. Edit the ALL-CAPS vars at the top of each file before running. See skills/devrig/codefiles/manifest.json for the full tool map.
Subagents
Copy any skills/devrig/agents/*.agent.md into your repo's .github/agents/ (or VS Code profile agents folder) to use it as a subagent:
devrig-codefiles.agent.md— author reusableexecute_codeKotlin codefiles.intellij-search.agent.md— delegate IntelliJ-native code search via IDE indexes.
License
MIT