Ambients Suggestions feature uses `UserPromptSubmit` hook without `Stop` hook afterwards
What version of the Codex App are you using (From “About Codex” dialog)?
Version 26.415.40636 (1799)
What subscription do you have?
Pro
What platform is your computer?
Darwin 25.4.0 arm64 arm
What issue are you seeing?
I am using Codex CLI/App with Unity Editor. I wrote a custom Unity AI Agent Connector that enables Codex to behave appropriately in a Unity environment, especially in an AI-agentic loop. During agent work, I need to show in the UnityEditor that the task is in progress and its status, and block any user input to prevent interference with the agent work.
For that, I am utilizing 2 hooks: UserPromptSubmit and Stop.
It worked great until the recent CodexApp update that added ambient suggestions feature. It looks like they run after any thread is done and/or archived, and call the UserPromptSubmit hook without Stop at the end. That led to infinite "In progress" task in the Unity Editor
Here is how it looks in the Unity Editor:
<img width="554" height="333" alt="Image" src="https://github.com/user-attachments/assets/6585e30a-7b90-49e1-b2a9-9ab09b900fe2" />
My hooks.json:
{
"hooks": {
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "/bin/sh -lc 'dir=\"$PWD\"; while :; do script=\"$dir/.codex/hooks/unity-ai-agent-connector/user_prompt_submit.py\"; if [ -f \"$script\" ]; then exec /usr/bin/python3 \"$script\"; fi; parent=$(dirname \"$dir\"); if [ \"$parent\" = \"$dir\" ]; then printf \"%s\\n\" \"Managed Codex hook script not found: /.codex/hooks/unity-ai-agent-connector/user_prompt_submit.py\" >&2; exit 127; fi; dir=\"$parent\"; done'",
"timeout": 610,
"statusMessage": "Starting Unity task"
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "/bin/sh -lc 'dir=\"$PWD\"; while :; do script=\"$dir/.codex/hooks/unity-ai-agent-connector/stop.py\"; if [ -f \"$script\" ]; then exec /usr/bin/python3 \"$script\"; fi; parent=$(dirname \"$dir\"); if [ \"$parent\" = \"$dir\" ]; then printf \"%s\\n\" \"Managed Codex hook script not found: /.codex/hooks/unity-ai-agent-connector/stop.py\" >&2; exit 127; fi; dir=\"$parent\"; done'",
"timeout": 610,
"statusMessage": "Ending Unity task"
}
]
}
]
}
}
A few thoughts on how that might be fixed:
- Being able to activate/deactivate Ambients Suggestions feature on the project level (Codex App settings,
config.toml, etc)
— _[I doubt you do that, cause it really has a product value]_
- Don't run hooks for Ambient Suggestion feature
— _[still not the best solution]_
- Fix running
Stophooks
— _[will be a workaround, cause it is still not obvious why should I wait for something CodexApp is doing in the background]_
- Being able to control which hook should be run during Ambient Suggestion. In the
hooks.jsonset something likerunWithAmbientSuggestionsfor each hook (withtrueby default)
Severity:
This thing is really annoying. Thankfully, my connector has a Force End feature, which is a workaround for now
What steps can reproduce the bug?
Already explained in the What issue are you seeing? field
What is the expected behavior?
Already explained in the What issue are you seeing? field
Additional information
_No response_
This issue has 3 comments on GitHub. Read the full discussion on GitHub ↗