Spaces:
Running
Running
File size: 30,869 Bytes
399b80c | 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 | import json
import re
from typing import Any, Tuple, Union
from openspace.grounding.core.types import BackendType, ToolResult, ToolStatus
from openspace.grounding.core.session import BaseSession
from openspace.grounding.backends.shell.transport.connector import ShellConnector
from openspace.grounding.backends.shell.transport.local_connector import LocalShellConnector
from openspace.grounding.core.tool import BaseTool
from openspace.grounding.core.security.policies import SecurityPolicyManager
from openspace.llm import LLMClient
from openspace.utils.logging import Logger
logger = Logger.get_logger(__name__)
def _parse_shell_result(result: Any) -> Tuple[str, str, int]:
"""Parse a connector result dict into ``(stdout, stderr, returncode)``."""
if isinstance(result, dict):
stdout = (
result.get("content")
or result.get("output")
or result.get("stdout")
or ""
)
stderr = result.get("error") or result.get("stderr") or ""
rc = result.get("returncode", 0)
return stdout, stderr, rc
return str(result), "", 0
class ShellSession(BaseSession):
backend_type = BackendType.SHELL
def __init__(
self,
connector: Union[ShellConnector, LocalShellConnector],
*,
session_id: str,
security_manager: SecurityPolicyManager = None,
default_working_dir: str = None,
default_env: dict = None,
default_conda_env: str = None,
model: str = None,
use_clawwork_productivity: bool = False,
productivity_date: str = "default",
):
super().__init__(connector=connector, session_id=session_id,
backend_type=BackendType.SHELL)
self.security_manager = security_manager
self.default_working_dir = default_working_dir
self.default_env = default_env or {}
self.default_conda_env = default_conda_env
self.model = model
self.use_clawwork_productivity = use_clawwork_productivity
self.productivity_date = productivity_date or "default"
async def initialize(self):
self.tools = [
ShellAgentTool(
self,
security_manager=self.security_manager,
default_working_dir=self.default_working_dir,
default_env=self.default_env,
default_conda_env=self.default_conda_env,
model=self.model,
),
# ReadFileTool(self), # Disabled: replaced by productivity read_file when use_clawwork_productivity is True
WriteFileTool(self),
ListDirTool(self),
RunShellTool(self),
]
if not self.use_clawwork_productivity:
self.tools.insert(1, ReadFileTool(self))
if self.use_clawwork_productivity:
from openspace.grounding.backends.shell.productivity_tools import get_productivity_tools
extra = get_productivity_tools(
self,
data_path=self.default_working_dir,
current_date=self.productivity_date,
)
if extra:
self.tools.extend(extra)
logger.info("ClawWork productivity tools enabled: %s", [t.name for t in extra])
else:
logger.warning("use_clawwork_productivity is True but livebench not available; productivity tools not added.")
return {"tools": [t.name for t in self.tools]}
class PythonScriptTool(BaseTool):
_name = "_python_exec"
_description = "Internal helper: run python code."
def __init__(self, session: "ShellSession", default_working_dir: str = None, default_env: dict = None, default_conda_env: str = None):
self._session = session
self._default_working_dir = default_working_dir
self._default_env = default_env or {}
self._default_conda_env = default_conda_env
super().__init__()
async def _arun(self, code: str, timeout: int = 90, working_dir: str | None = None, env: dict | None = None, conda_env: str | None = None):
# Use provided params, or fall back to session defaults
effective_working_dir = working_dir or self._default_working_dir
effective_env = {**self._default_env, **(env or {})} # Merge default and provided env
effective_conda_env = conda_env or self._default_conda_env
return await self._session.connector.run_python_script(
code,
timeout=timeout,
working_dir=effective_working_dir,
env=effective_env if effective_env else None,
conda_env=effective_conda_env
)
class BashScriptTool(BaseTool):
_name = "_bash_exec"
_description = "Internal helper: run bash script."
def __init__(self, session: "ShellSession", default_working_dir: str = None, default_env: dict = None, default_conda_env: str = None):
self._session = session
self._default_working_dir = default_working_dir
self._default_env = default_env or {}
self._default_conda_env = default_conda_env
super().__init__()
async def _arun(self, script: str, timeout: int = 30, working_dir: str | None = None, env: dict | None = None, conda_env: str | None = None):
# Use provided params, or fall back to session defaults
effective_working_dir = working_dir or self._default_working_dir
effective_env = {**self._default_env, **(env or {})} # Merge default and provided env
effective_conda_env = conda_env or self._default_conda_env
return await self._session.connector.run_bash_script(
script,
timeout=timeout,
working_dir=effective_working_dir,
env=effective_env if effective_env else None,
conda_env=effective_conda_env
)
class ReadFileTool(BaseTool):
"""Read file contents via the Shell connector.
Works with both local (subprocess) and remote (HTTP) connectors.
Lightweight alternative to ``shell_agent`` for simple file reads.
"""
_name = "read_file"
_description = (
"Read the full text content of a file at the given path. "
"Use this to inspect skill resources, configuration files, scripts, etc."
)
backend_type = BackendType.SHELL
def __init__(self, session: "ShellSession"):
self._session = session
super().__init__()
async def _arun(self, path: str) -> ToolResult:
try:
result = await self._session.connector.run_bash_script(
f'cat -- "{path}"',
timeout=15,
)
stdout, stderr, rc = _parse_shell_result(result)
if rc != 0:
return ToolResult(
status=ToolStatus.ERROR,
content=stderr or f"Cannot read file: {path}",
)
return ToolResult(status=ToolStatus.SUCCESS, content=stdout)
except Exception as e:
return ToolResult(
status=ToolStatus.ERROR,
content=f"read_file failed: {e}",
)
class WriteFileTool(BaseTool):
"""Write text content to a file via the Shell connector.
Creates parent directories automatically. Overwrites existing files.
Uses Python internally to avoid shell-escaping issues.
"""
_name = "write_file"
_description = (
"Write text content to a file at the given path. "
"Creates the file and parent directories if they do not exist; "
"overwrites the file if it already exists."
)
backend_type = BackendType.SHELL
def __init__(self, session: "ShellSession"):
self._session = session
super().__init__()
async def _arun(self, path: str, content: str) -> ToolResult:
# Use Python to avoid shell-escaping pitfalls.
escaped_path = json.dumps(path)
escaped_content = json.dumps(content)
code = (
"import os\n"
f"path = {escaped_path}\n"
f"content = {escaped_content}\n"
"parent = os.path.dirname(os.path.abspath(path))\n"
"if parent:\n"
" os.makedirs(parent, exist_ok=True)\n"
"with open(path, 'w') as f:\n"
" f.write(content)\n"
"print(f'Written {len(content)} chars to {path}')\n"
)
try:
result = await self._session.connector.run_python_script(
code, timeout=15,
)
stdout, stderr, rc = _parse_shell_result(result)
if rc != 0:
return ToolResult(
status=ToolStatus.ERROR,
content=stderr or f"Cannot write file: {path}",
)
return ToolResult(status=ToolStatus.SUCCESS, content=stdout)
except Exception as e:
return ToolResult(
status=ToolStatus.ERROR,
content=f"write_file failed: {e}",
)
class ListDirTool(BaseTool):
"""List directory contents via the Shell connector."""
_name = "list_dir"
_description = (
"List the contents of a directory. "
"Returns file names, sizes, and modification dates. "
"Defaults to the current directory if no path is given."
)
backend_type = BackendType.SHELL
def __init__(self, session: "ShellSession"):
self._session = session
super().__init__()
async def _arun(self, path: str = ".") -> ToolResult:
try:
result = await self._session.connector.run_bash_script(
f'ls -la "{path}"',
timeout=15,
)
stdout, stderr, rc = _parse_shell_result(result)
if rc != 0:
return ToolResult(
status=ToolStatus.ERROR,
content=stderr or f"Cannot list directory: {path}",
)
return ToolResult(status=ToolStatus.SUCCESS, content=stdout)
except Exception as e:
return ToolResult(
status=ToolStatus.ERROR,
content=f"list_dir failed: {e}",
)
class RunShellTool(BaseTool):
"""Run a shell command directly and return stdout/stderr.
Lightweight alternative to ``shell_agent`` for one-off commands like
``grep``, ``cat``, ``ls``, ``curl``, etc. Unlike ``shell_agent``, this
does NOT involve an inner LLM agent — the command is executed as-is via
the connector and the raw output is returned.
Works with both local (subprocess) and remote (HTTP) connectors.
"""
_name = "run_shell"
_description = (
"Execute a shell command as-is and return raw stdout/stderr. "
"You provide the exact command (or script); it is run without "
"interpretation, modification, or automatic retry. "
"If the task requires the tool itself to reason, write code, "
"or recover from errors autonomously, use shell_agent instead."
)
backend_type = BackendType.SHELL
def __init__(self, session: "ShellSession"):
self._session = session
super().__init__()
async def _arun(self, command: str, timeout: int = 30) -> ToolResult:
timeout = min(timeout, 120)
try:
result = await self._session.connector.run_bash_script(
command,
timeout=timeout,
)
stdout, stderr, rc = _parse_shell_result(result)
output = stdout
if stderr:
output += f"\n[STDERR]\n{stderr}" if output else stderr
if rc != 0 and not output:
output = f"Command exited with code {rc}"
return ToolResult(
status=ToolStatus.SUCCESS if rc == 0 else ToolStatus.ERROR,
content=output or "(no output)",
)
except Exception as e:
return ToolResult(
status=ToolStatus.ERROR,
content=f"run_shell failed: {e}",
)
class ShellAgentTool(BaseTool):
_name = "shell_agent"
_description = """Delegate a task to an intelligent shell agent that autonomously writes and executes code, and will automatically retry and fix errors when possible.
Give it a natural-language task description. The internal agent will:
- Decide whether to use Python or Bash
- Write and execute code, inspect output, and iterate
- Automatically retry and fix errors (up to several rounds)
Use this when you want the tool itself to figure out how to accomplish a goal.
If you already have the exact command/script to run, use run_shell instead."""
backend_type = BackendType.SHELL
_CODE_RGX = re.compile(
r"```(?P<lang>python|py|bash|shell|sh)[^\n]*\n(?P<code>.*?)```",
re.S | re.I,
)
def __init__(
self,
session: "ShellSession",
client_password: str = "",
max_steps: int = 5,
security_manager: SecurityPolicyManager = None,
default_working_dir: str = None,
default_env: dict = None,
default_conda_env: str = None,
model: str = None
):
import os
self._session = session
# Use explicit model > OPENSPACE_MODEL env var > LLMClient default
resolved_model = model or os.environ.get("OPENSPACE_MODEL") or None
if resolved_model:
self._llm = LLMClient(model=resolved_model)
else:
self._llm = LLMClient()
self.client_password = client_password
self.max_steps = max_steps
self._system_info = None
self.security_manager = security_manager
self._default_working_dir = default_working_dir
self._default_env = default_env or {}
self._default_conda_env = default_conda_env
self._py_tool = PythonScriptTool(session, default_working_dir=default_working_dir, default_env=default_env, default_conda_env=default_conda_env)
self._bash_tool = BashScriptTool(session, default_working_dir=default_working_dir, default_env=default_env, default_conda_env=default_conda_env)
super().__init__()
async def _get_system_info(self):
"""
Get system information for shell agent.
First tries to get comprehensive info from local server's /platform endpoint.
Falls back to simple bash commands if that fails.
Returns:
Dict with at least 'platform' and 'username' keys
"""
if self._system_info is None:
try:
# Try to get system info from server via HTTP API
# Only attempt HTTP when connector provides a valid base_url
# (LocalShellConnector sets base_url=None to signal local mode)
base_url = getattr(self._session.connector, "base_url", None)
if base_url is not None:
try:
from openspace.platforms import SystemInfoClient
async with SystemInfoClient(base_url=base_url, timeout=5) as client:
info = await client.get_system_info(use_cache=False)
if info:
# Use comprehensive info from server
self._system_info = {
"platform": info.get("system", "Linux"),
"username": info.get("username", "user"),
"machine": info.get("machine"),
"release": info.get("release"),
"full_info": info # Keep full info for reference
}
logger.debug(f"Got system info from server: {info.get('system')}")
return self._system_info
except ImportError:
logger.debug("SystemInfoClient not available, using bash commands")
else:
logger.debug("No server base_url (local mode), skipping HTTP system info")
# Fallback: use simple bash commands (original method)
platform_result = await self._session.connector.run_bash_script("uname -s", timeout=5)
username_result = await self._session.connector.run_bash_script("whoami", timeout=5)
platform = self._extract_output(platform_result).strip()
username = self._extract_output(username_result).strip()
self._system_info = {
"platform": platform,
"username": username
}
logger.debug(f"Got system info from bash: {platform}")
except Exception as e:
logger.warning(f"Failed to get system info: {e}, using defaults")
self._system_info = {"platform": "Linux", "username": "user"}
return self._system_info
async def _arun(self, task: str, timeout: int = 300):
from openspace.grounding.core.types import ToolResult, ToolStatus
sys_info = await self._get_system_info()
conversation_history = []
iteration = 0
last_error = None
# record the code history
code_history = []
# Build environment context
env_context = []
if self._default_working_dir:
env_context.append(f"Working Directory: {self._default_working_dir}")
if self._default_conda_env:
env_context.append(f"Conda Environment: {self._default_conda_env}")
if self._default_env:
env_vars = ", ".join([f"{k}={v}" for k, v in list(self._default_env.items())[:3]])
if len(self._default_env) > 3:
env_vars += f", ... (+{len(self._default_env)-3} more)"
env_context.append(f"Custom Environment Variables: {env_vars}")
env_section = "\n".join([f"# {ctx}" for ctx in env_context]) if env_context else ""
SHELL_AGENT_SYSTEM_PROMPT = f"""You are an expert system administrator and programmer focused on executing tasks efficiently.
# System: {sys_info["platform"]}, User: {sys_info["username"]}
{env_section}
# Your task: {task}
# IMPORTANT: You MUST provide exactly ONE code block in EVERY response
# Either ```bash or ```python - never respond without code
# Available actions:
1. Execute bash commands: ```bash <commands>```
2. Write Python code: ```python <code>```
# Rules:
- ALWAYS include a code block in your response
- Write EXACTLY ONE code block per response
- If you need to understand the current environment, start with bash commands like: pwd, ls, ps, df, etc.
- If you get errors, analyze and fix them in the next iteration
- For sudo: use 'echo {self.client_password} | sudo -S <command>'
- The environment (working directory, conda env) is managed automatically
# CRITICAL: Avoid quote escaping errors in bash:
- For complex string operations (JSON, multi-line text, special chars): ALWAYS use Python with heredoc
- Good: ```python <your code>```
- Bad: bash commands with nested quotes like: echo "$(cat 'file' | grep "pattern")"
- When reading/writing files with complex content: prefer Python over bash
- When processing JSON: ALWAYS use Python's json module, never bash string manipulation
# Before executing, check if task output already exists:
- Use 'ls -la <directory>' to check for existing files
- If files exist, read and verify them first before recreating
- Avoid redundant work - reuse existing valid outputs
# Task completion marking:
When you believe the task is COMPLETED, end your response with:
[TASK_COMPLETED: brief explanation of what was accomplished]
When you encounter an UNRECOVERABLE error that you cannot fix, end your response with:
[TASK_FAILED: brief explanation of why it cannot be completed]"""
conversation_history.append({"role": "system", "content": SHELL_AGENT_SYSTEM_PROMPT})
no_code_counter = 0
final_message = ""
while iteration < self.max_steps:
iteration += 1
logger.info(f"[ShellAgent] Step {iteration}/{self.max_steps}: Processing task")
try:
messages_text = LLMClient.format_messages_to_text(conversation_history)
response = await self._llm.complete(messages_text)
assistant_content = response["message"]["content"]
logger.debug(f"[ShellAgent] Step {iteration} LLM response: {assistant_content[:200]}...")
# extract and execute the code, and track the code block
code_info, execution_result = await self._execute_code_from_response(assistant_content)
if code_info:
code_history.append(code_info)
logger.info(f"[ShellAgent] Step {iteration} execution result: {execution_result[:100]}...")
if execution_result == "ERROR: No valid code block found":
no_code_counter += 1
if no_code_counter >= 3:
final_message = f"Task failed after {iteration} steps: LLM failed to provide code blocks repeatedly"
return ToolResult(
status=ToolStatus.ERROR,
content=final_message,
metadata={"tool": self._name, "code_history": code_history}
)
else:
no_code_counter = 0
completion_status = self._check_task_status(assistant_content, execution_result, last_error)
if completion_status["completed"]:
content_parts = [f"Task completed successfully after {iteration} steps"]
content_parts.append(f"\n{'='*60}")
content_parts.append(f"\nFinal Result:")
content_parts.append(execution_result)
if len(code_history) > 1:
content_parts.append(f"\n{'='*60}")
content_parts.append(f"\nExecution Summary ({len(code_history)} steps):")
for i, code_info in enumerate(code_history, 1):
lang = code_info.get("language", "unknown")
output = code_info.get("output", "")
output_preview = output[:200].replace('\n', ' ')
if len(output) > 200:
output_preview += "..."
content_parts.append(f"\n Step {i} [{lang}]: {output_preview}")
content_parts.append(f"\n{'='*60}")
content_parts.append(f"\nSummary: {completion_status['reason']}")
final_message = "\n".join(content_parts)
return ToolResult(
status=ToolStatus.SUCCESS,
content=final_message,
metadata={"tool": self._name, "code_history": code_history}
)
elif completion_status["failed"]:
final_message = f"Task failed after {iteration} steps: {completion_status['reason']}\nLast result: {execution_result}"
return ToolResult(
status=ToolStatus.ERROR,
content=final_message,
metadata={"tool": self._name, "code_history": code_history}
)
feedback = self._generate_feedback(execution_result, iteration, last_error)
conversation_history.extend([
{"role": "assistant", "content": assistant_content},
{"role": "user", "content": feedback}
])
last_error = execution_result if "ERROR" in execution_result else None
except Exception as e:
final_message = f"Tool execution failed at step {iteration}: {str(e)}"
return ToolResult(
status=ToolStatus.ERROR,
content=final_message,
metadata={"tool": self._name, "code_history": code_history}
)
final_message = f"Reached maximum steps ({self.max_steps}). Task may be too complex or impossible."
return ToolResult(
status=ToolStatus.ERROR,
content=final_message,
metadata={"tool": self._name, "code_history": code_history}
)
async def _execute_code_from_response(self, response: str):
"""
execute the code and track the code block
Returns:
Tuple[Optional[Dict], str]: (code_info, execution_result)
- code_info: {"lang": "python/bash", "code": "...", "status": "success/error"}
- execution_result: the execution result string
"""
matches = list(self._CODE_RGX.finditer(response))
if not matches:
return None, "ERROR: No valid code block found"
lang, code = matches[0]["lang"].lower(), matches[0]["code"].strip()
# standardize the language name
lang_normalized = "python" if lang in ["python", "py"] else "bash"
code_info = {
"lang": lang_normalized,
"code": code,
}
# Security check is only done at the Connector layer to avoid duplicate prompts
try:
if lang in ["python", "py"]:
helper = self._py_tool
result = await helper._arun(code)
elif lang in ["bash", "shell", "sh"]:
helper = self._bash_tool
result = await helper._arun(code)
else:
execution_result = f"ERROR: Unsupported language: {lang}"
code_info["status"] = "error"
return code_info, execution_result
execution_result = self._extract_output(result)
code_info["status"] = "success" if "ERROR" not in execution_result else "error"
return code_info, execution_result
except Exception as e:
execution_result = f"EXECUTION ERROR: {str(e)}"
code_info["status"] = "error"
return code_info, execution_result
def _generate_feedback(self, result: str, iteration: int, last_error: str) -> str:
feedback = f"Step {iteration} result:\n{result}\n\n"
if "ERROR" in result:
if last_error and last_error == result:
feedback += "Same error as previous step. Try a different approach.\n"
else:
feedback += "Error occurred. Analyze the error and fix it.\n"
else:
feedback += "Execution successful. Continue to next step if needed.\n"
feedback += "\nWhat's your next action? (Remember: provide exactly ONE code block)"
return feedback
def _extract_output(self, result):
if isinstance(result, dict):
# Check for execution errors
stderr = result.get("error") or result.get("stderr") or ""
returncode = result.get("returncode", 0)
stdout = result.get("content") or result.get("output") or result.get("stdout") or ""
# If there's a non-zero return code or stderr with actual errors, report it
if returncode != 0 or (stderr and len(stderr.strip()) > 0):
error_msg = f"EXECUTION ERROR (exit code {returncode}):\n"
if stderr:
error_msg += f"stderr: {stderr}\n"
if stdout:
error_msg += f"stdout: {stdout}"
return error_msg
return stdout or str(result)
return str(result)
# Patterns that indicate actual execution failure in the result string.
_EXEC_ERROR_PATTERNS = [
"EXECUTION ERROR",
"ERROR:",
"timed out",
"CommandNotFoundError",
"Traceback (most recent call last)",
"Exception:",
"PermissionError",
"FileNotFoundError",
"SyntaxError:",
"ImportError:",
"ModuleNotFoundError",
"No such file or directory",
"command not found",
]
def _has_execution_error(self, execution_result: str) -> bool:
"""Return True if *execution_result* contains any known error indicator."""
return any(p in execution_result for p in self._EXEC_ERROR_PATTERNS)
def _check_task_status(self, response: str, execution_result: str, last_error: str) -> dict:
# 1. Check for explicit LLM failure marker
if "[TASK_FAILED:" in response:
reason = response.split("[TASK_FAILED:")[1].split("]")[0].strip()
return {"completed": False, "failed": True, "reason": reason}
# 2. Check execution result for errors
has_error = self._has_execution_error(execution_result)
# 3. LLM says completed — but cross-check with actual result
if "[TASK_COMPLETED:" in response:
reason = response.split("[TASK_COMPLETED:")[1].split("]")[0].strip()
if has_error:
# LLM optimistically marked complete, but execution actually failed.
# Don't trust it — let the agent retry.
logger.warning(
f"[ShellAgent] LLM marked TASK_COMPLETED but execution has errors, "
f"ignoring completion marker. Reason: {reason}"
)
if last_error and last_error == execution_result:
return {"completed": False, "failed": True, "reason": "Same error repeated - unable to resolve"}
return {"completed": False, "failed": False, "reason": "Execution error occurred (LLM completion marker ignored)"}
return {"completed": True, "failed": False, "reason": reason}
# 4. No explicit markers — check execution errors
if has_error:
if last_error and last_error == execution_result:
return {"completed": False, "failed": True, "reason": "Same error repeated - unable to resolve"}
return {"completed": False, "failed": False, "reason": "Execution error occurred"}
return {"completed": False, "failed": False, "reason": "Task in progress"} |