-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathcodex_executor.py
More file actions
478 lines (398 loc) · 13 KB
/
codex_executor.py
File metadata and controls
478 lines (398 loc) · 13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
"""
Codex CLI Execution Helpers
Python wrappers for Codex CLI commands with intelligent features:
- Always uses `codex exec` (never plain `codex` - critical for Claude Code)
- Intelligent model selection (gpt-5 vs gpt-5-codex)
- Sandbox mode helpers (read-only, workspace-write, danger-full-access)
- Session management (start, resume, list)
- Error handling and user notifications
"""
import subprocess
import json
from typing import Dict, Optional, List, Tuple
from dataclasses import dataclass
from enum import Enum
class CodexModel(Enum):
"""Codex model types."""
GPT5 = "gpt-5" # General high reasoning
GPT5_CODEX = "gpt-5-codex" # Code editing specialized
class SandboxMode(Enum):
"""Codex sandbox modes."""
READ_ONLY = "read-only" # Safe analysis (default)
WORKSPACE_WRITE = "workspace-write" # File modifications
DANGER_FULL_ACCESS = "danger-full-access" # Network access
class ReasoningEffort(Enum):
"""Model reasoning effort levels."""
LOW = "low"
MEDIUM = "medium"
HIGH = "high" # Default
@dataclass
class CodexResult:
"""Result from Codex CLI execution."""
success: bool
stdout: str
stderr: str
return_code: int
command: str
session_id: Optional[str] = None
model_used: Optional[str] = None
class CodexExecutor:
"""
Python wrappers for Codex CLI commands.
**CRITICAL**: Always uses `codex exec` not plain `codex`.
Plain `codex` fails in Claude Code (non-terminal environment).
"""
def __init__(self, working_dir: Optional[str] = None):
"""
Initialize Codex executor.
Args:
working_dir: Optional working directory for Codex commands
"""
self.working_dir = working_dir
def exec_analysis(
self,
prompt: str,
model: CodexModel = CodexModel.GPT5,
reasoning: ReasoningEffort = ReasoningEffort.HIGH,
enable_search: bool = False
) -> CodexResult:
"""
Execute read-only analysis task.
Args:
prompt: Task description
model: Codex model to use (default: GPT5)
reasoning: Reasoning effort (default: HIGH)
enable_search: Enable web search (default: False)
Returns:
CodexResult with execution details
"""
return self._exec_command(
prompt=prompt,
model=model,
sandbox=SandboxMode.READ_ONLY,
reasoning=reasoning,
enable_search=enable_search
)
def exec_edit(
self,
prompt: str,
model: CodexModel = CodexModel.GPT5_CODEX,
reasoning: ReasoningEffort = ReasoningEffort.HIGH,
full_auto: bool = True
) -> CodexResult:
"""
Execute code editing task.
Args:
prompt: Task description
model: Codex model to use (default: GPT5_CODEX - specialized for coding)
reasoning: Reasoning effort (default: HIGH)
full_auto: Run in full-auto mode (default: True)
Returns:
CodexResult with execution details
"""
return self._exec_command(
prompt=prompt,
model=model,
sandbox=SandboxMode.WORKSPACE_WRITE,
reasoning=reasoning,
full_auto=full_auto
)
def exec_with_search(
self,
prompt: str,
model: CodexModel = CodexModel.GPT5,
sandbox: SandboxMode = SandboxMode.READ_ONLY,
reasoning: ReasoningEffort = ReasoningEffort.HIGH
) -> CodexResult:
"""
Execute task with web search enabled.
Args:
prompt: Task description
model: Codex model to use (default: GPT5)
sandbox: Sandbox mode (default: READ_ONLY)
reasoning: Reasoning effort (default: HIGH)
Returns:
CodexResult with execution details
"""
return self._exec_command(
prompt=prompt,
model=model,
sandbox=sandbox,
reasoning=reasoning,
enable_search=True
)
def resume_session(self, session_id: Optional[str] = None) -> CodexResult:
"""
Resume Codex session.
Args:
session_id: Optional session ID (uses --last if not provided)
Returns:
CodexResult with execution details
"""
if session_id:
# Resume specific session
cmd = ["codex", "exec", "resume", session_id]
else:
# Resume last session
cmd = ["codex", "exec", "resume", "--last"]
return self._run_command(cmd, command_type="resume")
def list_sessions(self) -> List[Dict[str, str]]:
"""
List recent Codex sessions.
Returns:
List of session dictionaries (id, description, timestamp)
"""
# Note: codex CLI doesn't have a direct list command
# This would need to be implemented based on Codex CLI session storage
# For now, return empty list
return []
def _exec_command(
self,
prompt: str,
model: CodexModel,
sandbox: SandboxMode,
reasoning: ReasoningEffort,
enable_search: bool = False,
full_auto: bool = False
) -> CodexResult:
"""
Execute Codex CLI command.
**CRITICAL**: Always uses `codex exec` not plain `codex`.
Args:
prompt: Task description
model: Codex model
sandbox: Sandbox mode
reasoning: Reasoning effort
enable_search: Enable web search
full_auto: Full auto mode
Returns:
CodexResult with execution details
"""
# Build command - ALWAYS use `codex exec`
cmd = [
"codex",
"exec",
"-m", model.value,
"-s", sandbox.value,
"-c", f"model_reasoning_effort={reasoning.value}"
]
# Add optional flags
if enable_search:
cmd.append("--search")
if full_auto:
cmd.append("--full-auto")
# Always skip git repo check for smoother execution
cmd.append("--skip-git-repo-check")
# Add working directory if specified
if self.working_dir:
cmd.extend(["-C", self.working_dir])
# Add prompt
cmd.append(prompt)
return self._run_command(cmd, command_type="exec", model=model.value)
def _run_command(
self,
cmd: List[str],
command_type: str,
model: Optional[str] = None
) -> CodexResult:
"""
Run Codex CLI command.
Args:
cmd: Command list
command_type: Type of command (exec, resume)
model: Optional model name for metadata
Returns:
CodexResult with execution details
"""
# Convert command to string for display
cmd_str = " ".join(cmd)
print(f"🚀 Executing Codex CLI command:")
print(f" {cmd_str}")
print()
try:
# Execute command
result = subprocess.run(
cmd,
capture_output=True,
text=True,
timeout=300 # 5 minute timeout
)
success = result.returncode == 0
if success:
print("✅ Codex execution successful")
else:
print(f"❌ Codex execution failed (exit code {result.returncode})")
return CodexResult(
success=success,
stdout=result.stdout,
stderr=result.stderr,
return_code=result.returncode,
command=cmd_str,
model_used=model
)
except subprocess.TimeoutExpired:
error_msg = "Codex command timed out after 5 minutes"
print(f"❌ {error_msg}")
return CodexResult(
success=False,
stdout="",
stderr=error_msg,
return_code=-1,
command=cmd_str,
model_used=model
)
except FileNotFoundError:
error_msg = """
Codex CLI not found!
Please ensure:
1. Codex CLI is installed
2. Codex is in your PATH
3. Try: which codex
Installation:
Visit: https://github.com/openai/codex
"""
print(f"❌ {error_msg}")
return CodexResult(
success=False,
stdout="",
stderr=error_msg,
return_code=-1,
command=cmd_str,
model_used=model
)
except Exception as e:
error_msg = f"Unexpected error: {str(e)}"
print(f"❌ {error_msg}")
return CodexResult(
success=False,
stdout="",
stderr=error_msg,
return_code=-1,
command=cmd_str,
model_used=model
)
def generate_command_string(
self,
prompt: str,
model: CodexModel,
sandbox: SandboxMode,
reasoning: ReasoningEffort = ReasoningEffort.HIGH,
enable_search: bool = False,
full_auto: bool = False
) -> str:
"""
Generate Codex CLI command string (for documentation).
Args:
prompt: Task description
model: Codex model
sandbox: Sandbox mode
reasoning: Reasoning effort
enable_search: Enable web search
full_auto: Full auto mode
Returns:
Command string
"""
cmd = f"codex exec -m {model.value} -s {sandbox.value} \\\n"
cmd += f" -c model_reasoning_effort={reasoning.value} \\\n"
if enable_search:
cmd += " --search \\\n"
if full_auto:
cmd += " --full-auto \\\n"
cmd += " --skip-git-repo-check \\\n"
if self.working_dir:
cmd += f" -C {self.working_dir} \\\n"
cmd += f' "{prompt}"'
return cmd
def main():
"""Demo usage of CodexExecutor."""
import argparse
parser = argparse.ArgumentParser(description="Codex CLI Execution Helper")
parser.add_argument(
"action",
choices=["analysis", "edit", "search", "resume"],
help="Action to perform"
)
parser.add_argument(
"--prompt",
help="Task prompt (required for analysis, edit, search)"
)
parser.add_argument(
"--model",
choices=["gpt-5", "gpt-5-codex"],
default="gpt-5",
help="Codex model to use"
)
parser.add_argument(
"--working-dir",
help="Working directory"
)
parser.add_argument(
"--dry-run",
action="store_true",
help="Show command without executing"
)
args = parser.parse_args()
executor = CodexExecutor(working_dir=args.working_dir)
# Map string to enum
model_map = {
"gpt-5": CodexModel.GPT5,
"gpt-5-codex": CodexModel.GPT5_CODEX
}
model = model_map[args.model]
if args.action in ["analysis", "edit", "search"] and not args.prompt:
print("❌ --prompt is required for this action")
return
if args.dry_run:
if args.action == "analysis":
cmd = executor.generate_command_string(
prompt=args.prompt,
model=model,
sandbox=SandboxMode.READ_ONLY,
reasoning=ReasoningEffort.HIGH
)
elif args.action == "edit":
cmd = executor.generate_command_string(
prompt=args.prompt,
model=CodexModel.GPT5_CODEX,
sandbox=SandboxMode.WORKSPACE_WRITE,
reasoning=ReasoningEffort.HIGH,
full_auto=True
)
elif args.action == "search":
cmd = executor.generate_command_string(
prompt=args.prompt,
model=model,
sandbox=SandboxMode.READ_ONLY,
reasoning=ReasoningEffort.HIGH,
enable_search=True
)
else: # resume
cmd = "codex exec resume --last"
print("Generated command:")
print(cmd)
return
# Execute action
if args.action == "analysis":
result = executor.exec_analysis(prompt=args.prompt, model=model)
elif args.action == "edit":
result = executor.exec_edit(prompt=args.prompt, model=model)
elif args.action == "search":
result = executor.exec_with_search(prompt=args.prompt, model=model)
elif args.action == "resume":
result = executor.resume_session()
# Display result
print("\n" + "=" * 64)
print("RESULT")
print("=" * 64)
print(f"Success: {result.success}")
print(f"Return Code: {result.return_code}")
print(f"Model: {result.model_used}")
print(f"Command: {result.command}")
if result.stdout:
print("\nStdout:")
print(result.stdout)
if result.stderr:
print("\nStderr:")
print(result.stderr)
if __name__ == "__main__":
main()