agent-delegation
v1.5.3Delegates long-running coding and research tasks to the OpenCode and Antigravity (agy) CLIs, and to the Gemini web app, as unattended MCP subagents. Dispatch returns a run id immediately and records the run on disk, so a delegate stays reachable - checkable, tailable, cancellable - across dropped connections, session ends and server restarts. Fails fast on provider quota walls instead of blocking for the full hour, kills hung delegates on an idle timer, and reports whatever the delegate wrote to .agent-runs/ on every exit path. The Gemini wrapper drives a dedicated Chrome profile to reach live Google search, Canvas, Gems and conversation history, which no Gemini API exposes.
By Arthur CarrollLicense: MIT0 GitHub starsUpdated 2 days ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 3 skill or MCP entries
- Source updated
- Sep 21, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install agent-delegation for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install agent-delegation@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/artcar12/agent-delegation-mcpClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.
Plugin files
├── .claude-plugin/plugin.json└── .mcp.json
MCP servers3
- command
- uv
- args
- run --script ${CLAUDE_PLUGIN_ROOT}/agy_mcp_server.py
- command
- uv
- args
- run --script ${CLAUDE_PLUGIN_ROOT}/gemini_web_mcp_server.py
- command
- uv
- args
- run --script ${CLAUDE_PLUGIN_ROOT}/opencode_mcp_server.py
MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.
Plugin manifests1
{
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
"name": "agent-delegation",
"version": "1.5.3",
"description": "Delegates long-running coding and research tasks to the OpenCode and Antigravity (agy) CLIs, and to the Gemini web app, as unattended MCP subagents. Dispatch returns a run id immediately and records the run on disk, so a delegate stays reachable - checkable, tailable, cancellable - across dropped connections, session ends and server restarts. Fails fast on provider quota walls instead of blocking for the full hour, kills hung delegates on an idle timer, and reports whatever the delegate wrote to .agent-runs/ on every exit path. The Gemini wrapper drives a dedicated Chrome profile to reach live Google search, Canvas, Gems and conversation history, which no Gemini API exposes.",
"author": {
"name": "Arthur Carroll"
},
"repository": "https://github.com/artcar12/agent-delegation-mcp",
"license": "MIT",
"keywords": [
"delegation",
"subagent",
"opencode",
"antigravity",
"gemini",
"mcp"
],
"mcpServers": {
"opencode-wrapper": {
"command": "uv",
"args": [
"run",
"--script",
"${CLAUDE_PLUGIN_ROOT}/opencode_mcp_server.py"
]
},
"agy-wrapper": {
"command": "uv",
"args": [
"run",
"--script",
"${CLAUDE_PLUGIN_ROOT}/agy_mcp_server.py"
]
},
"gemini-web-wrapper": {
"command": "uv",
"args": [
"run",
"--script",
"${CLAUDE_PLUGIN_ROOT}/gemini_web_mcp_server.py"
]
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[agent-delegation on Agent Plugins Marketplace](https://pluginsmp.com/plugins/agent-delegation)