Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions framework/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,8 +538,6 @@ def preflight():
problems += list(tools.task.preflight() or [])
except Exception as e:
problems.append(f"task preflight() raised: {e}")
if not os.path.isdir(WORKSPACE_DIR):
problems.append(f"WORKSPACE_DIR does not exist: {WORKSPACE_DIR}")
if not os.path.isfile(method_path()):
problems.append(f"method.md missing: {method_path()} (how-to-work prompt loaded into the agent)")
# Fail fast if the Globus Compute endpoint is not online -- otherwise every
Expand Down
1 change: 1 addition & 0 deletions framework/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,7 @@ def tool_names():
if HAS_LOCAL:
names += ["submit_local", "get_local_completed"]
names.append("notify")
names.append("cycle_done")
if HAS_REMOTE:
names.append("check_backend")
return [f"mcp__cas__{n}" for n in names]