Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@
"authentication": "ON_INSTALL"
},
"category": "Development"
},
{
"name": "claude-delegator",
"source": {
"source": "url",
"url": "git@github.com:antonbabenko/claude-delegator.git",
"ref": "v1.6.0"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Development"
}
]
}
23 changes: 23 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,29 @@
"tool-disclosure"
],
"version": "0.4.1"
},
{
"name": "claude-delegator",
"source": {
"source": "github",
"repo": "antonbabenko/claude-delegator",
"ref": "v1.6.0"
},
"description": "Use when you want a delegated second opinion or implementation from GPT (Codex) or Gemini - five expert subagents (Architect, Plan Reviewer, Scope Analyst, Code Reviewer, Security Analyst) and bundled ask-gpt/ask-gemini/ask-both/consensus commands, advisory (read-only) or implementation (write).",
"category": "development",
"keywords": [
"delegation",
"mcp",
"codex",
"gpt",
"gemini",
"experts",
"subagents",
"orchestration",
"code-review",
"architecture"
],
"version": "1.6.0"
}
]
}
49 changes: 48 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ npx skills add https://github.com/antonbabenko/terraform-skill

/plugin install code-intelligence@antonbabenko
/plugin install terraform-skill@antonbabenko
/plugin install claude-delegator@antonbabenko
```

### Codex
Expand All @@ -41,7 +42,7 @@ codex plugin marketplace add antonbabenko/agent-plugins
```

Then run `codex`, open `/plugins`, select **Agent Plugins**, and install
`code-intelligence` or `terraform-skill`.
`code-intelligence`, `terraform-skill`, or `claude-delegator`.

For other hosts, expand below.

Expand Down Expand Up @@ -204,6 +205,52 @@ Try:
Source and detail: [github.com/antonbabenko/terraform-skill](https://github.com/antonbabenko/terraform-skill).
The full per-host install list lives in that repo's README.

### [claude-delegator](https://github.com/antonbabenko/claude-delegator)

> Gives the agent five GPT (Codex) and/or Gemini expert subagents - it
> delegates the hard call (architecture, plan review, scope, code review,
> security) instead of guessing alone, and synthesizes the result rather than
> pasting it raw.

**tldr** - what changes with the plugin:

| Prompt | Without the plugin | With the plugin |
|--------|--------------------|-----------------|
| Is this auth flow secure? | One model's single take | Security Analyst expert reviews; verdict synthesized, not raw |
| Review this migration plan | Self-review, same blind spots | Plan Reviewer expert validates before you execute |
| Get GPT and Gemini to agree on this design | Manual back-and-forth | `consensus` iterates GPT + Gemini + Claude to a signed-off plan |

Each expert runs advisory (read-only) or implementation (`workspace-write`).
Maintained fork of `jarrodwatts/claude-delegator` (upstream inactive); MIT.

```bash
/plugin install claude-delegator@antonbabenko
/claude-delegator:setup
```

Requires the [Codex CLI](https://github.com/openai/codex) and/or
[Gemini CLI](https://github.com/google/gemini-cli); `/setup` guides you through
it.

Bundled commands:

- `/claude-delegator:setup` - configure Codex/Gemini MCP servers + rules
- `/claude-delegator:uninstall` - remove MCP config, rules, and aliases
- `/claude-delegator:ask-gpt` - one-shot GPT (Codex) second opinion
- `/claude-delegator:ask-gemini` - one-shot Gemini second opinion
- `/claude-delegator:ask-both` - GPT + Gemini in parallel, synthesized
- `/claude-delegator:consensus` - iterate GPT + Gemini + Claude to consensus

Use `consensus` when the plan must be right - GPT + Gemini + Claude iterate
until all three sign off, ideal for high-stakes planning and design. Use the
`ask-*` commands for a quicker single or parallel opinion when you just want a
fast second take.

`/setup` can also install short aliases (`/ask-gpt`, `/ask-gemini`,
`/ask-both`, `/consensus`); opt-in, never overwrites an existing command.

Source and detail: [github.com/antonbabenko/claude-delegator](https://github.com/antonbabenko/claude-delegator).

## Why these plugins

- **Honest by construction.** Any tool substitution or skipped step is stated
Expand Down
Loading