Agent Plugins Marketplace
All plugins

deliberation

v3.14.2

Use when you want a delegated second opinion or implementation from GPT (Codex), Gemini, Grok (xAI), or OpenRouter (config-driven, 400+ models) - seven expert subagents (Architect, Plan Reviewer, Scope Analyst, Code Reviewer, Security Analyst, Researcher, Debugger) and bundled ask-gpt/ask-gemini/ask-grok/ask-openrouter/ask-all/consensus commands, advisory (read-only) or implementation (write; Grok and OpenRouter are advisory-only).

Claude Code5 MCP serversstdio

By Anton BabenkoLicense: MIT137 GitHub starsUpdated 3 hours ago

Directory evidence

Runtimes
Claude Code
Parsed components
5 skill or MCP entries
Source updated
Aug 28, 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 plugin

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install deliberation@agent-plugin-marketplace

Paste 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/antonbabenko/deliberation

Clone 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

deliberation/
├── .claude-plugin/plugin.json
└── .mcp.json

MCP servers5

deliberationstdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/server/mcp/index.js
deliberation-codexstdio
command
codex
args
mcp-server
deliberation-geministdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/server/gemini/index.js
deliberation-grokstdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/server/grok/index.js
deliberation-openrouterstdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/server/openrouter/index.js

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

.claude-plugin/plugin.json
{
  "name": "deliberation",
  "description": "Use when you want a delegated second opinion or implementation from GPT (Codex), Gemini, Grok (xAI), or OpenRouter (config-driven, 400+ models) - seven expert subagents (Architect, Plan Reviewer, Scope Analyst, Code Reviewer, Security Analyst, Researcher, Debugger) and bundled ask-gpt/ask-gemini/ask-grok/ask-openrouter/ask-all/consensus commands, advisory (read-only) or implementation (write; Grok and OpenRouter are advisory-only).",
  "version": "3.14.2",
  "author": {
    "name": "Anton Babenko",
    "url": "https://github.com/antonbabenko"
  },
  "homepage": "https://github.com/antonbabenko/deliberation",
  "repository": "https://github.com/antonbabenko/deliberation",
  "license": "MIT",
  "keywords": [
    "delegation",
    "mcp",
    "codex",
    "gpt",
    "openai",
    "gemini",
    "antigravity",
    "agy",
    "google",
    "grok",
    "xai",
    "files",
    "experts",
    "subagents",
    "orchestration"
  ],
  "mcpServers": {
    "deliberation-codex": {
      "command": "codex",
      "args": [
        "mcp-server"
      ],
      "type": "stdio"
    },
    "deliberation-gemini": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/server/gemini/index.js"
      ],
      "type": "stdio"
    },
    "deliberation-grok": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/server/grok/index.js"
      ],
      "type": "stdio"
    },
    "deliberation-openrouter": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/server/openrouter/index.js"
      ],
      "type": "stdio"
    },
    "deliberation": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/server/mcp/index.js"
      ],
      "type": "stdio"
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[deliberation on Agent Plugins Marketplace](https://pluginsmp.com/plugins/deliberation)