zhimin-z commited on
Commit
5af237b
·
1 Parent(s): cf8c424
Files changed (5) hide show
  1. Claude Code.json +7 -3
  2. Codex CLI.json +8 -0
  3. Gemini CLI.json +7 -3
  4. Grok CLI.json +7 -3
  5. OpenAI Codex.json +0 -4
Claude Code.json CHANGED
@@ -1,4 +1,8 @@
1
  {
2
- "id": "claude",
3
- "provider": "Anthropic"
4
- }
 
 
 
 
 
1
  {
2
+ "provider": "Anthropic",
3
+ "bin": "claude",
4
+ "promptStyle": "flag",
5
+ "initArgs": ["--output-format", "text", "--max-turns", "1", "--dangerously-skip-permissions"],
6
+ "followupStyle": "continue",
7
+ "followupArgs": ["--continue", "--output-format", "text", "--max-turns", "1", "--dangerously-skip-permissions"]
8
+ }
Codex CLI.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "OpenAI",
3
+ "bin": "codex",
4
+ "promptStyle": "exec",
5
+ "initArgs": ["--full-auto"],
6
+ "followupStyle": "resume",
7
+ "followupArgs": ["--full-auto"]
8
+ }
Gemini CLI.json CHANGED
@@ -1,4 +1,8 @@
1
  {
2
- "id": "gemini",
3
- "provider": "Google"
4
- }
 
 
 
 
 
1
  {
2
+ "provider": "Google",
3
+ "bin": "gemini",
4
+ "promptStyle": "flag",
5
+ "initArgs": ["--yolo"],
6
+ "followupStyle": "replay",
7
+ "followupArgs": ["--yolo"]
8
+ }
Grok CLI.json CHANGED
@@ -1,4 +1,8 @@
1
  {
2
- "id": "grok",
3
- "provider": "xAI"
4
- }
 
 
 
 
 
1
  {
2
+ "provider": "xAI",
3
+ "bin": "grok",
4
+ "promptStyle": "flag",
5
+ "initArgs": [],
6
+ "followupStyle": "replay",
7
+ "followupArgs": []
8
+ }
OpenAI Codex.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "id": "codex",
3
- "provider": "OpenAI"
4
- }