devin
v1.4.1Adversarial code review via the Devin CLI. Runs your choice of frontier model read-only against your actual repo — or several of them in parallel, so you get genuinely independent opinions instead of one.
By Ian AndersonLicense: MIT0 GitHub starsUpdated 3 days ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 1 skill or MCP entry
- 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 devin for Codex and Claude Code
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add devin@agent-plugin-marketplacePaste and run these commands in a terminal with Codex. 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/ianandersonlol/devin-review-ccClone 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
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/devin-review/SKILL.md
Included Skills1
Delegate code review, design critique, or a fix to a non-Anthropic model via the Devin CLI, which runs inside the real repository so it verifies claims against actual call sites rather than a pasted diff. Use when the user asks for an independent second opinion, an adversarial or red-team review, to poke holes in a change, or to check a risky diff before merging; to challenge the design or approach rather than its bugs; or to get SEVERAL models' opinions on one change at once via a parallel panel. It ALSO covers handing Devin a problem to fix, which EDITS FILES — invoke that only when the user explicitly asks for Devin to do the fixing, never as your own first resort for a bug you could fix yourself. Do not invoke unprompted on every change.
Plugin manifests2
{
"name": "devin",
"version": "1.4.1",
"description": "Adversarial code review via the Devin CLI. Runs your choice of frontier model read-only against your actual repo — or several of them in parallel, so you get genuinely independent opinions instead of one.",
"author": {
"name": "Ian Anderson",
"url": "https://github.com/ianandersonlol"
},
"homepage": "https://github.com/ianandersonlol/devin-review-cc",
"license": "MIT",
"keywords": [
"devin",
"cognition",
"review",
"adversarial",
"second-opinion",
"multi-model",
"panel"
],
"skills": "./skills/",
"interface": {
"displayName": "devin review",
"shortDescription": "Adversarial review from one model, or a parallel panel of several",
"longDescription": "Delegates adversarial review of your current diff to the Devin CLI, which fronts models from Moonshot, xAI, DeepSeek, Zhipu, Cognition, OpenAI and others behind one binary. The reviewer runs read-only but with read access to the whole repository, so it greps for call sites and verifies findings against real code instead of critiquing a pasted diff. Because one CLI reaches many vendors, `panel` runs several models over the same diff in parallel and reports each separately — disagreement between them is the most useful signal it produces. Includes a credential pre-flight, since the diff leaves your machine.",
"developerName": "Ian Anderson",
"category": "Productivity",
"capabilities": [
"Read",
"Write"
],
"websiteURL": "https://github.com/ianandersonlol/devin-review-cc",
"composerIcon": "./assets/devin.svg",
"logo": "./assets/devin.svg",
"defaultPrompt": [
"Get an adversarial review of my current diff with devin",
"Run a multi-model panel review on this change before I merge it",
"Ask devin to challenge the design of this change, not just the bugs",
"Review the staged changes with devin, focusing on auth"
]
}
}{
"name": "devin",
"version": "1.4.1",
"description": "Adversarial code review via the Devin CLI. Runs your choice of frontier model read-only against your actual repo — or several of them in parallel, so you get genuinely independent opinions instead of one.",
"author": {
"name": "Ian Anderson",
"url": "https://github.com/ianandersonlol"
},
"license": "MIT",
"keywords": [
"devin",
"cognition",
"review",
"adversarial",
"second-opinion",
"multi-model",
"panel"
],
"commands": [
"./commands/review.md",
"./commands/panel.md",
"./commands/challenge.md",
"./commands/rescue.md",
"./commands/models.md",
"./commands/setup.md",
"./commands/status.md"
],
"homepage": "https://github.com/ianandersonlol/devin-review-cc",
"skills": [
"./skills/devin-review"
]
}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.
[devin on Agent Plugins Marketplace](https://pluginsmp.com/plugins/devin)