Replies: 1 comment
-
|
I think there are two different surfaces being mixed together here.
The broader The closest coarse workaround is to disable remote plugin catalog support while leaving plugins themselves enabled: [features]
plugins = true
tool_search = true
tool_suggest = false
remote_plugin = falseThen restart Codex or start a fresh session. That should be understood as a workaround, not a precise “remote suggestions only” setting. It may also affect remote plugin install/update/share behavior, because it disables the remote plugin feature more broadly. For individual noisy suggestions, the supported per-item mechanism appears to be [tool_suggest]
disabled_tools = [
{ type = "plugin", id = "slack@openai-curated" },
{ type = "plugin", id = "github@openai-curated-remote" },
{ type = "connector", id = "connector_googlecalendar" },
]But this is per plugin/connector, not a global “no remote marketplace candidates” switch. So my current answer would be: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
After upgrading to
0.133.0, I started seeing much broader remote plugin/skill discovery during normal coding sessions. I tried settingtool_suggest = falseunder[features]inconfig.toml, andcodex features listconfirms it is disabled, but it does not seem to stop the broader discovery/search surface I am seeing.Is there a supported way to disable remote plugin/skill discovery while keeping local/project/installed tools and skills available? In particular, I am looking for a setting that excludes remote marketplace/plugin/skill candidates from default sessions without turning off
apps,plugins, or useful local/deferred tool discovery entirely.Beta Was this translation helpful? Give feedback.
All reactions