quabug

Multi Agents Plugin — Development skill for Claude Code

Development community

Claude Code skill: Host multi-agent round-table discussions with Codex, Gemini, and OpenCode as panelists.

How to install Multi Agents Plugin

This entry records only its repository, not the path inside it, so there is no exact command to give. Open quabug/multi-agents-plugin and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Multi Agents Plugin does

Claude Code skill: Host multi-agent round-table discussions with Codex, Gemini, and OpenCode as panelists.

Alternatives in Development

  • Claude SEO — Multi-Platform Agent Instructions — For Cursor, Cursor Cloud Agents, Google Antigravity, and Gemini CLI 5k ★
  • IPolloWork — Enterprise-grade, local-first Agent Workbench for people and agent teams 4.9k ★
  • Petdex — A public gallery of animated pets for Codex, Claude Code, DeepSeek Harness, Hermes, OpenCode, Gemini CLI, and 4k ★

README

Multi-Agents Plugin for Claude Code

A Claude Code plugin that orchestrates configurable AI agents in parallel for code reviews and panel discussions. Supports Codex, Gemini, OpenCode, Pi, Qwen, and any future CLIs via the agent catalog.

Skills

Skill Command Description
ask /ask Ask all configured agents a question in parallel and display their responses with a brief synthesis
fix-pr /fix-pr Iterative multi-agent PR fix — reviews a PR with multiple agents, fixes critical/major issues, commits, and re-reviews until clean
review-pr /review-pr Multi-agent PR review — launches configured agents in parallel to review a GitHub PR, then synthesizes findings into a single comment
round-table /round-table Multi-agent panel discussion — configured AI panelists with distinct roles debate a topic across multiple rounds

Configuration

Configure which agents to use via a `## Multi-Agents` section in your CLAUDE.md (project-level or user-level):

## Multi-Agents
- codex
- gemini
- opencode: bailian-coding-plan/glm-5
- opencode: bailian-coding-plan/kimi-k2.5
- pi: bailian-coding-plan/qwen3.5-plus
- qwen

**Syntax:** `- {cli-name}` or `- {cli-name}: {model}`

  • Same CLI can appear multiple times with different models
  • Lines not matching the pattern are ignored
  • Project CLAUDE.md takes precedence over user CLAUDE.md

Skipping Agents

Use `--skip` to exclude specific agents from a single invocation:

/review-pr 42 --skip codex           # skip Codex for this review
/ask --skip glm-5 "your question"    # skip the GLM-5 agent
/round-table --skip codex --skip gemini "topic"  # skip multiple agents

Matches by CLI name, model name, or display name (case-insensitive).

Auto-Detection Fallback

If no `## Multi-Agents` section is found, the plugin auto-detects available CLIs:

which codex gemini opencode pi qwe