My codex's config.toml is already have something like:
`# config.toml
[notice.model_migrations]
"gpt-5.1-codex-max" = "gpt-5.2-codex"
[mcp_servers.playwright]
args = ["@playwright/mcp@latest"]
command = "npx"
[features]
multi_agent = true
`
the default behaver of code-notify is append
# Code-Notify: Desktop notifications notify = ["bash", "-c", "/opt/homebrew/Cellar/code-notify/1.6.2/lib/code-notify/core/notifier.sh stop codex"]
to tail.
As it's a toml config. the lines behind [features] gonna be treated as features's children.
And error shows:
`Error: /Volumes/........./.codex/config.toml:22:10: invalid type: sequence, expected a boolean
Caused by:
invalid type: sequence, expected a boolean
in features
`
So, maybe, add notify = "......" before the first [xxxxx] section cloud be a solution
This is a very nice repo, Thank you!
My codex's config.toml is already have something like:
`# config.toml
[notice.model_migrations]
"gpt-5.1-codex-max" = "gpt-5.2-codex"
[mcp_servers.playwright]
args = ["@playwright/mcp@latest"]
command = "npx"
[features]
multi_agent = true
`
the default behaver of code-notify is append
# Code-Notify: Desktop notifications notify = ["bash", "-c", "/opt/homebrew/Cellar/code-notify/1.6.2/lib/code-notify/core/notifier.sh stop codex"]to tail.
As it's a toml config. the lines behind [features] gonna be treated as features's children.
And error shows:
`Error: /Volumes/........./.codex/config.toml:22:10: invalid type: sequence, expected a boolean
Caused by:
invalid type: sequence, expected a boolean
in
features`
So, maybe, add notify = "......" before the first [xxxxx] section cloud be a solution
This is a very nice repo, Thank you!