-
-
Notifications
You must be signed in to change notification settings - Fork 6k
Description
Summary
In Codex, the requesting-code-review workflow still assumes a Task/subagent dispatch path that the current native-skill installation does not provide.
The result is that Codex reaches a required review step, then emits a fallback message like:
I can’t dispatch the requesting-code-review subagent here because this environment doesn’t expose the Task/subagent tool it expects.
and continues with a degraded branch-finishing flow instead of performing the intended review.
Why this looks like a Superpowers bug
The current Codex install/docs path only exposes skills/ via native skill discovery:
.codex/INSTALL.mddocs/README.codex.md
Those instructions symlink ~/.codex/superpowers/skills into ~/.agents/skills/superpowers, but they do not install agents/code-reviewer.md or describe any Codex-compatible substitute for it.
At the same time, skills/requesting-code-review/SKILL.md still says:
- "Dispatch superpowers:code-reviewer subagent..."
- "Use Task tool with superpowers:code-reviewer type..."
So the Codex-native installation path appears inconsistent with the skill's runtime assumptions.
Reproduction
- Install Superpowers in Codex using the current native skill instructions from
.codex/INSTALL.md/docs/README.codex.md. - Complete implementation work in Codex and invoke a workflow that reaches
requesting-code-reviewbefore merge/finalization. - Observe that Codex cannot execute the requested review step because there is no
Task/subagent tool available in this environment. - The assistant falls back to a manual merge/finish flow and skips the intended reviewer dispatch.
Expected
One of these should happen in Codex:
requesting-code-reviewhas an explicit Codex fallback that runs the review inline in the current session usingskills/requesting-code-review/code-reviewer.mdas the checklist/template.- The Codex install/docs also install and wire up whatever agent/review mechanism the skill expects.
- The skill clearly marks this path as unsupported in Codex and routes to an alternate verification/review workflow instead of failing at runtime.
Actual
The Codex-native install path makes the skill discoverable, but the skill still requires a dispatch mechanism that Codex does not provide, so the review step silently degrades into "can't do that here" behavior.
Extra context
This also seems to conflict with the Codex direction mentioned in RELEASE-NOTES.md for Codex support:
- "Tool mapping for Codex: TodoWrite→update_plan, subagents→manual fallback"
- "Simplified subagent handling (manual work instead of delegation)"
requesting-code-review does not appear to have received that Codex fallback treatment.
Related: