From b359779ed94d170a7ea2e31b721abd4ebe615402 Mon Sep 17 00:00:00 2001 From: Parth Maheshwari Date: Sun, 5 Apr 2026 13:13:29 +0100 Subject: [PATCH] fix: remove disable-model-invocation from adversarial-review command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `disable-model-invocation: true` flag prevents other skills from invoking `/codex:adversarial-review` via the Skill tool. This blocks useful workflow composition — for example, a `/plan-review` skill that explores the codebase, drafts a plan, and then calls `/codex:adversarial-review --wait` to pressure-test it before presenting to the user. The command already constrains its own tool access via `allowed-tools` and its prompt enforces review-only behavior, so the model-invocation gate adds no safety value — it only prevents programmatic orchestration. --- plugins/codex/commands/adversarial-review.md | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/codex/commands/adversarial-review.md b/plugins/codex/commands/adversarial-review.md index da440ab..64cf91a 100644 --- a/plugins/codex/commands/adversarial-review.md +++ b/plugins/codex/commands/adversarial-review.md @@ -1,7 +1,6 @@ --- description: Run a Codex review that challenges the implementation approach and design choices argument-hint: '[--wait|--background] [--base ] [--scope auto|working-tree|branch] [focus ...]' -disable-model-invocation: true allowed-tools: Read, Glob, Grep, Bash(node:*), Bash(git:*), AskUserQuestion ---