Skip to content

areo-rgb/devrig-plugin

v0.1.0MIT

Devrig + MCP Steroid skill: operate a frontendless IntelliJ IDEA backend via devrig execute_code with 24 reusable Kotlin codefiles and IntelliJ-native search agents.

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)
  • devrig CLI on PATH: curl -fsSL https://devrig.dev/install.sh | sh
  • A JetBrains IDE with the MCP Steroid plugin, or devrig backend download for a frontendless backend

Install directly from GitHub

  1. Open the Command Palette.
  2. Run Chat: Install Plugin From Source.
  3. Enter:
https://github.com/Areo-RGB/devrig-plugin.git
  1. Review the plugin and accept the trust prompt.
  2. Verify the devrig skill 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 reusable execute_code Kotlin codefiles.
  • intellij-search.agent.md — delegate IntelliJ-native code search via IDE indexes.

License

MIT