-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtool_runtime.py
More file actions
732 lines (629 loc) · 25.9 KB
/
tool_runtime.py
File metadata and controls
732 lines (629 loc) · 25.9 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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
import argparse
import atexit
import itertools
import os
import pty
import re
import select
import shutil
import signal
import struct
import subprocess
import termios
import threading
import time
from pathlib import Path
from typing import Optional, Union
import sys
from agent_base.utils import PROJECT_ROOT, load_dotenv
from agent_base.tools.tooling import (
ToolBase,
command_safety_issue,
sanitized_subprocess_env,
validate_tool_path,
workspace_root,
)
DEFAULT_BUFFER_LIMIT = 200000
DEFAULT_OUTPUT_CHARS = 20000
DEFAULT_YIELD_MS = 200
REPEAT_COLLAPSE_THRESHOLD = 3
def _default_shell() -> str:
return shutil.which("bash") or "/bin/bash"
def _resolve_cwd(path_value: Optional[str], *, base_root: Optional[Path] = None) -> Path:
if not path_value:
return (base_root or workspace_root()).resolve()
return validate_tool_path(path_value, "Working directory", base_root=base_root)
def _set_terminal_size(fd: int, rows: int, cols: int) -> None:
winsize = struct.pack("HHHH", rows, cols, 0, 0)
try:
import fcntl
fcntl.ioctl(fd, termios.TIOCSWINSZ, winsize)
except (ImportError, OSError):
return
def _disable_echo(fd: int) -> None:
try:
attrs = termios.tcgetattr(fd)
attrs[3] &= ~termios.ECHO
termios.tcsetattr(fd, termios.TCSANOW, attrs)
except termios.error:
return
def _collapse_repeated_lines(text: str, *, threshold: int = REPEAT_COLLAPSE_THRESHOLD) -> str:
if not text:
return text
lines = text.splitlines(keepends=True)
if not lines:
return text
collapsed: list[str] = []
current = lines[0]
count = 1
for line in lines[1:]:
if line == current:
count += 1
continue
if count >= threshold:
collapsed.append(current)
collapsed.append(f"[previous line repeated {count - 1} additional times]\n")
else:
collapsed.extend([current] * count)
current = line
count = 1
if count >= threshold:
collapsed.append(current)
collapsed.append(f"[previous line repeated {count - 1} additional times]\n")
else:
collapsed.extend([current] * count)
return "".join(collapsed)
def _bounded_output(text: str, *, max_output_chars: int = DEFAULT_OUTPUT_CHARS) -> str:
if not text:
return text
compressed = _collapse_repeated_lines(text)
if len(compressed) <= max_output_chars:
return compressed
omitted = len(compressed) - max_output_chars
suffix = f"\n[output truncated: omitted {omitted} chars]\n"
keep = max(0, max_output_chars - len(suffix))
return compressed[:keep] + suffix
class Bash(ToolBase):
name = "Bash"
description = (
"Run a local bash command and return stdout and stderr. This is the primary local execution tool for "
"shell commands, path operations, ripgrep, git, temporary python3 heredoc scripts, parsing, validation, "
"and local result transformation."
)
parameters = {
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "The shell command to execute.",
},
"timeout": {
"type": "integer",
"description": "Timeout in seconds. Default is 30.",
},
"workdir": {
"type": "string",
"description": "Optional working directory for the command. Defaults to the current workspace root.",
},
"max_output_chars": {
"type": "integer",
"description": f"Maximum combined stdout/stderr characters returned after repeated-line compression. Default is {DEFAULT_OUTPUT_CHARS}.",
},
},
"required": ["command"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[Bash] {exc}"
base_root = kwargs.get("workspace_root")
runtime_deadline = kwargs.get("runtime_deadline")
command = str(params["command"])
workdir = params.get("workdir")
try:
timeout = int(params.get("timeout", 30))
max_output_chars = int(params.get("max_output_chars", DEFAULT_OUTPUT_CHARS))
except (TypeError, ValueError):
return "[Bash] timeout and max_output_chars must be integers."
issue = command_safety_issue(str(command))
if issue:
return f"[Bash] Blocked by safety policy: {issue}"
try:
cwd = _resolve_cwd(workdir, base_root=base_root)
except ValueError as exc:
return f"[Bash] Invalid or blocked working directory: {exc}"
if not cwd.exists():
return f"[Bash] Working directory does not exist: {cwd}"
if not cwd.is_dir():
return f"[Bash] Working directory is not a directory: {cwd}"
if timeout <= 0:
return "[Bash] timeout must be > 0."
if max_output_chars <= 0:
return "[Bash] max_output_chars must be > 0."
effective_timeout: float = float(timeout)
if runtime_deadline is not None:
remaining = float(runtime_deadline) - time.time()
if remaining <= 0:
return "[Bash] Agent runtime limit reached before command execution."
effective_timeout = min(effective_timeout, max(remaining, 0.001))
try:
proc = subprocess.run(
command,
shell=True,
capture_output=True,
text=True,
timeout=effective_timeout,
cwd=str(cwd),
env=sanitized_subprocess_env(base_root=base_root),
executable=shutil.which("bash") or "/bin/bash",
)
except subprocess.TimeoutExpired:
return "[Bash] TimeoutError: Execution timed out."
except (OSError, subprocess.SubprocessError) as exc:
return f"[Bash] Error executing command: {exc}"
parts = [f"exit_code: {proc.returncode}"]
stdout = _bounded_output(proc.stdout, max_output_chars=max_output_chars)
stderr = _bounded_output(proc.stderr, max_output_chars=max_output_chars)
if stdout:
parts.append(f"stdout:\n{stdout}")
if stderr:
parts.append(f"stderr:\n{stderr}")
return "\n".join(parts)
class TerminalSession:
def __init__(self, cwd: Path, shell: str, rows: int, cols: int, *, base_root: Optional[Path] = None):
self.cwd = cwd
self.shell = shell
self.rows = rows
self.cols = cols
self._buffer_limit = DEFAULT_BUFFER_LIMIT
self._pending_output = ""
self._dropped_output_chars = 0
self._lock = threading.Lock()
master_fd, slave_fd = pty.openpty()
_set_terminal_size(slave_fd, rows, cols)
_disable_echo(slave_fd)
env = sanitized_subprocess_env(base_root=base_root)
env.setdefault("TERM", "xterm-256color")
env.setdefault("PS1", "")
env.setdefault("PROMPT_COMMAND", "")
self._proc = subprocess.Popen(
[shell, "--noprofile", "--norc"],
stdin=slave_fd,
stdout=slave_fd,
stderr=slave_fd,
cwd=str(cwd),
env=env,
text=False,
close_fds=True,
start_new_session=True,
)
os.close(slave_fd)
self._master_fd = master_fd
self._reader = threading.Thread(target=self._reader_loop, daemon=True)
self._reader.start()
@property
def pid(self) -> int:
return self._proc.pid
@property
def alive(self) -> bool:
return self._proc.poll() is None
@property
def returncode(self) -> Optional[int]:
return self._proc.poll()
def _reader_loop(self) -> None:
while True:
try:
ready, _, _ = select.select([self._master_fd], [], [], 0.1)
except (OSError, ValueError):
break
if not ready:
if self._proc.poll() is not None:
break
continue
try:
data = os.read(self._master_fd, 4096)
except OSError:
break
if not data:
if self._proc.poll() is not None:
break
continue
decoded = data.decode("utf-8", errors="replace")
with self._lock:
self._pending_output += decoded
overflow = len(self._pending_output) - self._buffer_limit
if overflow > 0:
self._pending_output = self._pending_output[overflow:]
self._dropped_output_chars += overflow
try:
os.close(self._master_fd)
except OSError:
pass
def write(self, data: str) -> None:
if not self.alive:
raise RuntimeError("session is not running")
os.write(self._master_fd, data.encode("utf-8", errors="replace"))
def read(self, yield_time_ms: int = DEFAULT_YIELD_MS, max_output_chars: int = DEFAULT_OUTPUT_CHARS) -> dict:
if yield_time_ms > 0:
time.sleep(yield_time_ms / 1000.0)
with self._lock:
output = self._pending_output[:max_output_chars]
self._pending_output = self._pending_output[max_output_chars:]
remaining_output_chars = len(self._pending_output)
dropped_output_chars = self._dropped_output_chars
self._dropped_output_chars = 0
return {
"alive": self.alive,
"returncode": self.returncode,
"output": output,
"remaining_output_chars": remaining_output_chars,
"dropped_output_chars": dropped_output_chars,
"truncated": remaining_output_chars > 0,
}
def interrupt(self, *, max_output_chars: int = DEFAULT_OUTPUT_CHARS) -> dict:
if not self.alive:
raise RuntimeError("session is not running")
os.write(self._master_fd, b"\x03")
return self.read(yield_time_ms=DEFAULT_YIELD_MS, max_output_chars=max_output_chars)
def terminate(self, force: bool = False) -> Optional[int]:
if self.alive:
try:
os.killpg(os.getpgid(self.pid), signal.SIGKILL if force else signal.SIGTERM)
except ProcessLookupError:
pass
except OSError:
self._proc.kill() if force else self._proc.terminate()
try:
self._proc.wait(timeout=2 if not force else 1)
except subprocess.TimeoutExpired:
if not force:
return self.terminate(force=True)
return self.returncode
class TerminalSessionManager:
def __init__(self):
self._lock = threading.Lock()
self._counter = itertools.count(1)
self._sessions: dict[str, TerminalSession] = {}
def start(self, cwd: Path, shell: str, rows: int, cols: int, *, base_root: Optional[Path] = None) -> tuple[str, TerminalSession]:
session = TerminalSession(cwd=cwd, shell=shell, rows=rows, cols=cols, base_root=base_root)
session_id = f"term_{next(self._counter)}"
with self._lock:
self._sessions[session_id] = session
return session_id, session
def get(self, session_id: str) -> Optional[TerminalSession]:
with self._lock:
return self._sessions.get(session_id)
def pop(self, session_id: str) -> Optional[TerminalSession]:
with self._lock:
return self._sessions.pop(session_id, None)
def cleanup(self) -> None:
with self._lock:
sessions = list(self._sessions.items())
self._sessions.clear()
for _, session in sessions:
session.terminate(force=True)
SESSION_MANAGER = TerminalSessionManager()
atexit.register(SESSION_MANAGER.cleanup)
def _format_terminal_response(
prefix: str,
session_id: str,
payload: dict,
cwd: Optional[Path] = None,
shell: Optional[str] = None,
pid: Optional[int] = None,
) -> str:
lines = [prefix, f"session_id: {session_id}"]
if pid is not None:
lines.append(f"pid: {pid}")
if cwd is not None:
lines.append(f"cwd: {cwd}")
if shell is not None:
lines.append(f"shell: {shell}")
if "alive" in payload:
lines.append(f"alive: {str(payload['alive']).lower()}")
if "returncode" in payload:
lines.append(f"returncode: {payload['returncode']}")
if "truncated" in payload:
lines.append(f"truncated: {str(payload['truncated']).lower()}")
if "remaining_output_chars" in payload:
lines.append(f"remaining_output_chars: {payload['remaining_output_chars']}")
if "dropped_output_chars" in payload:
lines.append(f"dropped_output_chars: {payload['dropped_output_chars']}")
if "output" in payload:
lines.append("output:")
lines.append(payload["output"])
return "\n".join(lines)
class TerminalStart(ToolBase):
name = "TerminalStart"
description = "Start a persistent local terminal session backed by a PTY shell."
parameters = {
"type": "object",
"properties": {
"cwd": {
"type": "string",
"description": "Optional working directory for the terminal session. Default is the current workspace root.",
},
"shell": {
"type": "string",
"description": "Optional shell executable path. Default is bash.",
},
"rows": {
"type": "integer",
"description": "Terminal row count. Default is 30.",
},
"cols": {
"type": "integer",
"description": "Terminal column count. Default is 120.",
},
},
"required": [],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[TerminalStart] {exc}"
base_root = kwargs.get("workspace_root")
try:
cwd = _resolve_cwd(params.get("cwd"), base_root=base_root)
shell = params.get("shell") or _default_shell()
rows = int(params.get("rows", 30))
cols = int(params.get("cols", 120))
except ValueError as exc:
return f"[TerminalStart] {exc}"
except (TypeError, OverflowError):
return "[TerminalStart] rows and cols must be integers."
if not cwd.exists():
return f"[TerminalStart] Working directory does not exist: {cwd}"
if not cwd.is_dir():
return f"[TerminalStart] Working directory is not a directory: {cwd}"
if not Path(shell).exists() and shutil.which(shell) is None:
return f"[TerminalStart] Shell not found: {shell}"
if rows <= 0 or cols <= 0:
return "[TerminalStart] rows and cols must both be > 0."
try:
session_id, session = SESSION_MANAGER.start(cwd=cwd, shell=shell, rows=rows, cols=cols, base_root=base_root)
except (OSError, RuntimeError, subprocess.SubprocessError) as exc:
return f"[TerminalStart] Failed to start terminal session: {exc}"
return _format_terminal_response(
"[TerminalStart] Started terminal session.",
session_id=session_id,
payload={"alive": session.alive, "returncode": session.returncode},
cwd=cwd,
shell=shell,
pid=session.pid,
)
class TerminalWrite(ToolBase):
name = "TerminalWrite"
description = "Write input into an existing terminal session and read back newly produced output."
parameters = {
"type": "object",
"properties": {
"session_id": {
"type": "string",
"description": "The terminal session ID returned by TerminalStart.",
},
"input": {
"type": "string",
"description": "The text to send to the terminal session.",
},
"append_newline": {
"type": "boolean",
"description": "Whether to append a newline after the provided input. Default is true.",
},
"yield_time_ms": {
"type": "integer",
"description": "Milliseconds to wait before reading output. Default is 200.",
},
"max_output_chars": {
"type": "integer",
"description": "Maximum number of output characters to return. Default is 20000.",
},
},
"required": ["session_id", "input"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[TerminalWrite] {exc}"
session_id = str(params["session_id"])
input_text = str(params["input"])
append_newline = bool(params.get("append_newline", True))
try:
yield_time_ms = int(params.get("yield_time_ms", DEFAULT_YIELD_MS))
max_output_chars = int(params.get("max_output_chars", DEFAULT_OUTPUT_CHARS))
except (TypeError, ValueError):
return "[TerminalWrite] yield_time_ms and max_output_chars must be integers."
issue = command_safety_issue(input_text)
if issue:
return f"[TerminalWrite] Blocked by safety policy: {issue}"
session = SESSION_MANAGER.get(session_id)
if session is None:
return f"[TerminalWrite] Session not found: {session_id}"
if max_output_chars <= 0:
return "[TerminalWrite] max_output_chars must be > 0."
if yield_time_ms < 0:
return "[TerminalWrite] yield_time_ms must be >= 0."
payload_input = input_text + ("\n" if append_newline else "")
try:
session.write(payload_input)
payload = session.read(yield_time_ms=yield_time_ms, max_output_chars=max_output_chars)
except (OSError, RuntimeError, subprocess.SubprocessError) as exc:
return f"[TerminalWrite] Failed to write to session {session_id}: {exc}"
return _format_terminal_response("[TerminalWrite] Session updated.", session_id=session_id, payload=payload)
class TerminalRead(ToolBase):
name = "TerminalRead"
description = "Read unread output from an existing terminal session."
parameters = {
"type": "object",
"properties": {
"session_id": {
"type": "string",
"description": "The terminal session ID returned by TerminalStart.",
},
"yield_time_ms": {
"type": "integer",
"description": "Milliseconds to wait before reading output. Default is 200.",
},
"max_output_chars": {
"type": "integer",
"description": "Maximum number of output characters to return. Default is 20000.",
},
},
"required": ["session_id"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[TerminalRead] {exc}"
session_id = str(params["session_id"])
try:
yield_time_ms = int(params.get("yield_time_ms", DEFAULT_YIELD_MS))
max_output_chars = int(params.get("max_output_chars", DEFAULT_OUTPUT_CHARS))
except (TypeError, ValueError):
return "[TerminalRead] yield_time_ms and max_output_chars must be integers."
session = SESSION_MANAGER.get(session_id)
if session is None:
return f"[TerminalRead] Session not found: {session_id}"
if max_output_chars <= 0:
return "[TerminalRead] max_output_chars must be > 0."
if yield_time_ms < 0:
return "[TerminalRead] yield_time_ms must be >= 0."
try:
payload = session.read(yield_time_ms=yield_time_ms, max_output_chars=max_output_chars)
except (OSError, RuntimeError, subprocess.SubprocessError) as exc:
return f"[TerminalRead] Failed to read session {session_id}: {exc}"
return _format_terminal_response("[TerminalRead] Session output fetched.", session_id=session_id, payload=payload)
class TerminalKill(ToolBase):
name = "TerminalKill"
description = "Terminate an existing terminal session and release its resources."
parameters = {
"type": "object",
"properties": {
"session_id": {
"type": "string",
"description": "The terminal session ID returned by TerminalStart.",
},
"force": {
"type": "boolean",
"description": "Whether to force kill the terminal session immediately. Default is false.",
},
},
"required": ["session_id"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[TerminalKill] {exc}"
session_id = str(params["session_id"])
force = bool(params.get("force", False))
session = SESSION_MANAGER.pop(session_id)
if session is None:
return f"[TerminalKill] Session not found: {session_id}"
try:
returncode = session.terminate(force=force)
except (OSError, RuntimeError, subprocess.SubprocessError) as exc:
return f"[TerminalKill] Failed to terminate session {session_id}: {exc}"
return _format_terminal_response(
"[TerminalKill] Terminal session terminated.",
session_id=session_id,
payload={"alive": False, "returncode": returncode},
)
class TerminalInterrupt(ToolBase):
name = "TerminalInterrupt"
description = "Send Ctrl-C to the foreground process in an existing terminal session while keeping the session alive."
parameters = {
"type": "object",
"properties": {
"session_id": {
"type": "string",
"description": "The terminal session ID returned by TerminalStart.",
},
"max_output_chars": {
"type": "integer",
"description": "Maximum number of output characters to return after the interrupt. Default is 20000.",
},
},
"required": ["session_id"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[TerminalInterrupt] {exc}"
session_id = str(params["session_id"])
try:
max_output_chars = int(params.get("max_output_chars", DEFAULT_OUTPUT_CHARS))
except (TypeError, ValueError):
return "[TerminalInterrupt] max_output_chars must be an integer."
session = SESSION_MANAGER.get(session_id)
if session is None:
return f"[TerminalInterrupt] Session not found: {session_id}"
if max_output_chars <= 0:
return "[TerminalInterrupt] max_output_chars must be > 0."
try:
payload = session.interrupt(max_output_chars=max_output_chars)
except (OSError, RuntimeError, subprocess.SubprocessError) as exc:
return f"[TerminalInterrupt] Failed to interrupt session {session_id}: {exc}"
return _format_terminal_response(
"[TerminalInterrupt] Sent Ctrl-C to terminal session.",
session_id=session_id,
payload=payload,
)
def main(argv: Optional[list[str]] = None) -> int:
parser = argparse.ArgumentParser(description="Run runtime and terminal tools directly.")
subparsers = parser.add_subparsers(dest="tool", required=True)
bash_parser = subparsers.add_parser("bash", help="Run the Bash tool.")
bash_parser.add_argument("command")
bash_parser.add_argument("--timeout", type=int, default=30)
bash_parser.add_argument("--workdir")
terminal_parser = subparsers.add_parser("terminal", help="Run a minimal terminal session demo.")
terminal_parser.add_argument("input", help="Input to send after starting the session.")
terminal_parser.add_argument("--cwd")
terminal_parser.add_argument("--yield-time-ms", type=int, default=200)
args = parser.parse_args(argv)
load_dotenv(PROJECT_ROOT / ".env")
workdir_root = Path(args.workdir).expanduser().resolve() if getattr(args, "workdir", None) else None
if args.tool == "bash":
result = Bash().call(
{"command": args.command, "timeout": args.timeout, "workdir": args.workdir},
workspace_root=workdir_root,
)
print(result)
return 0
terminal_root = Path(args.cwd).expanduser().resolve() if args.cwd else workspace_root()
start_result = TerminalStart().call({"cwd": str(terminal_root)}, workspace_root=terminal_root)
print(start_result)
session_match = re.search(r"session_id: (term_\d+)", start_result)
if not session_match:
return 1
session_id = session_match.group(1)
write_result = TerminalWrite().call(
{
"session_id": session_id,
"input": args.input,
"yield_time_ms": args.yield_time_ms,
},
workspace_root=terminal_root,
)
print(write_result)
print(TerminalKill().call({"session_id": session_id}, workspace_root=terminal_root))
return 0
if __name__ == "__main__":
raise SystemExit(main(sys.argv[1:]))