We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4461a4 commit aceddb6Copy full SHA for aceddb6
conf/cli_clients/codex.json
@@ -3,8 +3,7 @@
3
"command": "codex",
4
"additional_args": [
5
"--json",
6
- "--dangerously-bypass-approvals-and-sandbox",
7
- "--search"
+ "--dangerously-bypass-approvals-and-sandbox"
8
],
9
"env": {},
10
"roles": {
tests/test_clink_tool.py
@@ -59,6 +59,8 @@ def test_registry_lists_roles():
59
roles = registry.list_roles("gemini")
60
assert "default" in roles
61
assert "default" in registry.list_roles("codex")
62
+ codex_client = registry.get_client("codex")
63
+ assert codex_client.config_args == ["--json", "--dangerously-bypass-approvals-and-sandbox"]
64
65
66
@pytest.mark.asyncio
0 commit comments