Spaces:
Sleeping
Sleeping
File size: 9,769 Bytes
02117ee | 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 | """
SandboxAgent β Persistent VS Code sandbox execution (Devin-style)
Controls file system, terminal, git operations in workspace
"""
import asyncio
import json
import os
import subprocess
import tempfile
from typing import Dict, List, Optional
import structlog
from .base_agent import BaseAgent
log = structlog.get_logger()
WORKSPACE = os.environ.get("WORKSPACE_DIR", "/tmp/god_workspace")
class SandboxAgent(BaseAgent):
def __init__(self, ws_manager=None, ai_router=None):
super().__init__("SandboxAgent", ws_manager, ai_router)
os.makedirs(WORKSPACE, exist_ok=True)
async def run(self, task: str, context: Dict = {}, **kwargs) -> str:
session_id = kwargs.get("session_id", "")
task_id = kwargs.get("task_id", "")
task_lower = task.lower()
if "execute" in task_lower or "run" in task_lower or "terminal" in task_lower:
cmd = context.get("command", task)
return await self.execute(cmd, task_id=task_id, session_id=session_id)
elif "write file" in task_lower or "create file" in task_lower:
filename = context.get("filename", "output.txt")
content = context.get("content", "")
return await self.write_file(filename, content, task_id=task_id, session_id=session_id)
elif "read file" in task_lower:
filename = context.get("filename", "")
return await self.read_file(filename, task_id=task_id, session_id=session_id)
elif "git" in task_lower:
return await self.git_operation(task, task_id=task_id, session_id=session_id)
else:
return await self.execute(task, task_id=task_id, session_id=session_id)
# βββ Terminal Execution βββββββββββββββββββββββββββββββββββββββββββββββββββ
async def execute(
self,
command: str,
cwd: str = "",
timeout: int = 30,
task_id: str = "",
session_id: str = "",
) -> str:
"""Execute shell command in sandbox workspace."""
work_dir = cwd or WORKSPACE
# Safety: block dangerous commands
blocked = ["rm -rf /", ":(){ :|:& };:", "mkfs", "shutdown", "reboot", "halt", "dd if=/dev/"]
for b in blocked:
if b in command:
return f"β Blocked dangerous command: {command[:50]}"
await self.emit(task_id, "sandbox_exec", {
"command": command[:200],
"cwd": work_dir,
}, session_id)
try:
proc = await asyncio.create_subprocess_shell(
command,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
cwd=work_dir,
)
stdout, stderr = await asyncio.wait_for(proc.communicate(), timeout=timeout)
output = stdout.decode("utf-8", errors="replace")
err = stderr.decode("utf-8", errors="replace")
result = output[:3000]
if err and proc.returncode != 0:
result += f"\nβ οΈ stderr:\n{err[:500]}"
await self.emit(task_id, "sandbox_result", {
"command": command[:100],
"exit_code": proc.returncode,
"output_length": len(output),
"success": proc.returncode == 0,
}, session_id)
return result or f"Command executed (exit code: {proc.returncode})"
except asyncio.TimeoutError:
return f"β οΈ Command timed out after {timeout}s"
except Exception as e:
return f"β Execution error: {str(e)}"
# βββ File Operations ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def write_file(
self,
filename: str,
content: str,
task_id: str = "",
session_id: str = "",
) -> str:
"""Write file to workspace."""
filepath = os.path.join(WORKSPACE, filename)
os.makedirs(os.path.dirname(filepath), exist_ok=True)
try:
with open(filepath, "w", encoding="utf-8") as f:
f.write(content)
await self.emit(task_id, "file_written", {
"filename": filename,
"size": len(content),
"lines": len(content.split("\n")),
"path": filepath,
}, session_id)
return f"β
File written: `{filename}` ({len(content)} chars, {len(content.split(chr(10)))} lines)"
except Exception as e:
return f"β Write failed: {str(e)}"
async def read_file(
self,
filename: str,
task_id: str = "",
session_id: str = "",
) -> str:
"""Read file from workspace."""
filepath = os.path.join(WORKSPACE, filename)
try:
with open(filepath, "r", encoding="utf-8") as f:
content = f.read()
await self.emit(task_id, "file_read", {
"filename": filename,
"size": len(content),
}, session_id)
return content[:5000]
except FileNotFoundError:
return f"β File not found: {filename}"
except Exception as e:
return f"β Read failed: {str(e)}"
async def list_files(self, path: str = "") -> List[str]:
"""List files in workspace."""
target = os.path.join(WORKSPACE, path) if path else WORKSPACE
try:
result = []
for root, dirs, files in os.walk(target):
# Skip hidden and cache dirs
dirs[:] = [d for d in dirs if not d.startswith(".") and d != "__pycache__" and d != "node_modules"]
for f in files:
rel = os.path.relpath(os.path.join(root, f), WORKSPACE)
result.append(rel)
if len(result) > 100:
break
return result
except Exception:
return []
# βββ Git Operations βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def git_operation(
self,
task: str,
repo_path: str = "",
task_id: str = "",
session_id: str = "",
) -> str:
"""Perform git operations in workspace."""
work_dir = repo_path or WORKSPACE
task_lower = task.lower()
if "clone" in task_lower:
# Extract URL
words = task.split()
urls = [w for w in words if "github.com" in w or "gitlab.com" in w or ".git" in w]
if urls:
url = urls[0]
return await self.execute(f"git clone {url}", cwd=WORKSPACE, task_id=task_id, session_id=session_id)
return "β No git URL found in task."
elif "commit" in task_lower:
msg = task.replace("commit", "").strip() or "God Agent automated commit"
cmds = [
"git add -A",
f'git commit -m "{msg}"',
]
results = []
for cmd in cmds:
r = await self.execute(cmd, cwd=work_dir, task_id=task_id, session_id=session_id)
results.append(r)
return "\n".join(results)
elif "push" in task_lower:
return await self.execute("git push", cwd=work_dir, task_id=task_id, session_id=session_id)
elif "status" in task_lower:
return await self.execute("git status", cwd=work_dir, task_id=task_id, session_id=session_id)
elif "log" in task_lower:
return await self.execute("git log --oneline -10", cwd=work_dir, task_id=task_id, session_id=session_id)
elif "init" in task_lower:
return await self.execute("git init && git add -A", cwd=work_dir, task_id=task_id, session_id=session_id)
else:
return await self.execute(task, cwd=work_dir, task_id=task_id, session_id=session_id)
# βββ Package Management βββββββββββββββββββββββββββββββββββββββββββββββββββ
async def install_packages(
self,
packages: List[str],
manager: str = "pip",
task_id: str = "",
session_id: str = "",
) -> str:
"""Install packages in workspace."""
pkg_str = " ".join(packages)
if manager == "pip":
cmd = f"pip install {pkg_str}"
elif manager == "npm":
cmd = f"npm install {pkg_str}"
elif manager == "pnpm":
cmd = f"pnpm add {pkg_str}"
else:
cmd = f"{manager} install {pkg_str}"
await self.emit(task_id, "installing_packages", {
"manager": manager,
"packages": packages,
}, session_id)
return await self.execute(cmd, task_id=task_id, session_id=session_id)
# βββ Workspace Info βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def get_workspace_info(self) -> Dict:
"""Get workspace status."""
files = await self.list_files()
try:
disk = await self.execute("df -h /tmp | tail -1")
except Exception:
disk = "N/A"
return {
"path": WORKSPACE,
"file_count": len(files),
"files": files[:20],
"disk_usage": disk,
}
|