openai / openai/codex-plugin-cc
disable-model-invocation hides commands from skill list, blocking user-initiated invocation
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 33.3k
- Forks
- 2.3k
- PR merge metrics
- No merged PRs in 30d
Description
Problem
Commands with disable-model-invocation: true in their frontmatter (e.g., review.md, adversarial-review.md, cancel.md, result.md, status.md) are completely hidden from the skill list presented to Claude at conversation start. This means Claude has no awareness these commands exist.
When a user explicitly types /codex:review in conversation, Claude cannot route to it because it's not in the visible skill list. In practice, Claude either:
- Silently reroutes to a different command (e.g.,
codex:rescue) that IS visible, or - Tells the user the command doesn't exist
Both outcomes are wrong. The user asked for a specific command by name and didn't get it.
Root Cause
disable-model-invocation: true conflates two separate concerns:
- Preventing proactive model invocation (Claude shouldn't spontaneously decide to run a review)
- Making the model aware a command exists (so it can route explicit user requests)
Currently one flag controls both. Commands with the flag set are invisible to the model entirely, even when the user explicitly requests them.
Affected Commands
| Command | Has flag | In skill list |
|---|---|---|
review |
yes | no |
adversarial-review |
yes | no |
cancel |
yes | no |
result |
yes | no |
status |
yes | no |
rescue |
no | yes |
setup |
no | yes |
Suggested Fix
Separate the two concerns. Options:
- Option A: Add commands with
disable-model-invocation: trueto the skill list but mark them as user-initiated only, so Claude knows they exist but won't proactively call them. - Option B: Ensure the Skill tool resolver can match user-typed
/codex:reviewto the command file even when the command isn't in the proactive skill list. - Option C: Introduce a second frontmatter key (e.g.,
hidden: truevsdisable-model-invocation: true) to distinguish "hide from model entirely" from "don't let model call proactively."
Environment
- codex-cli 0.117.0
- Plugin version 1.0.3
- Claude Code on Windows 11
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing how disable-model-invocation is processed when building the skill list and resolving user-typed commands. Compare proactive skill visibility with explicit /codex:review routing, then verify that disabled commands remain non-proactive but explicit requests resolve correctly.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 48/100